@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --ink: #071014;
  --ink-soft: #0e181d;
  --paper: #f5f4ef;
  --muted: #aeb5b9;
  --coral: #ff7056;
  --coral-bright: #ff8065;
  --line: rgba(255, 255, 255, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.experience {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #071014;
}

.backdrops,
.backdrop,
.ambient-grid,
.coral-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.backdrops {
  z-index: -5;
  overflow: hidden;
  background: #071014;
}

.backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.86) contrast(1.12);
  transform: scale(1.035);
  transition: opacity .75s var(--ease), transform 1.15s var(--ease);
}

.backdrop.is-current,
.backdrop.is-visible {
  opacity: .74;
  transform: scale(1);
}

.backdrops::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 15, .97) 0%, rgba(5, 12, 15, .9) 31%, rgba(5, 12, 15, .51) 61%, rgba(5, 12, 15, .5) 100%),
    linear-gradient(180deg, rgba(5, 12, 15, .42), transparent 24%, rgba(5, 12, 15, .6));
}

.ambient-grid {
  z-index: -3;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.coral-field {
  z-index: -2;
  left: auto;
  width: 31.5%;
  background: linear-gradient(145deg, rgba(255, 124, 94, .96), rgba(235, 77, 54, .94));
  box-shadow: -22px 0 80px rgba(255, 92, 65, .16);
  transition: background .55s ease;
}

.site-header,
.feature,
footer {
  width: min(100% - 64px, 1510px);
  margin-inline: auto;
}

.site-header {
  z-index: 10;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brand {
  width: max-content;
  display: grid;
  gap: 0;
}

.brand img {
  width: 205px;
  height: auto;
  display: block;
}

.brand span {
  margin: -11px 0 0 58px;
  color: rgba(255, 255, 255, .69);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: #fff;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.partner-cta {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 112, 86, .58);
  border-radius: 99px;
  background: rgba(255, 112, 86, .1);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
  transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}

.partner-cta i {
  color: var(--coral-bright);
  font-size: 13px;
}

.partner-cta:hover {
  border-color: var(--coral);
  background: rgba(255, 112, 86, .2);
  transform: translateY(-2px);
}

.language-switch {
  height: 38px;
  padding: 3px;
  display: inline-grid;
  grid-template-columns: repeat(2, 31px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  background: rgba(5, 12, 15, .28);
  backdrop-filter: blur(9px);
}

.language-switch button {
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s var(--ease);
}

.language-switch button:hover {
  color: #fff;
}

.language-switch button.is-active {
  background: var(--coral);
  color: #071014;
  transform: scale(1.02);
}

.header-cta {
  min-height: 42px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s var(--ease), background .2s ease;
}

.header-cta i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #071014;
  font-style: normal;
  font-size: 16px;
}

.header-cta:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-2px);
}

.feature {
  min-height: min(740px, calc(100svh - 148px));
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .72fr) minmax(210px, .42fr);
  align-items: center;
  gap: clamp(20px, 3.2vw, 58px);
  padding: clamp(26px, 4vh, 58px) 0 clamp(20px, 3vh, 42px);
}

.feature-copy {
  min-width: 0;
  align-self: center;
}

.topic-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vh, 46px);
}

.topic-switcher button {
  min-height: 39px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 11px;
  background: rgba(5, 12, 15, .34);
  color: rgba(255, 255, 255, .74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(9px);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.topic-switcher button > i {
  width: 15px;
  color: var(--coral-bright);
  font-size: 13px;
  text-align: center;
  transition: color .25s ease, transform .25s var(--ease);
}

.topic-switcher button span {
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 800;
}

.topic-switcher button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.topic-switcher button.is-active {
  border-color: var(--coral);
  background: var(--coral);
  color: #0a1013;
  box-shadow: 0 14px 40px rgba(255, 91, 64, .22);
}

.topic-switcher button.is-active span {
  color: rgba(7, 16, 20, .58);
}

.topic-switcher button.is-active > i {
  color: #071014;
  transform: scale(1.08);
}

.copy-stage {
  position: relative;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow i,
.availability i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 112, 86, .14);
}

h1 {
  max-width: 780px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 840;
  letter-spacing: -.065em;
  line-height: .98;
  text-wrap: balance;
}

h1 em {
  color: var(--coral-bright);
  font-style: normal;
}

.copy-stage > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 430;
  line-height: 1.65;
}

.quick-facts {
  max-width: 610px;
  margin-top: clamp(24px, 3.5vh, 38px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts > span {
  min-width: 0;
  padding: 15px 14px 15px 0;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
}

.quick-facts > span + span {
  padding-left: 17px;
  border-left: 1px solid var(--line);
}

.quick-facts > span > i {
  color: var(--coral-bright);
  font-size: 16px;
}

.quick-facts > span > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.quick-facts b,
.quick-facts small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-facts b {
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.quick-facts small {
  color: rgba(255, 255, 255, .46);
  font-size: 9px;
  font-weight: 570;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.store-buttons {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.store-button {
  min-width: 184px;
  min-height: 56px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
}

.store-button-brand {
  width: 29px;
  flex: 0 0 29px;
  text-align: center;
  font-size: 24px;
}

.store-button-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.store-button-copy small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .055em;
  opacity: .62;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-button-copy b {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.store-button-arrow {
  margin-left: auto;
  font-size: 10px;
  opacity: .48;
}

.store-button-google {
  background: #fff;
  color: #071014;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .28);
  transition: transform .23s var(--ease), box-shadow .23s ease;
}

.store-button-google .store-button-brand {
  color: var(--coral);
}

.store-button-google:hover,
.store-button-google:focus-visible {
  box-shadow: 0 19px 48px rgba(0, 0, 0, .38);
  transform: translateY(-3px);
}

.store-button-apple {
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(7, 16, 20, .5);
  color: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
  transition: transform .23s var(--ease), background .23s ease, border-color .23s ease;
}

.store-button-apple .store-button-brand {
  color: #fff;
}

.store-button-apple:hover,
.store-button-apple:focus-visible {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(7, 16, 20, .72);
  transform: translateY(-3px);
}

.primary-action {
  min-height: 52px;
  padding: 0 8px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 13px;
  background: #fff;
  color: #071014;
  font-size: 12px;
  font-weight: 790;
  box-shadow: 0 15px 38px rgba(0, 0, 0, .23);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.primary-action i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--coral);
  font-style: normal;
  font-size: 18px;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .3);
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 620;
}

.availability i {
  width: 6px;
  height: 6px;
  background: #74d8a9;
  box-shadow: 0 0 0 4px rgba(116, 216, 169, .12);
}

.phone-stage {
  position: relative;
  min-width: 0;
  height: min(68svh, 640px);
  min-height: 510px;
  display: grid;
  place-items: center;
  perspective: 1300px;
}

.coordinate {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 4%;
  color: rgba(255, 255, 255, .57);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.orbit-one {
  width: 390px;
  height: 390px;
}

.orbit-two {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, .07);
}

.phone-shadow {
  position: absolute;
  bottom: 2%;
  width: 250px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  filter: blur(22px);
  transform: rotate(-5deg);
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(270px, 78%);
  aspect-ratio: 1080 / 2340;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 42px;
  background: #020506;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .57), inset 0 0 0 2px rgba(255, 255, 255, .08);
  transform: rotate(2.5deg) translateZ(0);
  transform-origin: 50% 80%;
  will-change: transform, opacity;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 35px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), inset 14px 0 30px rgba(255, 255, 255, .045);
  pointer-events: none;
}

.phone-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 35px;
  background: #071014;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 70px;
  height: 18px;
  border-radius: 99px;
  background: #030607;
  transform: translateX(-50%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
}

.spot-card {
  position: absolute;
  z-index: 4;
  right: -7%;
  bottom: 10%;
  width: 205px;
  min-height: 72px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  background: rgba(7, 16, 20, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
  backdrop-filter: blur(14px);
  will-change: transform, opacity;
}

.spot-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: #071014;
  font-size: 20px;
  font-weight: 900;
}

.spot-card div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.spot-card small,
.spot-card b,
.spot-card em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spot-card small {
  color: var(--coral-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spot-card b {
  font-size: 11px;
  font-weight: 760;
}

.spot-card em {
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-style: normal;
}

.theme-count {
  position: absolute;
  z-index: 2;
  bottom: 3%;
  left: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.theme-count b {
  color: #fff;
  font-size: 25px;
  font-weight: 750;
}

.theme-count span {
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
}

.feature-note {
  align-self: center;
  min-width: 0;
  padding-left: 8px;
  color: #11181b;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  gap: 11px;
  align-items: end;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 17px 45px rgba(88, 24, 14, .22);
  transition: transform .5s var(--ease), opacity .35s ease;
}

.mini-gallery img:nth-child(2) {
  aspect-ratio: 1 / .94;
}

.feature-note > p {
  margin: 24px 0 28px;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 630;
  line-height: 1.62;
}

.feature-note .progress-dots {
  margin-top: 24px;
}

.progress-dots {
  display: flex;
  gap: 7px;
}

.progress-dots button {
  width: 20px;
  height: 4px;
  padding: 0;
  border-radius: 99px;
  background: rgba(7, 16, 20, .28);
  cursor: pointer;
  transition: width .25s var(--ease), background .25s ease;
}

.progress-dots button.is-active {
  width: 42px;
  background: #071014;
}

footer {
  z-index: 5;
  min-height: 59px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .04em;
}

footer > div {
  display: flex;
  gap: 20px;
}

footer a {
  transition: color .2s ease;
}

footer a:hover {
  color: #fff;
}

.footer-instagram {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  transition: color .2s ease;
}

.footer-instagram:hover {
  color: #fff;
}

footer i {
  color: var(--coral);
  font-style: normal;
}

.copy-stage.is-leaving {
  animation: copyOut .28s ease both;
}

.copy-stage.is-entering {
  animation: copyIn .56s var(--ease) both;
}

.phone-shell.is-leaving {
  animation: phoneOut .34s ease-in both;
}

.phone-shell.is-entering {
  animation: phoneIn .66s var(--ease) both;
}

.spot-card.is-leaving {
  animation: cardOut .24s ease both;
}

.spot-card.is-entering {
  animation: cardIn .52s .12s var(--ease) both;
}

.feature-note.is-changing .mini-gallery img {
  opacity: .1;
  transform: translateX(25px) scale(.94);
}

@keyframes copyOut {
  to { opacity: 0; transform: translateX(-32px); }
}

@keyframes copyIn {
  from { opacity: 0; transform: translateX(42px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes phoneOut {
  to { opacity: 0; transform: translateX(125%) rotate(10deg) scale(.94); }
}

@keyframes phoneIn {
  from { opacity: 0; transform: translateX(-105%) rotate(-9deg) scale(.94); }
  to { opacity: 1; transform: translateX(0) rotate(2.5deg) scale(1); }
}

@keyframes cardOut {
  to { opacity: 0; transform: translateY(24px); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header,
  .feature,
  footer {
    width: min(100% - 44px, 1120px);
  }

  .feature {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .66fr);
  }

  .feature-note {
    position: absolute;
    right: 24px;
    bottom: 80px;
    width: 175px;
  }

  .feature-note > p {
    display: none;
  }

  .mini-gallery {
    display: none;
  }

  .progress-dots {
    justify-content: flex-end;
  }

  .coral-field {
    width: 28%;
  }

  .site-header nav {
    gap: 22px;
  }

  .header-cta {
    padding-left: 6px;
    gap: 0;
  }

  .header-cta span {
    display: none;
  }

  footer > div {
    gap: 12px;
  }
}

@media (max-width: 830px) {
  .experience {
    min-height: 100svh;
    overflow: clip;
  }

  .site-header {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 176px;
  }

  .brand span {
    margin-top: -9px;
    margin-left: 49px;
    font-size: 7px;
  }

  .feature {
    grid-template-columns: minmax(0, 1fr) minmax(235px, .65fr);
    gap: 12px;
  }

  .feature-note {
    display: none;
  }

  .spot-card {
    right: -2%;
    width: 174px;
  }

  h1 {
    font-size: clamp(42px, 7.2vw, 60px);
  }

  footer > div { display: none; }
}

@media (max-width: 640px) {
  .experience {
    min-height: 100svh;
    overflow: hidden;
  }

  .backdrops::after {
    background:
      linear-gradient(180deg, rgba(5, 12, 15, .78) 0%, rgba(5, 12, 15, .9) 45%, rgba(5, 12, 15, .97) 100%),
      linear-gradient(90deg, rgba(5, 12, 15, .65), rgba(5, 12, 15, .2));
  }

  .coral-field {
    top: 57%;
    right: -25%;
    bottom: -10%;
    left: auto;
    width: 82%;
    border-radius: 48% 0 0 0;
    opacity: .82;
  }

  .ambient-grid {
    background-size: 52px 52px;
  }

  .site-header,
  .feature,
  footer {
    width: calc(100% - 30px);
  }

  .site-header {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 151px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    flex: 0 0 auto;
    gap: 6px;
  }

  .partner-cta {
    width: 36px;
    min-height: 36px;
    padding: 0;
    justify-content: center;
  }

  .partner-cta span {
    display: none;
  }

  .language-switch {
    height: 36px;
    grid-template-columns: repeat(2, 27px);
  }

  .language-switch button {
    height: 28px;
    font-size: 8px;
  }

  .feature {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(300px, 1fr);
    align-items: start;
    gap: 10px;
    padding: 13px 0 5px;
  }

  .feature-copy {
    display: contents;
  }

  .topic-switcher {
    grid-row: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    scrollbar-width: none;
  }

  .topic-switcher::-webkit-scrollbar {
    display: none;
  }

  .topic-switcher button {
    min-height: 34px;
    width: 100%;
    min-width: 0;
    padding: 0 3px;
    gap: 4px;
    justify-content: center;
    border-radius: 9px;
    font-size: 9px;
  }

  .topic-switcher button span {
    font-size: 7px;
  }

  .copy-stage {
    position: absolute;
    z-index: 5;
    top: 122px;
    left: 15px;
    width: calc(100% - 30px);
    pointer-events: none;
  }

  .eyebrow {
    font-size: 8px;
  }

  .eyebrow i {
    width: 5px;
    height: 5px;
  }

  h1 {
    max-width: 370px;
    margin: 10px 0 9px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: .98;
  }

  .copy-stage > p {
    max-width: 340px;
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .quick-facts {
    display: none;
  }

  .hero-actions {
    position: fixed;
    z-index: 20;
    right: 15px;
    bottom: calc(51px + env(safe-area-inset-bottom, 0px));
    left: 15px;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    margin: 0;
    pointer-events: auto;
  }

  .store-buttons {
    width: 100%;
    gap: 7px;
  }

  .store-button {
    min-width: 0;
    min-height: 52px;
    flex: 1 1 0;
    padding: 7px 9px;
    border-radius: 13px;
    gap: 7px;
  }

  .store-button-brand {
    width: 23px;
    flex-basis: 23px;
    font-size: 20px;
  }

  .store-button-copy small {
    font-size: 6px;
  }

  .store-button-copy b {
    font-size: 11px;
  }

  .store-button-arrow {
    display: none;
  }

  .primary-action {
    min-height: 48px;
    width: 100%;
    min-width: 0;
    flex: 1;
    justify-content: space-between;
    box-shadow: 0 14px 42px rgba(0, 0, 0, .4);
  }

  .availability {
    display: none;
  }

  .phone-stage {
    grid-row: 2;
    height: 100%;
    min-height: 0;
    align-self: stretch;
    place-items: end center;
    padding-bottom: 40px;
  }

  .phone-shell {
    width: min(190px, 52vw);
    margin-left: 26%;
    border-radius: 30px;
    transform: rotate(3deg);
  }

  .phone-shell img,
  .phone-shell::after {
    border-radius: 24px;
  }

  .phone-speaker {
    top: 11px;
    width: 48px;
    height: 13px;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
    margin-left: 22%;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
    margin-left: 22%;
  }

  .coordinate {
    top: 8%;
    right: 4px;
  }

  .spot-card {
    right: auto;
    bottom: 24%;
    left: 0;
    width: 158px;
    min-height: 63px;
  }

  .spot-card-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .theme-count {
    bottom: 15%;
  }

  footer {
    min-height: 42px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    display: flex;
    justify-content: space-between;
    font-size: 7px;
  }

  footer > div {
    display: none;
  }

  .footer-instagram {
    display: inline-flex;
    font-size: 7px;
  }

  @keyframes phoneIn {
    from { opacity: 0; transform: translateX(-105%) rotate(-9deg) scale(.94); }
    to { opacity: 1; transform: translateX(0) rotate(3deg) scale(1); }
  }
}

@media (max-height: 760px) and (min-width: 641px) {
  .feature {
    min-height: 610px;
    padding-block: 22px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .topic-switcher {
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(45px, 5vw, 68px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
