@font-face {
  font-family: "Geist";
  src: url("/landing-assets/fonts/geist-latin-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0814;
  --ink-soft: #121022;
  --ink-lift: #1a1730;
  --paper: #f6f5fb;
  --paper-warm: #efedf6;
  --white: #ffffff;
  --text: #151320;
  --muted: #706c7d;
  --line: rgba(15, 13, 25, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --violet: #7567ff;
  --violet-bright: #9f91ff;
  --magenta: #f557c7;
  --cyan: #63e4dc;
  --green: #76ef9f;
  --coral: #ff7186;
  --font-sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --shell: min(1220px, calc(100vw - 10vw));
  --header-height: 86px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--violet);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-label {
  margin-bottom: 22px;
  color: currentColor;
  font-size: .74rem;
  font-weight: 720;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
  content: "";
}

.section-light {
  color: var(--text);
  background: var(--paper);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Header */

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100vw - 32px));
  height: 64px;
  padding: 0 12px 0 18px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--text);
  background: rgba(250, 249, 253, .9);
  border-color: rgba(20, 18, 30, .09);
  box-shadow: 0 16px 50px rgba(16, 12, 34, .12);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(81, 70, 198, .24);
}

.brand em {
  margin-left: -7px;
  color: var(--violet-bright);
  font-size: .58rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-7px);
}

.site-header.is-scrolled .brand em,
.site-header.is-menu-open .brand em {
  color: var(--violet);
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  font-size: .82rem;
  font-weight: 620;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, .1);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-menu-open .site-nav a:hover,
.site-header.is-menu-open .site-nav a:focus-visible {
  background: rgba(20, 18, 30, .06);
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding-inline: 18px;
  color: var(--ink);
  background: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-menu-open .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  min-height: 100svh;
  padding: 116px 5vw 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 52% 8%, rgba(117, 103, 255, .18), transparent 35%),
    linear-gradient(145deg, #090712 0%, #0d0a1c 52%, #080711 100%);
}

.hero-grid,
.download-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 4, 10, .68));
  content: "";
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .4;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

.hero-aurora-one {
  top: -20vw;
  right: -10vw;
  background: var(--magenta);
}

.hero-aurora-two {
  right: 16vw;
  bottom: -30vw;
  background: var(--violet);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 100%);
  padding-top: 2vh;
}

.hero-kicker {
  margin-bottom: clamp(25px, 4vh, 44px);
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  font-weight: 680;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: clamp(5.5rem, 10vw, 10.8rem);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .72;
  text-transform: uppercase;
}

.hero h1 small {
  margin: .05em 0 0 .4em;
  color: var(--cyan);
  font-size: clamp(.65rem, .85vw, .9rem);
  font-weight: 760;
  letter-spacing: .12em;
  line-height: 1;
}

.hero-promise {
  margin: clamp(28px, 4vh, 46px) 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.hero-promise i,
.feature-heading h2 i {
  color: var(--violet-bright);
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-lead {
  max-width: 510px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  font-size: .86rem;
  font-weight: 680;
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 22px 55px rgba(99, 228, 220, .18);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
}

.hero-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 3;
  width: min(580px, 42vw);
  height: min(690px, calc(100svh - 145px));
  min-height: 560px;
  justify-self: end;
  perspective: 1400px;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
}

.hero-orbit {
  position: absolute;
  top: 48%;
  left: 49%;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(65deg);
}

.orbit-one {
  animation: orbit-spin 22s linear infinite;
}

.orbit-two {
  width: 110%;
  border-style: dashed;
  opacity: .45;
  animation: orbit-spin-reverse 32s linear infinite;
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(-360deg); }
}

.device-poster {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 34px;
  background: #2868ff;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .24);
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-out), filter .7s ease;
  will-change: transform;
}

.device-poster::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .22), transparent 25%, transparent 70%, rgba(255, 255, 255, .08));
  content: "";
}

.device-poster img {
  width: 100%;
}

.device-poster-front {
  z-index: 3;
  top: 4%;
  left: 19%;
  width: min(290px, 21vw);
  transform: rotateY(-10deg) rotateZ(1.5deg) translate3d(0, 0, 90px);
}

.device-poster-back {
  z-index: 2;
  top: 14%;
  right: -3%;
  width: min(250px, 18vw);
  opacity: .72;
  filter: saturate(.82) brightness(.84);
  transform: rotateY(-18deg) rotateZ(7deg) translate3d(0, 20px, -30px);
}

.hero-stage:hover .device-poster-front {
  transform: rotateY(-4deg) rotateZ(0deg) translate3d(-10px, -8px, 120px);
}

.hero-stage:hover .device-poster-back {
  opacity: .9;
  transform: rotateY(-12deg) rotateZ(4deg) translate3d(18px, -6px, 0);
}

.hero-mark {
  position: absolute;
  z-index: 5;
  right: -2%;
  bottom: 1%;
  width: min(230px, 17vw);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .32));
  transform: rotate(8deg) translateZ(180px);
  animation: mark-float 5s var(--ease-smooth) infinite alternate;
}

@keyframes mark-float {
  to { transform: rotate(4deg) translate3d(0, -16px, 180px); }
}

.hero-note {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, .82);
  background: rgba(13, 10, 29, .66);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-size: .7rem;
}

.hero-note b {
  color: var(--cyan);
  font-size: .64rem;
  letter-spacing: .08em;
}

.hero-note-one {
  top: 12%;
  left: 0;
  transform: translateZ(130px);
}

.hero-note-two {
  right: -1%;
  bottom: 30%;
  transform: translateZ(220px);
}

.hero-note-two i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(118, 239, 159, .13);
}

.hero-proof {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  letter-spacing: .02em;
}

.hero-proof span {
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-proof span:first-child {
  border-left: 0;
}

.hero-proof b {
  color: var(--white);
  font-weight: 690;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .5);
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.scroll-cue i::after {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 3px;
  height: 8px;
  border-radius: 4px;
  background: var(--white);
  animation: scroll-cue 1.8s ease-in-out infinite;
  content: "";
}

@keyframes scroll-cue {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.js-ready [data-hero-line] {
  opacity: 0;
  transform: translateY(30px);
}

.js-ready.is-loaded [data-hero-line] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.js-ready.is-loaded [data-hero-line]:nth-child(2) { transition-delay: .08s; }
.js-ready.is-loaded [data-hero-line]:nth-child(3) { transition-delay: .16s; }
.js-ready.is-loaded [data-hero-line]:nth-child(4) { transition-delay: .24s; }
.js-ready.is-loaded [data-hero-line]:nth-child(5) { transition-delay: .32s; }

.js-ready .hero-stage {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(.94) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.js-ready.is-loaded .hero-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: opacity 1.1s .15s var(--ease-out), transform 1.2s .15s var(--ease-out);
}

/* Intro */

.intro {
  position: relative;
  z-index: 4;
  padding: clamp(110px, 13vw, 190px) 0 clamp(80px, 10vw, 150px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr);
  gap: 6vw;
  align-items: start;
}

.intro h2 {
  max-width: 950px;
  margin-bottom: 40px;
  font-size: clamp(3rem, 6.6vw, 7.2rem);
  font-weight: 590;
  letter-spacing: -.075em;
  line-height: .92;
}

.intro-lead {
  width: min(670px, 82%);
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.intro-lines {
  width: 100%;
  margin-top: clamp(90px, 11vw, 160px);
  border-top: 1px solid var(--line);
}

.intro-lines > div {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(300px, 1fr) 60px;
  align-items: center;
  min-height: 136px;
  padding: 24px 5vw;
  border-bottom: 1px solid var(--line);
  transition: color .4s ease, background .4s ease, padding .4s var(--ease-out);
}

.intro-lines > div:hover {
  padding-inline: 6vw 4vw;
  color: var(--white);
  background: var(--violet);
}

.intro-lines span {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 570;
  letter-spacing: -.055em;
}

.intro-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.intro-lines > div:hover p {
  color: rgba(255, 255, 255, .72);
}

.intro-lines b {
  justify-self: end;
  font-size: .7rem;
  letter-spacing: .12em;
}

/* Story */

.story {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 50%, rgba(117, 103, 255, .2), transparent 34%),
    var(--ink);
}

.story-track {
  position: relative;
}

.story-stage {
  position: relative;
  width: 100%;
  max-width: 1500px;
  min-height: 880px;
  margin: 0 auto;
  padding: 120px 6vw;
}

.story-heading {
  margin-bottom: 80px;
}

.story-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 560;
  letter-spacing: -.07em;
  line-height: .9;
}

.story-counter {
  display: none;
}

.story-step {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 10vw;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line-dark);
}

.story-copy {
  max-width: 570px;
}

.story-index {
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.8vw, 5.5rem);
  font-weight: 550;
  letter-spacing: -.065em;
  line-height: .95;
}

.story-copy > p:last-child {
  width: min(480px, 90%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

.story-screen {
  position: relative;
  justify-self: center;
  width: min(310px, 28vw);
  margin: 0;
}

.story-screen img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 38px;
  box-shadow: 0 55px 110px rgba(0, 0, 0, .46);
}

.screen-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 103, 255, .5), transparent 68%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.story-progress {
  display: none;
}

@media (min-width: 981px) and (min-height: 700px) {
  .story.is-interactive .story-track {
    height: 430vh;
    min-height: 3000px;
  }

  .story.is-interactive .story-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
    padding: clamp(88px, 10vh, 120px) 6vw 50px;
  }

  .story.is-interactive .story-heading {
    position: absolute;
    top: clamp(86px, 10vh, 112px);
    left: 6vw;
    z-index: 7;
    margin: 0;
  }

  .story.is-interactive .story-heading h2 {
    font-size: clamp(2.6rem, 4.1vw, 5.1rem);
  }

  .story.is-interactive .story-step {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
    gap: 8vw;
    align-items: center;
    padding: 16vh 8vw 7vh 12vw;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 50px, 0);
    visibility: hidden;
    transition: opacity .55s ease, transform .75s var(--ease-out), visibility 0s .75s;
  }

  .story.is-interactive .story-step.is-active {
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0s;
  }

  .story.is-interactive .story-copy {
    align-self: end;
    padding-bottom: 8vh;
  }

  .story.is-interactive .story-copy h3 {
    font-size: clamp(2.8rem, 4.7vw, 5.6rem);
  }

  .story.is-interactive .story-screen {
    align-self: center;
    width: min(320px, 22vw, calc(100vh * .38));
    transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  }

  .story.is-interactive .story-step:nth-of-type(even) .story-screen {
    transform: perspective(1200px) rotateY(7deg) rotateX(2deg);
  }

  .story-counter {
    position: absolute;
    right: 6vw;
    bottom: 6vh;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .42);
    font-size: .7rem;
    letter-spacing: .16em;
  }

  .story-counter span:first-child {
    color: var(--white);
  }

  .story-counter i {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
  }

  .story-progress {
    position: absolute;
    right: 6vw;
    bottom: calc(6vh + 30px);
    z-index: 8;
    display: block;
    width: 120px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .15);
  }

  .story-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transform: scaleX(0);
    transform-origin: left;
  }
}

/* Feature canvas */

.feature-canvas {
  position: relative;
  padding: 0 0 clamp(100px, 12vw, 180px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.kinetic-line {
  width: max-content;
  padding: clamp(90px, 10vw, 150px) 0 clamp(80px, 8vw, 120px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .8;
  white-space: nowrap;
  transform: translate3d(-5vw, 0, 0);
  will-change: transform;
}

.feature-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
  align-items: end;
  padding: 0 0 clamp(90px, 10vw, 140px);
}

.feature-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.feature-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .82;
}

.feature-heading > p:last-child {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.feature-list {
  border-bottom: 1px solid var(--line-dark);
}

.feature-list article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(190px, .8fr) minmax(260px, 1.2fr) 56px;
  gap: 28px;
  align-items: center;
  min-height: 136px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  transition: padding .4s var(--ease-out), color .35s ease;
}

.feature-list article::before {
  position: absolute;
  inset: 0 -2vw;
  z-index: 0;
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease-out);
  content: "";
}

.feature-list article:hover::before {
  transform: scaleY(1);
}

.feature-list article > * {
  position: relative;
  z-index: 1;
}

.feature-list article:hover {
  color: var(--text);
}

.feature-list article > span {
  color: var(--violet-bright);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.feature-list h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.7rem);
  font-weight: 560;
  letter-spacing: -.05em;
}

.feature-list p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  line-height: 1.55;
}

.feature-list article:hover p {
  color: var(--muted);
}

.feature-list svg {
  width: 42px;
  justify-self: end;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* Screen rail */

.screen-rail {
  position: relative;
  padding: clamp(110px, 14vw, 190px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 87, 199, .18), transparent 32%),
    linear-gradient(145deg, #17132d, #0c0a18 70%);
}

.rail-copy {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 110px);
}

.rail-copy .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.rail-copy h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7.2vw, 8rem);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .86;
}

.rail-copy > p:last-child {
  max-width: 390px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .5);
}

.screen-track {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  padding: 20px max(5vw, calc((100vw - 1220px) / 2)) 55px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 5vw;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.screen-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.screen-track::-webkit-scrollbar {
  display: none;
}

.screen-track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -3px;
}

.screen-track figure {
  flex: 0 0 clamp(260px, 25vw, 350px);
  margin: 0;
  scroll-snap-align: start;
}

.screen-track figure:nth-child(even) {
  transform: translateY(55px);
}

.screen-track img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .35);
  transition: transform .6s var(--ease-out), box-shadow .6s ease;
}

.screen-track figure:hover img {
  box-shadow: 0 45px 110px rgba(0, 0, 0, .5);
  transform: translateY(-10px) rotateY(-2deg);
}

.screen-track figcaption {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 8px 0;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.screen-track figcaption span {
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
}

/* Roles */

.roles {
  padding: clamp(110px, 13vw, 190px) 0 0;
  color: var(--text);
  background: var(--paper);
}

.roles-heading {
  margin-bottom: clamp(70px, 8vw, 115px);
}

.roles-heading h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 7.1rem);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .9;
}

.role-split {
  display: flex;
  align-items: stretch;
  min-height: 680px;
  overflow: hidden;
}

.role-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(48px, 6vw, 96px);
  overflow: hidden;
  transition: flex .8s var(--ease-out);
}

.role-split:hover .role-panel:not(:hover) {
  flex: .86 1 45%;
}

.role-panel:hover {
  flex: 1.14 1 55%;
}

.role-panel::before,
.role-panel::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.role-panel::before {
  top: -28%;
  right: -17%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .045), 0 0 0 100px rgba(255, 255, 255, .025);
}

.role-panel::after {
  right: 6%;
  bottom: 7%;
  width: 18%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .1);
  filter: blur(2px);
}

.role-organizer {
  color: var(--white);
  background: linear-gradient(145deg, #6959f5, #3530a2);
}

.role-participant {
  color: var(--ink);
  background: linear-gradient(145deg, #73e9df, #83efad);
}

.role-panel > span {
  margin-bottom: auto;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.role-panel h3 {
  margin-bottom: 25px;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 590;
  letter-spacing: -.08em;
  line-height: .8;
}

.role-panel > p {
  max-width: 530px;
  margin-bottom: 34px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  opacity: .76;
}

.role-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-panel li {
  position: relative;
  padding-left: 23px;
  font-size: .86rem;
}

.role-panel li::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 9px;
  height: 1px;
  background: currentColor;
  content: "";
}

/* Proof */

.proof {
  padding: clamp(100px, 12vw, 170px) 0;
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  margin-top: 62px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-grid > div {
  min-height: 310px;
  padding: 50px 42px;
  border-left: 1px solid var(--line-dark);
}

.proof-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid strong {
  display: block;
  margin-bottom: 75px;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 590;
  letter-spacing: -.08em;
  line-height: .74;
}

.proof-grid sup {
  color: var(--cyan);
  font-size: .35em;
  vertical-align: top;
}

.proof-grid span {
  display: block;
  max-width: 210px;
  color: rgba(255, 255, 255, .48);
  font-size: .8rem;
  line-height: 1.45;
}

/* FAQ */

.faq {
  padding: clamp(110px, 13vw, 190px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(440px, 1fr);
  gap: 10vw;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 32px;
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .88;
}

.faq-heading > p:last-child {
  max-width: 370px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 590;
  letter-spacing: -.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .3s ease, transform .4s var(--ease-out);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  content: "";
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s ease;
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
  transform: rotate(180deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 620px;
  margin: -5px 70px 32px 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Download */

.download {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  min-height: min(900px, 100svh);
  padding: 120px 7vw;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.download-grid {
  opacity: .12;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.download-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
}

.download-orb-one {
  top: -20%;
  right: 0;
  width: 45vw;
  aspect-ratio: 1;
  background: var(--magenta);
}

.download-orb-two {
  bottom: -35%;
  left: 10%;
  width: 42vw;
  aspect-ratio: 1;
  background: var(--violet);
}

.download-mark {
  width: min(520px, 38vw);
  justify-self: center;
  filter: drop-shadow(0 60px 55px rgba(0, 0, 0, .42));
  transform: rotate(-7deg);
}

.download-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.download-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(4rem, 7.6vw, 8.4rem);
  font-weight: 570;
  letter-spacing: -.08em;
  line-height: .84;
}

.download-copy > p:not(.section-label) {
  max-width: 550px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-link {
  display: inline-flex;
  min-width: 195px;
  min-height: 66px;
  align-items: center;
  gap: 13px;
  padding: 10px 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  transition: transform .35s var(--ease-out), background .3s ease, border-color .3s ease;
}

.store-link:hover,
.store-link:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.store-link svg {
  width: 29px;
  height: 34px;
  fill: currentColor;
}

.store-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-link small {
  margin-bottom: 4px;
  font-size: .59rem;
  font-weight: 540;
}

.store-link strong {
  font-size: 1.02rem;
  font-weight: 690;
  letter-spacing: -.025em;
}

/* Footer */

.site-footer {
  padding: 80px 5vw 26px;
  color: var(--white);
  background: #05040a;
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: 90px;
}

.footer-brand {
  width: fit-content;
  font-size: 1.25rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .9rem;
  line-height: 1.6;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 13px 28px;
}

.footer-top nav a {
  width: fit-content;
  color: rgba(255, 255, 255, .58);
  font-size: .8rem;
  transition: color .2s ease;
}

.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: rgba(255, 255, 255, .52);
  border-top: 1px solid var(--line-dark);
  font-size: .72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.algoria-credit {
  margin-top: 1.4rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, .52);
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .75rem;
  line-height: 1.5;
}

.algoria-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.algoria-credit a:hover,
.algoria-credit a:focus-visible {
  color: var(--white);
}

/* Reveals */

.js-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity .85s var(--ease-out), transform .9s var(--ease-out);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-ready .feature-list article:nth-child(2n),
.js-ready .faq-list details:nth-child(2n) {
  transition-delay: .07s;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

/* Tablet */

@media (max-width: 1100px) {
  :root {
    --shell: calc(100vw - 64px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr);
    padding-inline: 32px;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 10.7vw, 8rem);
  }

  .hero-stage {
    width: 42vw;
  }

  .device-poster-front {
    left: 7%;
    width: 25vw;
  }

  .device-poster-back {
    right: -16%;
    width: 21vw;
  }

  .hero-mark {
    right: -14%;
    width: 21vw;
  }

  .hero-proof {
    right: 32px;
  }

  .scroll-cue {
    left: 32px;
  }

  .feature-list article {
    grid-template-columns: 45px minmax(180px, .72fr) minmax(230px, 1fr) 44px;
    gap: 20px;
  }

  .faq-grid {
    gap: 6vw;
  }
}

/* Mobile */

@media (max-width: 780px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-height: 72px;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    height: 58px;
    padding-left: 13px;
    border-radius: 15px;
  }

  .brand {
    gap: 8px;
    font-size: .95rem;
  }

  .brand img {
    width: 33px;
    height: 33px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 8px;
    left: 8px;
    display: grid;
    align-content: start;
    gap: 4px;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    color: var(--text);
    background: rgba(250, 249, 253, .98);
    border: 0 solid rgba(20, 18, 30, .09);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(16, 12, 34, .18);
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height .45s var(--ease-out), opacity .3s ease, transform .4s var(--ease-out), padding .4s var(--ease-out), border-width .4s ease;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 360px;
    padding-block: 10px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    font-size: .92rem;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    color: var(--white);
    background: var(--ink);
    text-align: center;
  }

  .hero {
    display: block;
    min-height: max(100svh, 760px);
    padding: 100px 20px 36px;
  }

  .hero-grid {
    background-size: 36px 36px;
  }

  .hero-copy {
    z-index: 8;
    width: 100%;
    padding: 0;
  }

  .hero-kicker {
    width: 70%;
    margin-bottom: 31px;
    font-size: .62rem;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
    line-height: .74;
  }

  .hero h1 small {
    font-size: .54rem;
  }

  .hero-promise {
    margin: 30px 0 14px;
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: .94;
  }

  .hero-lead {
    width: 82%;
    margin-bottom: 24px;
    font-size: .9rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(320px, 88%);
    gap: 8px;
  }

  .button {
    min-height: 50px;
  }

  .button-ghost {
    justify-content: flex-start;
    width: fit-content;
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-stage {
    position: absolute;
    right: -80px;
    bottom: -165px;
    z-index: 3;
    width: 330px;
    height: 510px;
    min-height: 0;
    opacity: .55;
    transform: rotate(-5deg);
  }

  .device-poster-front {
    top: 0;
    left: 18%;
    width: 185px;
  }

  .device-poster-back {
    top: 8%;
    right: -10%;
    width: 160px;
  }

  .hero-mark {
    right: 4%;
    bottom: 3%;
    width: 142px;
  }

  .hero-note,
  .hero-proof,
  .scroll-cue {
    display: none;
  }

  .hero::after {
    height: 30%;
  }

  .intro {
    padding: 100px 0 80px;
  }

  .intro-grid,
  .feature-heading,
  .rail-copy,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .intro-lead {
    width: 100%;
    margin-left: 0;
    font-size: 1rem;
  }

  .intro-lines {
    margin-top: 78px;
  }

  .intro-lines > div {
    grid-template-columns: 1fr 36px;
    min-height: 132px;
    padding: 24px 20px;
  }

  .intro-lines span {
    font-size: 2.3rem;
  }

  .intro-lines p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 5px;
    font-size: .85rem;
  }

  .intro-lines b {
    grid-column: 2;
    grid-row: 1;
  }

  .story-stage {
    min-height: 0;
    padding: 100px 20px 85px;
  }

  .story {
    overflow-x: hidden;
  }

  .story-heading {
    margin-bottom: 75px;
  }

  .story-heading h2 {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 0;
  }

  .story-copy h3 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .story-copy > p:last-child {
    width: 100%;
  }

  .story-screen {
    width: min(290px, 76vw);
  }

  .kinetic-line {
    padding-block: 90px 75px;
    font-size: 6rem;
  }

  .feature-heading {
    padding-bottom: 70px;
  }

  .feature-heading .section-label,
  .rail-copy .section-label {
    grid-column: auto;
  }

  .feature-heading h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .feature-list article {
    grid-template-columns: 36px 1fr 40px;
    gap: 13px;
    min-height: 150px;
    padding: 26px 0;
  }

  .feature-list h3 {
    font-size: 1.7rem;
  }

  .feature-list p {
    grid-column: 2 / -1;
    grid-row: 2;
    padding-right: 12px;
    font-size: .84rem;
  }

  .feature-list svg {
    grid-column: 3;
    grid-row: 1;
    width: 34px;
  }

  .screen-rail {
    padding: 100px 0 115px;
  }

  .rail-copy {
    margin-bottom: 60px;
  }

  .rail-copy h2 {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  .screen-track {
    gap: 18px;
    padding-inline: 20px;
  }

  .screen-track figure {
    flex-basis: min(76vw, 300px);
  }

  .screen-track figure:nth-child(even) {
    transform: translateY(28px);
  }

  .roles {
    padding-top: 105px;
  }

  .roles-heading h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

  .role-split {
    flex-direction: column;
    min-height: 0;
  }

  .role-panel,
  .role-split:hover .role-panel:not(:hover),
  .role-panel:hover {
    flex: none;
    min-height: 570px;
    padding: 48px 20px;
  }

  .role-panel h3 {
    font-size: clamp(4.3rem, 20vw, 6.3rem);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    min-height: 190px;
    padding: 34px 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

  .proof-grid strong {
    margin: 0;
    font-size: clamp(4.3rem, 20vw, 6rem);
  }

  .proof-grid span {
    justify-self: end;
    max-width: 140px;
    text-align: right;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .faq-list summary {
    min-height: 88px;
    font-size: 1rem;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: .9rem;
  }

  .download {
    display: flex;
    min-height: 900px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 100px 20px 80px;
  }

  .download-mark {
    position: absolute;
    right: -75px;
    bottom: -70px;
    z-index: 0;
    width: 320px;
    opacity: .36;
  }

  .download-copy h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .store-links {
    flex-direction: column;
    width: min(100%, 300px);
  }

  .store-link {
    width: 100%;
  }

  .site-footer {
    padding: 70px 20px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 60px;
  }

  .footer-top nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: max(100svh, 720px);
  }

  .hero-kicker {
    margin-bottom: 25px;
  }

  .hero-promise {
    font-size: 2.25rem;
  }

  .hero-lead {
    width: 94%;
  }

  .hero-stage {
    right: -112px;
    bottom: -185px;
  }

  .section-label {
    letter-spacing: .13em;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 601px) and (max-width: 780px) {
  .hero-stage {
    right: -10px;
    bottom: -75px;
    width: 420px;
    height: 600px;
    opacity: .72;
  }

  .device-poster-front {
    left: 18%;
    width: 220px;
  }

  .device-poster-back {
    right: -2%;
    width: 182px;
  }

  .hero-mark {
    right: 2%;
    width: 165px;
  }
}

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

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

  .js-ready [data-reveal],
  .js-ready [data-hero-line],
  .js-ready .hero-stage {
    opacity: 1;
    transform: none;
  }

  .story.is-interactive .story-track {
    height: auto;
    min-height: 0;
  }

  .story.is-interactive .story-stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .story.is-interactive .story-heading {
    position: static;
    margin-bottom: 80px;
  }

  .story.is-interactive .story-step {
    position: relative;
    inset: auto;
    min-height: 680px;
    padding-block: 80px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .story-counter,
  .story-progress {
    display: none;
  }

  .kinetic-line {
    transform: none !important;
  }
}
