:root {
  --bg: #f8f0fd;
  --ink: #17161a;
  --ink-soft: #4a4453;
  --ink-faint: #8a8494;
  --ink-muted: #6b6675;
  --headline: #17161a;
  --purple: #725280;
  --purple-mid: #725280;
  --purple-soft: #725280;
  --purple-light: #f3e8ff;
  --purple-tint: #eadcf5;
  --purple-border: #e5e0eb;
  --card: #ffffff;
  --shadow: 0 8px 28px rgba(80, 40, 100, 0.1);
  --shadow-soft: 0 4px 16px rgba(80, 40, 100, 0.06);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Inter", system-ui, -apple-system, sans-serif;
  --chip-bg: #f3e8ff;
  --chip-text: #5b3d6e;
  --radius-card: 24px;
  --page-pad-x: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* Avoid overflow-x:hidden on body — it breaks vertical scroll chaining on iOS. */
  overscroll-behavior-y: auto;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  color: #5a3f66;
}

input::placeholder {
  color: var(--ink-faint);
}

button,
input {
  font: inherit;
}

#root {
  min-height: 100vh;
  min-height: 100dvh;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-14px, 18px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

@keyframes bobY {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.35;
  }
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  text-align: left;
}

.orb {
  display: none;
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 8px max(var(--page-pad-x), env(safe-area-inset-right, 0px))
    max(36px, env(safe-area-inset-bottom, 0px))
    max(var(--page-pad-x), env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--purple);
}

.brand__tagline {
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-faint);
  text-align: left;
}

.logos {
  overflow: hidden;
  margin: 0;
  padding: 0;
  align-self: stretch;
}

.logos__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 18px;
  animation: logo-marquee 28s linear infinite;
}

.logos:hover .logos__track,
.logos:focus-within .logos__track {
  animation-play-state: paused;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  /* ~5 logos visible in a 335px content width (375 − 40 pad) */
  min-width: 52px;
  width: 52px;
  flex: 0 0 auto;
}

.logo__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  padding: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.logo span {
  font-size: 10px;
  font-weight: 500;
  color: #9a9a9a;
  line-height: 1.15;
}

.memberbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--card);
  border: none;
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  box-shadow: var(--shadow-soft);
  order: 1;
  width: 100%;
  text-align: left;
}

.memberbar__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.25;
  text-align: left;
}

.memberbar__arrow {
  display: none;
}

.memberbar__cta {
  flex: 0 0 auto;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
  min-height: 36px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  white-space: nowrap;
  background: var(--purple) !important;
}

.headline {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--headline);
  text-wrap: pretty;
  text-align: left;
  order: 2;
}

/* Mobile stack: flatten hero so we can reorder */
.hero,
.hero__copy {
  display: contents;
}

.panel {
  order: 4;
  position: static;
  background: var(--card);
  border: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 14px 14px 12px;
  min-width: 0;
  width: 100%;
  text-align: left;
  color: var(--ink);
}

.ticker {
  order: 3;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.pills {
  order: 5;
}

.joinblock {
  display: none;
}

.panel__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.panel__title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
  text-align: left;
}

.preview-badge {
  display: none;
}

.searchrow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  border: 1px solid #e6e2ea;
  border-radius: 16px;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: #faf9fb;
  position: relative;
}

.searchrow input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 6px 36px 6px 2px;
  min-height: 36px;
  text-align: left;
}

.searchrow__clear {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  line-height: 1;
  min-width: 36px;
  min-height: 36px;
}

.search-btn {
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 16px;
  min-height: 46px;
  text-align: center;
}

.search-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.search-btn__desktop {
  display: none;
}

.search-btn__mobile {
  display: inline;
}

.suggest-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 8px;
  text-align: left;
}

.chips {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 4px;
  justify-content: flex-start;
}

.chip {
  cursor: pointer;
  border: none;
  background: var(--chip-bg);
  color: var(--chip-text);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 14px;
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip:hover,
.chip.is-active {
  border: none;
  color: var(--purple);
  background: #e9d5ff;
}

.ticker {
  border-radius: var(--radius-card);
  background: var(--card);
  border: none;
  padding: 12px 14px;
  margin: 0;
  scroll-margin-top: 16px;
  box-shadow: var(--shadow);
  overflow: visible;
  box-sizing: border-box;
  color: var(--ink);
  text-align: left;
}

.ticker__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: 6px;
  overflow-wrap: anywhere;
  text-align: left;
}

.ticker__text {
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 1.35em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  overflow: visible;
  color: var(--ink);
  text-align: left;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--ink);
  margin-left: 2px;
  vertical-align: -2px;
  animation: blink 0.9s step-end infinite;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  justify-content: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid #d8d4dc;
  color: var(--ink);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.pill svg {
  flex: 0 0 auto;
  stroke: var(--purple);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--purple);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 22px;
  min-height: 48px;
  box-shadow: none;
  transition: transform 0.16s, opacity 0.16s;
  cursor: pointer;
  text-align: center;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: none;
  color: #fff !important;
  opacity: 0.95;
}

.lede {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  max-width: 46ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}

.status {
  margin-top: 14px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.status--loading {
  background: var(--purple-light);
  color: var(--purple-mid);
  animation: shimmer 1.2s ease-in-out infinite;
  min-height: 2.7rem;
}

.status--error {
  background: #fdeceb;
  color: #8a2f28;
}

.status--empty {
  background: #f3eaf8;
  color: var(--ink-soft);
}

.status--warn {
  background: #fff6e8;
  color: #7a4e12;
}

.results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: none;
  overflow: visible;
  padding-right: 4px;
  margin-top: 18px;
}

.card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #efe7f7;
  border-radius: 22px;
  padding: 14px 14px 14px 12px;
  background: #fff;
  animation: rise 0.35s ease-out both;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-shadow: 0 2px 10px rgba(80, 40, 100, 0.04);
}

.card:hover {
  border-color: var(--purple-border);
  box-shadow: 0 8px 24px rgba(80, 40, 100, 0.1);
}

.card:focus-visible {
  outline: 2px solid var(--purple-border);
  outline-offset: 2px;
}

.card__avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9c6ef;
}

.card__avatar-face {
  display: block;
  width: 100%;
  height: 100%;
}

.card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card__handle {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f1a27;
  letter-spacing: -0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.card__distance {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #6b3f9a;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  line-height: 1;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  color: #5c5568;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
}

.card__meta-item:not(:first-child)::before {
  content: "·";
  margin: 0 0.45em;
  color: #b0a9bc;
  font-weight: 500;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card__tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #efeaf6;
  color: #3d3648;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__tag--institute {
  background: #e8dff4;
  color: #4a2f6b;
}

.card__more {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.85rem;
  color: #6b3f9a;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card__more:hover {
  color: #4a2f6b;
}

.card__more:focus-visible {
  outline: 2px solid var(--purple-border);
  outline-offset: 2px;
  border-radius: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--purple-tint);
}

.pagination__info {
  margin: 0;
  flex: 1 1 120px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.pagination__btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--purple-border);
  border-radius: 999px;
  background: #fff;
  color: var(--purple-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.invite-modal[hidden] {
  display: none;
}

.invite-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
}

.invite-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 36, 0.45);
  backdrop-filter: blur(3px);
}

.invite-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: rise 0.28s ease-out;
}

.invite-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: var(--ink-faint);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.invite-modal__lede {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.invite-modal__cta {
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 16px 22px;
  font-size: 1.05rem;
}

.invite-modal__caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-soft);
  animation: none;
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

/* Desktop: restore previous two-column sticky hero */
@media (min-width: 900px) {
  .wrap {
    max-width: 1160px;
    padding: 24px max(24px, env(safe-area-inset-right, 0px))
      max(40px, env(safe-area-inset-bottom, 0px))
      max(24px, env(safe-area-inset-left, 0px));
    display: block;
    gap: 0;
  }

  .logos {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
    overflow: visible;
    justify-content: initial;
    padding: 0;
  }

  .logos__track {
    display: contents;
    animation: none;
  }

  .logo:nth-child(n + 10) {
    display: none;
  }

  .logo {
    min-width: 0;
    width: auto;
    align-items: flex-start;
  }

  .logo__mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }

  .logo span {
    font-size: 11px;
    color: #9a9a9a;
  }

  .brand {
    margin: 0 0 16px;
  }

  .brand__mark {
    font-size: 1.5rem;
    color: var(--purple);
  }

  .brand__tagline {
    font-size: 0.75rem;
    color: var(--ink-faint);
  }

  .memberbar {
    display: flex;
    max-width: 420px;
    margin: 0 0 24px;
    order: unset;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 52px;
    align-items: start;
  }

  .hero__copy {
    display: block;
    min-width: 0;
    text-align: left;
  }

  .headline {
    order: unset;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 26px;
    max-width: 24ch;
    color: var(--ink);
  }

  .pills {
    order: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
  }

  .pill {
    font-size: 13px;
    padding: 10px 14px;
    min-width: 0;
  }

  .ticker {
    order: unset;
    border-radius: 20px;
    padding: 22px 26px;
    margin: 0 0 26px;
    min-width: 0;
    max-width: 100%;
  }

  .ticker__label {
    font-size: 13px;
  }

  .ticker__text {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    min-height: 1.35em;
  }

  .joinblock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-top: 1px solid var(--purple-tint);
    padding-top: 30px;
    scroll-margin-top: 14px;
    color: var(--ink);
  }

  .joinblock .lede {
    color: var(--ink);
  }

  .panel {
    order: unset;
    position: sticky;
    top: 24px;
    padding: 26px 26px 22px;
    border-radius: 26px;
  }

  .panel__title {
    font-family: var(--font);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin: 0;
  }

  .panel__header {
    margin-bottom: 20px;
  }

  .searchrow {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .searchrow input {
    padding: 10px 4px;
    flex: 1 1 auto;
    width: 100%;
  }

  .searchrow__clear {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .search-btn {
    width: 100%;
    flex: 0 0 auto;
    padding: 14px 24px;
    border-radius: 12px;
    white-space: nowrap;
    font-size: 16px;
  }

  .search-btn__mobile {
    display: none;
  }

  .search-btn__desktop {
    display: inline;
  }

  .suggest-label {
    font-size: 11px;
    margin: 0 0 12px;
  }

  .chips {
    gap: 10px;
    flex-direction: column;
  }

  .chip {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 40px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--chip-bg);
    color: var(--chip-text);
  }

  .results {
    max-height: min(430px, 55vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .cta {
    font-size: 1rem;
    padding: 14px 28px;
    min-height: 48px;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .wrap {
    padding-top: 20px;
  }

  .logos {
    gap: 12px;
    margin-bottom: 28px;
  }

  .logo__mark {
    width: 48px;
    height: 48px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 28px;
  }

  .panel {
    padding: 22px 20px 20px;
    top: 16px;
  }

  .pills {
    grid-template-columns: none;
  }

  .cta {
    padding: 14px 24px;
  }
}

/* Phones refinements */
@media (max-width: 700px) {
  .pagination {
    gap: 8px;
  }

  .pagination__btn {
    flex: 1 1 auto;
  }

  .pagination__info {
    flex: 1 1 100%;
    order: -1;
  }

  .invite-modal {
    align-items: flex-end;
    padding: 0;
  }

  .invite-modal__panel {
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 1.75rem 1.25rem max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .brand__tagline {
    display: none;
  }

  .logo {
    min-width: 48px;
    width: 48px;
  }

  .logo__mark {
    width: 40px;
    height: 40px;
  }

  .logo span {
    font-size: 9px;
  }

  .headline {
    font-size: 1.2rem;
  }

  .memberbar__text {
    font-size: 0.75rem;
  }

  .memberbar__cta {
    font-size: 0.72rem !important;
    padding: 9px 12px !important;
  }

  .ticker {
    padding: 10px 12px;
  }

  .ticker__label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .ticker__text {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .caret,
  .card,
  .status--loading,
  .invite-modal__panel,
  .logos__track,
  .memberbar__arrow-glyph {
    animation: none !important;
  }

  .cta:hover,
  .card:hover {
    transform: none;
  }
}
