:root {
  --ink: #090a0f;
  --ink-2: #11131c;
  --ink-3: #1b1e2a;
  --paper: #f3efe5;
  --paper-2: #e9e2d5;
  --white: #fffdf8;
  --muted: #9e9eaa;
  --line: rgba(255, 255, 255, .16);
  --line-dark: rgba(9, 10, 15, .16);
  --heat: #ff5133;
  --amber: #ffb321;
  --lime: #c8ff3d;
  --violet: #9c89ff;
  --shell: min(1480px, calc(100vw - 80px));
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --radius: 28px;
}

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

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

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }
body.is-paused * { animation-play-state: paused !important; }

::selection { color: var(--ink); background: var(--lime); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s;
}

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

.entry-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: var(--ink);
  background: var(--lime);
  transform-origin: top;
  animation: curtain-out 1s var(--ease-io) .16s forwards;
}

.entry-curtain span {
  font: 800 clamp(28px, 5vw, 70px)/1 var(--sans);
  letter-spacing: -.07em;
  animation: curtain-word .72s var(--ease-out) forwards;
}

@keyframes curtain-out {
  0%, 48% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

@keyframes curtain-word {
  0% { opacity: 0; transform: translateY(14px); }
  40%, 75% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-10px); }
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 8000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain 9s steps(8) infinite;
}

@keyframes grain {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(3%, -4%, 0); }
  50% { transform: translate3d(-4%, 3%, 0); }
  75% { transform: translate3d(5%, 5%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.page-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 3px;
  pointer-events: none;
}

.page-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--heat), var(--amber), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9500;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--lime);
}

.cursor-ring {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border: 1px solid rgba(200, 255, 61, .68);
  border-radius: 50%;
  transition: width .32s var(--ease-out), height .32s var(--ease-out), margin .32s var(--ease-out), background .32s, border-color .32s;
}

.cursor-ring span {
  max-width: 58px;
  overflow: hidden;
  color: var(--ink);
  font: 800 0/1 var(--mono);
  letter-spacing: .08em;
  white-space: nowrap;
  transition: font-size .25s;
}

.cursor-ring.is-label {
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  border-color: var(--lime);
  background: var(--lime);
}

.cursor-ring.is-label span { font-size: 9px; }

/* Navigation */
.site-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 7000;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 8px 10px 8px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .35s, border-color .35s, box-shadow .35s;
}

.site-nav.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(9, 10, 15, .76);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.brand svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.brand sup { align-self: flex-start; margin: 6px 0 0 -4px; color: var(--lime); font: 700 8px/1 var(--mono); letter-spacing: .08em; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.desktop-nav a {
  padding: 8px 14px;
  color: rgba(255, 255, 255, .72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s, background .2s;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--white); background: rgba(255, 255, 255, .09); outline: none; }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 20px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 0 rgba(200, 255, 61, 0);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}

.nav-cta i { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--lime); background: var(--ink); font-style: normal; }
.nav-cta:hover { box-shadow: 0 0 36px rgba(200, 255, 61, .26); }

/* Shared type */
.eyebrow,
.overline,
.chapter-head span,
.returns-caption,
.proof-stamp,
.gallery-tab > span,
.gallery-axis,
.form-note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow,
.overline { font-size: 11px; font-weight: 700; }

.eyebrow { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .7); }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--heat); box-shadow: 0 0 18px rgba(255, 81, 51, .8); }
.overline { margin: 0 0 24px; color: var(--heat); }

.chapter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-bottom: 92px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
}

.chapter-head--dark { color: var(--white); border-color: var(--line); }
.chapter-head span { font-size: 10px; font-weight: 800; }
.chapter-head p { margin: 0; color: currentColor; font-size: 12px; opacity: .58; }

em { font-family: var(--serif); font-weight: 400; }

.motion-ready .reveal,
.motion-ready .reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.motion-ready .reveal-card { transform: translateY(34px) scale(.985); }
.motion-ready .reveal.is-visible,
.motion-ready .reveal-card.is-visible { opacity: 1; transform: none; }

/* Phone construction */
.phone {
  position: relative;
  aspect-ratio: 1206 / 2622;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 11.8% / 5.4%;
  background: linear-gradient(145deg, #4e5057 0%, #111217 18%, #020204 64%, #41434a 100%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .56), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
}

.phone-edge { position: absolute; inset: -3px; z-index: -1; border-radius: inherit; background: linear-gradient(105deg, #6d7078, #0b0c10 17%, #0b0c10 82%, #5d5f67); }
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 10.5% / 4.9%; background: #f3efe5; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-glass { position: absolute; inset: 7px; z-index: 3; pointer-events: none; border-radius: 10.5% / 4.9%; background: linear-gradient(112deg, rgba(255, 255, 255, .15), transparent 20%, transparent 65%, rgba(255, 255, 255, .04)); mix-blend-mode: screen; }
.phone-buttons { position: absolute; left: -5px; top: 20%; width: 4px; z-index: -1; }
.phone-buttons i { display: block; width: 4px; height: 40px; margin-bottom: 12px; border-radius: 3px 0 0 3px; background: #35373e; box-shadow: inset 1px 0 rgba(255, 255, 255, .2); }
.phone-buttons i:first-child { height: 25px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 6;
  height: 15vh;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero-art { position: absolute; inset: 0; z-index: -3; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; transform: scale(1.04); will-change: transform; }
.hero-art-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 7, 12, .98) 0%, rgba(6, 8, 13, .89) 28%, rgba(6, 8, 13, .38) 56%, rgba(6, 8, 13, .06) 100%), linear-gradient(0deg, rgba(9, 10, 15, .58), transparent 45%); }
.hero-thread { position: absolute; z-index: -1; top: 54%; left: -10%; width: 72%; height: 1px; background: linear-gradient(90deg, transparent, var(--lime) 42%, #fff285 75%, transparent); filter: drop-shadow(0 0 7px rgba(200, 255, 61, .8)); transform: rotate(-1deg); }
.hero-thread i { position: absolute; right: -2px; top: -5px; width: 11px; height: 11px; border: 2px solid var(--lime); border-radius: 50%; animation: thread-pulse 2.4s ease-in-out infinite; }

@keyframes thread-pulse { 50% { transform: scale(1.8); opacity: .35; } }

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(400px, .72fr);
  gap: clamp(50px, 7vw, 130px);
  align-items: center;
  min-height: 100svh;
  padding: 128px 0 92px;
}

.hero-copy { position: relative; z-index: 2; align-self: start; max-width: 815px; }
.hero-copy h1 { margin: 28px 0 27px; font-size: clamp(58px, 6vw, 102px); font-weight: 700; line-height: .91; letter-spacing: -.078em; }
.hero-line { display: block; overflow: hidden; padding: .04em .04em .09em 0; }
.hero-line > span { display: block; transform: translateY(112%); animation: hero-line-in .9s var(--ease-out) forwards; }
.hero-line:nth-child(2) > span { animation-delay: .12s; }
.hero-line:nth-child(3) > span { animation-delay: .24s; }
.hero-line em { color: var(--heat); font-style: italic; }
.hero-line--quiet { margin-top: .09em; color: var(--white); font-family: var(--serif); font-size: .75em; font-weight: 400; letter-spacing: -.055em; }

@keyframes hero-line-in { to { transform: translateY(0); } }

.hero-deck { max-width: 640px; margin: 0 0 30px; color: rgba(255, 255, 255, .67); font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; }
.hero-deck strong { color: var(--white); font-weight: 700; }

.access-form { width: min(620px, 100%); }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 7px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 18px; background: rgba(7, 8, 12, .64); box-shadow: 0 22px 60px rgba(0, 0, 0, .2); backdrop-filter: blur(13px); }
.form-row input { min-width: 0; padding: 11px 14px; color: var(--white); border: 0; outline: 0; background: transparent; }
.form-row input::placeholder { color: rgba(255, 255, 255, .42); }
.form-row input:focus-visible { box-shadow: inset 0 -2px var(--lime); }
.form-row button { display: inline-flex; align-items: center; gap: 15px; min-height: 52px; padding: 0 18px 0 22px; color: var(--ink); border: 0; border-radius: 12px; background: var(--lime); font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s var(--ease-out), background .25s, color .25s; }
.form-row button:hover { transform: translateY(-2px); }
.form-row button i { font-style: normal; font-size: 18px; }
.form-row button.is-success { background: var(--white); }
.form-note { margin: 9px 0 0 8px; color: rgba(255, 255, 255, .42); font-size: 8px; }
.form-message { min-height: 20px; margin: 6px 0 0 8px; color: var(--lime); font-size: 12px; font-weight: 700; }
.form-message.is-error { color: #ff8c78; }

.hero-product { position: relative; z-index: 3; justify-self: center; width: min(345px, 26vw); perspective: 1400px; transform-style: preserve-3d; }
.phone--hero { width: 100%; transform: rotateY(-10deg) rotateX(3deg) rotateZ(3deg); transition: transform .5s var(--ease-out); will-change: transform; }
.hero-halo { position: absolute; inset: 10% -45%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 178, 33, .28), rgba(255, 81, 51, .12) 32%, transparent 68%); filter: blur(28px); animation: halo-breathe 6s ease-in-out infinite; }
@keyframes halo-breathe { 50% { transform: scale(1.1); opacity: .68; } }
.proof-stamp { position: absolute; right: -80px; bottom: 6%; display: flex; align-items: center; gap: 10px; color: var(--ink); transform: rotate(-6deg); }
.proof-stamp span { padding: 8px 11px; background: var(--lime); font-size: 9px; font-weight: 800; }
.proof-stamp b { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; color: var(--white); font-size: 11px; }

.hero-scroll { position: absolute; z-index: 8; left: 50%; bottom: 23px; display: flex; align-items: center; gap: 16px; color: rgba(255, 255, 255, .55); font: 700 9px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; font-style: normal; animation: scroll-nudge 2s ease-in-out infinite; }
@keyframes scroll-nudge { 50% { transform: translateY(4px); } }

/* Recognition */
.recognition {
  position: relative;
  z-index: 2;
  padding: 130px 0 160px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 54px 54px 0 0;
}

.recognition-statement { max-width: 1120px; margin: 0 auto 110px; text-align: center; }
.recognition-statement p { margin: 0; color: rgba(9, 10, 15, .48); font-family: var(--serif); font-size: clamp(26px, 3.1vw, 54px); font-style: italic; }
.recognition-statement h2 { margin: -.03em 0; font-size: clamp(76px, 11vw, 174px); line-height: .92; letter-spacing: -.085em; }
.recognition-statement h2 em { color: var(--heat); }

.reflex-sequence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.reflex-card { position: relative; min-height: 320px; padding: 28px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, .34); }
.reflex-card > span { display: inline-block; padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 99px; font: 700 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.reflex-card > b { display: block; margin-top: 80px; font-size: clamp(36px, 4vw, 62px); letter-spacing: -.065em; }
.reflex-card p { max-width: 310px; margin: 8px 0 0; color: rgba(9, 10, 15, .56); }
.reflex-card > i { position: absolute; right: 20px; bottom: -26px; color: rgba(9, 10, 15, .05); font: 800 150px/1 var(--sans); letter-spacing: -.09em; }
.reflex-card--heat { color: var(--white); border-color: transparent; background: var(--heat); }
.reflex-card--heat > span { border-color: rgba(255, 255, 255, .35); }
.reflex-card--heat p { color: rgba(255, 255, 255, .7); }
.reflex-card--heat > i { color: rgba(255, 255, 255, .11); }
.reflex-card--dark { color: var(--white); background: var(--ink); }
.reflex-card--dark > span { border-color: rgba(255, 255, 255, .22); }
.reflex-card--dark p { color: rgba(255, 255, 255, .56); }
.reflex-card--dark > i { color: rgba(255, 255, 255, .07); }
.recognition-close { max-width: 920px; margin: 100px auto 0; font-family: var(--serif); font-size: clamp(27px, 3.6vw, 54px); line-height: 1.12; letter-spacing: -.03em; text-align: center; }

/* Pause story */
.pause-story {
  --pause-p: 0;
  position: relative;
  height: 360vh;
  color: var(--white);
  background: var(--ink);
}

.pause-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.pause-ambient { position: absolute; inset: 0; background: radial-gradient(circle at calc(72% - var(--pause-p) * 10%) 52%, color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 28%), transparent), transparent 40%), linear-gradient(120deg, #08090e, #12141d); }
.pause-ambient::before,
.pause-ambient::after { content: ""; position: absolute; top: 50%; left: 72%; width: calc(210px + var(--pause-p) * 580px); aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--lime) calc(var(--pause-p) * 80%), rgba(255,255,255,.16)); border-radius: 50%; transform: translate(-50%, -50%); opacity: calc(.14 + var(--pause-p) * .24); }
.pause-ambient::after { width: calc(340px + var(--pause-p) * 710px); opacity: calc(.08 + var(--pause-p) * .16); }
.pause-shell { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(350px, .78fr); gap: clamp(50px, 8vw, 150px); align-items: center; height: 100%; padding: 86px 0 30px; }
.pause-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.pause-copy .chapter-head { position: absolute; top: 100px; left: 0; right: 0; margin: 0; }
.pause-copy .overline { margin-bottom: 20px; color: color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 100%), var(--lime)); }
.pause-copy h2 { margin: 0; font-size: clamp(54px, 6.1vw, 94px); line-height: .93; letter-spacing: -.074em; }
.pause-copy h2 em { color: color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 100%), var(--lime)); }
.pause-narrative { position: relative; min-height: 110px; max-width: 610px; margin-top: 30px; }
.pause-narrative p { position: absolute; inset: 0; margin: 0; color: rgba(255, 255, 255, .62); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.55; opacity: 0; transform: translateY(15px); transition: opacity .45s, transform .45s; }
.pause-narrative p.is-active { opacity: 1; transform: none; }
.pause-narrative strong { color: var(--white); }
.pause-progress { display: flex; align-items: center; gap: 17px; max-width: 420px; margin-top: 34px; }
.pause-progress > i { flex: 1; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .13); }
.pause-progress b { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--heat), var(--amber), var(--lime)); transform: scaleX(var(--pause-p)); transform-origin: left; }
.pause-progress span { font: 700 9px/1 var(--mono); letter-spacing: .12em; }

.pause-device { position: relative; justify-self: center; width: min(340px, 24vw); }
.phone--pause { width: 100%; transform: rotate(calc((1 - var(--pause-p)) * 4deg)); transition: filter .2s; }
.pause-orbit { position: absolute; inset: -13%; z-index: -1; border: 1px dashed rgba(255, 255, 255, .14); border-radius: 50%; transform: rotate(calc(var(--pause-p) * 40deg)); }
.pause-orbit::before { content: ""; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 100%), var(--lime)); box-shadow: 0 0 30px currentColor; }
.pause-orbit span { position: absolute; padding: 4px 7px; color: rgba(255, 255, 255, .48); background: var(--ink); font: 700 8px/1 var(--mono); letter-spacing: .12em; }
.pause-orbit span:first-child { top: 24%; left: -12px; }
.pause-orbit span:last-child { right: -18px; bottom: 24%; }
.pause-readout { position: absolute; top: 50%; right: -210px; width: 240px; padding: 17px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; background: rgba(9, 10, 15, .82); backdrop-filter: blur(12px); transform: translateY(-50%); }
.pause-readout > span:first-child { display: block; font: 400 45px/.9 var(--mono); letter-spacing: -.07em; }
.pause-readout > span:last-child { display: block; color: color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 100%), var(--lime)); font: 800 9px/1 var(--mono); letter-spacing: .14em; }
.pause-readout svg { width: 100%; height: 82px; overflow: visible; }
.pause-readout path { fill: none; stroke: url(#waveGradient); stroke-width: 5; stroke-linecap: round; }
.pause-readout circle { fill: var(--white); stroke: color-mix(in srgb, var(--heat) calc((1 - var(--pause-p)) * 100%), var(--lime)); stroke-width: 5; filter: drop-shadow(0 0 7px currentColor); }

/* What returns */
.returns { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: #11131b; isolation: isolate; }
.returns::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 9, 14, .92), rgba(7, 9, 14, .3) 48%, rgba(7, 9, 14, .06)), linear-gradient(0deg, rgba(7, 9, 14, .65), transparent 52%); }
.returns-art { position: absolute; inset: 0; z-index: -2; }
.returns-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.returns-shell { display: flex; flex-direction: column; justify-content: center; min-height: 100svh; padding: 110px 0 70px; }
.returns-copy { max-width: 900px; }
.returns-copy .overline { color: var(--lime); }
.returns-copy h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(43px, 5.5vw, 88px); font-weight: 400; line-height: .97; letter-spacing: -.055em; }
.returns-big { margin: 0; color: var(--white); font-size: clamp(26px, 3.6vw, 55px); font-weight: 750; line-height: 1.08; letter-spacing: -.05em; }
.returns-caption { position: absolute; left: 40px; right: 40px; bottom: 30px; display: flex; align-items: center; gap: 15px; color: rgba(255, 255, 255, .48); font-size: 8px; }
.returns-caption i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--heat), var(--amber), var(--lime)); box-shadow: 0 0 12px rgba(200, 255, 61, .5); }

/* Product proof */
.proof { padding: 145px 0 170px; overflow: hidden; color: var(--white); background: var(--ink); }
.proof-heading { max-width: 980px; }
.proof-heading .chapter-head { width: var(--shell); margin-bottom: 120px; }
.proof-heading h2 { margin: 0; font-size: clamp(54px, 7.2vw, 112px); line-height: .91; letter-spacing: -.078em; }
.proof-heading h2 em { color: var(--lime); }
.proof-lede { max-width: 720px; margin: 32px 0 100px; color: rgba(255, 255, 255, .58); font-size: clamp(17px, 1.5vw, 22px); }

.product-gallery { display: grid; grid-template-columns: minmax(300px, .62fr) minmax(500px, 1fr); gap: clamp(40px, 7vw, 120px); align-items: center; min-height: 820px; }
.gallery-copy { display: flex; flex-direction: column; gap: 9px; }
.gallery-tab { position: relative; padding: 24px 28px; color: var(--white); border: 1px solid rgba(255, 255, 255, .1); border-radius: 22px; background: rgba(255, 255, 255, .025); text-align: left; cursor: pointer; transition: border-color .35s, background .35s, transform .35s var(--ease-out); }
.gallery-tab::before { content: ""; position: absolute; top: 22px; left: -1px; width: 3px; height: 0; background: var(--lime); transition: height .45s var(--ease-out); }
.gallery-tab:hover { transform: translateX(5px); border-color: rgba(255, 255, 255, .22); }
.gallery-tab.is-active { border-color: rgba(200, 255, 61, .4); background: rgba(200, 255, 61, .065); }
.gallery-tab.is-active::before { height: calc(100% - 44px); }
.gallery-tab > span { display: block; margin-bottom: 12px; color: var(--lime); font-size: 9px; font-weight: 800; }
.gallery-tab > b { display: block; font-size: clamp(19px, 1.6vw, 24px); letter-spacing: -.035em; }
.gallery-tab p { max-height: 0; margin: 0; overflow: hidden; color: rgba(255, 255, 255, .56); opacity: 0; transition: max-height .5s, margin .5s, opacity .5s; }
.gallery-tab.is-active p { max-height: 100px; margin-top: 8px; opacity: 1; }

.phone-fan { position: relative; justify-self: center; width: min(760px, 48vw); height: 760px; perspective: 1600px; }
.phone-fan::before { content: ""; position: absolute; inset: 8% -7%; background: radial-gradient(circle at 50% 55%, rgba(156, 137, 255, .22), rgba(255, 81, 51, .1) 38%, transparent 67%); filter: blur(22px); }
.gallery-phone { position: absolute; top: 50%; left: 50%; width: 265px; transform-style: preserve-3d; transition: transform .8s var(--ease-out), opacity .8s var(--ease-out), filter .8s; }
.gallery-phone--primary { z-index: 3; transform: translate(-50%, -50%) rotateY(-2deg) rotateZ(-1deg) scale(1.07); }
.gallery-phone--secondary { z-index: 2; transform: translate(-105%, -46%) rotateY(13deg) rotateZ(-8deg) scale(.83); }
.gallery-phone--tertiary { z-index: 1; transform: translate(5%, -46%) rotateY(-13deg) rotateZ(8deg) scale(.83); }
.gallery-phone:not(.is-active) { filter: brightness(.68) saturate(.72); }
.phone-fan[data-active="detail"] .gallery-phone--secondary { z-index: 4; transform: translate(-50%, -50%) rotateY(0) rotateZ(0) scale(1.07); filter: none; }
.phone-fan[data-active="detail"] .gallery-phone--primary { z-index: 2; transform: translate(-108%, -46%) rotateY(13deg) rotateZ(-8deg) scale(.83); filter: brightness(.68) saturate(.72); }
.phone-fan[data-active="detail"] .gallery-phone--tertiary { transform: translate(8%, -46%) rotateY(-13deg) rotateZ(8deg) scale(.83); }
.phone-fan[data-active="plan"] .gallery-phone--tertiary { z-index: 4; transform: translate(-50%, -50%) rotateY(0) rotateZ(0) scale(1.07); filter: none; }
.phone-fan[data-active="plan"] .gallery-phone--primary { z-index: 1; transform: translate(-106%, -46%) rotateY(13deg) rotateZ(-8deg) scale(.83); filter: brightness(.68) saturate(.72); }
.phone-fan[data-active="plan"] .gallery-phone--secondary { z-index: 2; transform: translate(6%, -46%) rotateY(-13deg) rotateZ(8deg) scale(.83); filter: brightness(.68) saturate(.72); }
.phone--gallery { width: 100%; }
.gallery-axis { position: absolute; left: 0; right: 0; bottom: 25px; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .38); font-size: 8px; }
.gallery-axis i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--heat), var(--lime)); }

/* Control */
.control { padding: 150px 0; color: var(--ink); background: var(--paper); }
.control-shell { display: block; }
.control-copy { max-width: 1240px; }
.control-copy .chapter-head { margin-bottom: 80px; }
.control-copy h2 { margin: 0; font-size: clamp(54px, 6vw, 94px); line-height: .92; letter-spacing: -.075em; }
.control-copy h2 em { color: var(--heat); }
.control-lede { max-width: 760px; margin: 26px 0 58px; color: rgba(9, 10, 15, .56); font-size: clamp(17px, 1.5vw, 21px); }
.plan-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.plan-level { display: grid; grid-template-columns: 52px 1fr auto; gap: 15px; align-items: center; min-height: 150px; padding: 20px; border: 1px solid var(--line-dark); border-radius: 17px; background: rgba(255, 255, 255, .38); }
.plan-level > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: rgba(9, 10, 15, .06); font-size: 22px; }
.plan-level b { font-size: 18px; }
.plan-level p { margin: 2px 0 0; color: rgba(9, 10, 15, .54); font-size: 14px; }
.plan-level > i { color: rgba(9, 10, 15, .26); font: 800 10px/1 var(--mono); font-style: normal; }
.plan-level--active { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: 8px 8px 0 rgba(255, 81, 51, .32); }
.plan-level--active > span { background: rgba(255, 255, 255, .1); }
.plan-level--active p { color: rgba(255, 255, 255, .56); }
.plan-level--active > i { color: var(--lime); }
.control-note { max-width: 620px; margin: 30px 0 0; padding-left: 18px; border-left: 3px solid var(--heat); color: rgba(9, 10, 15, .59); }
.control-note strong { color: var(--ink); }

/* Principles */
.principles { padding: 150px 0 170px; background: var(--ink); }
.principle-intro { max-width: 1000px; margin-bottom: 90px; }
.principle-intro .overline { color: var(--lime); }
.principle-intro h2 { margin: 0; font-size: clamp(58px, 7.4vw, 114px); line-height: .9; letter-spacing: -.082em; }
.principle-intro h2 em { color: var(--lime); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.principle-card { min-height: 310px; padding: 28px; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); background: rgba(255, 255, 255, .028); }
.principle-card > span { font: 800 10px/1 var(--mono); color: var(--lime); }
.principle-card h3 { margin: 110px 0 8px; font-size: clamp(25px, 2.4vw, 36px); line-height: 1; letter-spacing: -.05em; }
.principle-card p { max-width: 350px; margin: 0; color: rgba(255, 255, 255, .52); }

/* FAQ */
.faq { padding: 140px 0; color: var(--ink); background: var(--paper-2); }
.faq-shell { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(60px, 10vw, 170px); }
.faq h2 { margin: 0; font-size: clamp(52px, 6.5vw, 96px); line-height: .91; letter-spacing: -.075em; }
.faq-list details { border-top: 1px solid var(--line-dark); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 26px 0; font-size: clamp(17px, 1.5vw, 21px); font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--line-dark); border-radius: 50%; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .25s; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 690px; margin: -6px 50px 26px 0; color: rgba(9, 10, 15, .57); }

/* Final */
.final-cta { position: relative; min-height: 95svh; display: grid; place-items: center; overflow: hidden; text-align: center; background: #08090e; isolation: isolate; }
.final-vortex { position: absolute; top: 50%; left: 50%; z-index: -2; width: 75vw; max-width: 1100px; aspect-ratio: 1; transform: translate(-50%, -50%); }
.final-vortex::before,
.final-vortex i { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255, 81, 51, .15); border-radius: 46% 54% 48% 52%; animation: final-spin 30s linear infinite; }
.final-vortex i:nth-child(1) { inset: 16%; border-color: rgba(255, 178, 33, .17); animation-duration: 23s; animation-direction: reverse; }
.final-vortex i:nth-child(2) { inset: 28%; border-color: rgba(200, 255, 61, .23); animation-duration: 18s; }
.final-vortex i:nth-child(3) { inset: 39%; border-color: rgba(255, 255, 255, .15); animation-duration: 14s; animation-direction: reverse; }
@keyframes final-spin { to { transform: rotate(360deg); } }
.final-line { position: absolute; left: 0; right: 0; top: 51%; z-index: -1; height: 1px; background: linear-gradient(90deg, transparent, var(--heat), var(--amber), var(--lime), transparent); box-shadow: 0 0 14px rgba(200, 255, 61, .45); }
.final-shell { padding: 130px 0 100px; }
.final-shell .overline { color: var(--lime); }
.final-shell h2 { margin: 0; font-size: clamp(76px, 11vw, 172px); line-height: .78; letter-spacing: -.09em; }
.final-shell h2 em { color: var(--lime); }
.final-copy { max-width: 690px; margin: 42px auto 32px; color: rgba(255, 255, 255, .57); font-size: clamp(16px, 1.4vw, 20px); }
.access-form--final { margin-inline: auto; text-align: left; }

footer { color: var(--white); border-top: 1px solid rgba(255, 255, 255, .1); background: var(--ink); }
.footer-shell { display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 40px; align-items: center; min-height: 120px; }
.brand--footer { color: var(--white); }
.footer-shell > p { margin: 0; color: rgba(255, 255, 255, .42); font-family: var(--serif); font-style: italic; }
.footer-shell > div { display: flex; gap: 20px; font-size: 11px; }
.footer-shell > div a:hover { color: var(--lime); }
.footer-shell > span { color: rgba(255, 255, 255, .4); font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .hero-shell { grid-template-columns: 1fr minmax(310px, .55fr); gap: 30px; }
  .hero-copy h1 { font-size: clamp(57px, 7.6vw, 86px); }
  .hero-product { width: min(310px, 30vw); }
  .proof-stamp { right: -45px; }
  .pause-readout { right: -120px; width: 190px; }
  .product-gallery { grid-template-columns: 330px 1fr; gap: 35px; }
  .phone-fan { width: 600px; }
  .gallery-phone { width: 235px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 780px); }
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .hero { min-height: auto; }
  .hero-art img { object-position: 63% center; }
  .hero-art-shade { background: linear-gradient(0deg, rgba(5, 7, 12, 1) 0%, rgba(5, 7, 12, .92) 41%, rgba(5, 7, 12, .12) 82%), linear-gradient(90deg, rgba(5, 7, 12, .55), transparent); }
  .hero-shell { grid-template-columns: 1fr; gap: 50px; min-height: 100svh; padding-top: 118px; }
  .hero-copy { max-width: 730px; }
  .hero-product { width: min(300px, 62vw); margin: 0 auto 60px; }
  .hero-thread { top: 72%; width: 90%; }
  .hero-scroll { display: none; }
  .reflex-card { min-height: 290px; }
  .pause-story { height: 280vh; }
  .pause-shell { grid-template-columns: 1fr 300px; gap: 20px; }
  .pause-device { width: 270px; }
  .pause-readout { right: -75px; width: 160px; }
  .pause-readout > span:first-child { font-size: 34px; }
  .pause-readout svg { height: 60px; }
  .product-gallery { grid-template-columns: 1fr; min-height: auto; }
  .gallery-copy { display: grid; grid-template-columns: repeat(3, 1fr); }
  .gallery-tab { padding: 20px; }
  .gallery-tab.is-active p { max-height: 180px; }
  .phone-fan { width: 620px; max-width: 100%; }
  .faq-shell { grid-template-columns: 1fr; }
  .footer-shell { grid-template-columns: 1fr auto; padding: 36px 0; }
  .footer-shell > p { display: none; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 28px); --radius: 22px; }
  body { font-size: 15px; }
  .site-nav { top: 9px; }
  .nav-shell { min-height: 55px; padding: 7px 7px 7px 14px; }
  .brand { font-size: 19px; }
  .brand svg { width: 23px; height: 23px; }
  .nav-cta { gap: 0; padding: 10px 14px; font-size: 10px; }
  .nav-cta i { display: none; }
  .chapter-head { align-items: flex-start; margin-bottom: 62px; }
  .chapter-head p { display: none; }
  .hero-art { height: 76svh; }
  .hero-art img { object-position: 64% center; }
  .hero-art-shade { background: linear-gradient(0deg, rgba(5, 7, 12, 1) 1%, rgba(5, 7, 12, .76) 43%, rgba(5, 7, 12, .09) 78%); }
  .hero-shell { display: flex; flex-direction: column; align-items: stretch; gap: 38px; padding: 98px 0 60px; }
  .hero-copy { order: 1; align-self: stretch; }
  .hero-product { order: 2; width: min(215px, 49vw); margin: 4px auto 42px; }
  .proof-stamp { right: -52px; bottom: 4%; }
  .proof-stamp span { font-size: 7px; }
  .proof-stamp b { width: 34px; height: 34px; }
  .eyebrow { font-size: 9px; }
  .hero-copy h1 { margin-top: 20px; font-size: clamp(47px, 14.6vw, 67px); line-height: .91; }
  .hero-line--quiet { font-size: .72em; }
  .hero-deck { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; padding: 6px; }
  .form-row input { min-height: 47px; }
  .form-row button { justify-content: space-between; width: 100%; min-height: 50px; }
  .hero-thread { top: 62%; left: -20%; width: 120%; }

  .recognition { padding: 90px 0 110px; border-radius: 32px 32px 0 0; }
  .recognition-statement { margin-bottom: 64px; }
  .recognition-statement p { font-size: 24px; }
  .recognition-statement h2 { margin: .05em 0; font-size: clamp(60px, 22vw, 95px); }
  .reflex-sequence { grid-template-columns: 1fr; }
  .reflex-card { min-height: 230px; }
  .reflex-card > b { margin-top: 54px; }
  .recognition-close { margin-top: 70px; font-size: 31px; }

  .pause-story { height: 240svh; }
  .pause-sticky { height: 100svh; }
  .pause-shell { display: block; padding-top: 76px; }
  .pause-copy { display: block; }
  .pause-copy .chapter-head { top: 78px; }
  .pause-copy .overline { margin-top: 82px; margin-bottom: 12px; }
  .pause-copy h2 { font-size: clamp(40px, 12.5vw, 56px); }
  .pause-narrative { min-height: 80px; margin-top: 14px; }
  .pause-narrative p { font-size: 14px; line-height: 1.4; }
  .pause-progress { max-width: 100%; margin-top: 15px; }
  .pause-device { position: absolute; left: 50%; bottom: 3svh; width: min(190px, 44vw); transform: translateX(-50%); }
  .pause-orbit { inset: -12%; }
  .pause-readout { top: 46%; right: -100px; width: 130px; padding: 12px; }
  .pause-readout > span:first-child { font-size: 27px; }
  .pause-readout svg { height: 48px; }
  .pause-readout > span:last-child { font-size: 7px; }

  .returns { min-height: 88svh; }
  .returns-art img { object-position: 38% center; }
  .returns::after { background: linear-gradient(0deg, rgba(7, 9, 14, .85), rgba(7, 9, 14, .1) 80%), linear-gradient(90deg, rgba(7, 9, 14, .76), transparent); }
  .returns-shell { justify-content: flex-end; min-height: 88svh; padding-bottom: 90px; }
  .returns-copy h2 { font-size: 44px; }
  .returns-big { font-size: 27px; }
  .returns-caption { left: 14px; right: 14px; }

  .proof { padding: 95px 0 110px; }
  .proof-heading .chapter-head { width: var(--shell); margin-bottom: 78px; }
  .proof-heading h2 { font-size: 52px; }
  .proof-lede { margin: 24px 0 55px; }
  .gallery-copy { grid-template-columns: 1fr; }
  .gallery-tab p { display: none; }
  .gallery-tab.is-active p { display: block; }
  .phone-fan { width: 100%; height: 520px; margin-top: 20px; }
  .gallery-phone { width: 180px; }
  .gallery-phone--secondary { transform: translate(-95%, -42%) rotateY(0) rotateZ(-8deg) scale(.75); }
  .gallery-phone--tertiary { transform: translate(-5%, -42%) rotateY(0) rotateZ(8deg) scale(.75); }
  .phone-fan[data-active="detail"] .gallery-phone--primary,
  .phone-fan[data-active="plan"] .gallery-phone--primary { transform: translate(-95%, -42%) rotateZ(-8deg) scale(.75); }
  .phone-fan[data-active="detail"] .gallery-phone--tertiary,
  .phone-fan[data-active="plan"] .gallery-phone--secondary { transform: translate(-5%, -42%) rotateZ(8deg) scale(.75); }
  .gallery-axis { bottom: 0; }

  .control { padding: 100px 0; }
  .control-copy .chapter-head { margin-bottom: 65px; }
  .control-copy h2 { font-size: 51px; }
  .plan-levels { grid-template-columns: 1fr; }
  .plan-level { grid-template-columns: 45px 1fr auto; min-height: 0; padding: 13px; }
  .plan-level > span { width: 45px; height: 45px; }
  .plan-level p { font-size: 12px; }

  .principles { padding: 95px 0 110px; }
  .principle-intro { margin-bottom: 58px; }
  .principle-intro h2 { font-size: 51px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 240px; }
  .principle-card h3 { margin-top: 70px; }

  .faq { padding: 95px 0; }
  .faq h2 { font-size: 50px; }
  .faq-list summary { padding: 22px 0; }

  .final-cta { min-height: 100svh; }
  .final-shell { padding: 110px 0 80px; }
  .final-shell h2 { font-size: clamp(68px, 23vw, 100px); line-height: .82; }
  .final-copy { margin-top: 35px; }
  .final-vortex { width: 150vw; }

  .footer-shell { grid-template-columns: 1fr; gap: 22px; }
  .footer-shell > div { order: 3; flex-wrap: wrap; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .entry-curtain { display: none; }
  .grain { animation: none; }
  .motion-ready .reveal,
  .motion-ready .reveal-card { opacity: 1; transform: none; }
  .hero-art img,
  .phone--hero { transform: none !important; }
  .pause-story { height: auto; }
  .pause-sticky { position: relative; height: auto; min-height: 900px; }
  .pause-shell { min-height: 900px; }
  .pause-narrative { min-height: auto; }
  .pause-narrative p { position: static; margin: 10px 0; opacity: 1; transform: none; }
  .pause-device { --pause-p: 1; }
  .final-vortex { opacity: .55; }
}

@supports not (color: color-mix(in srgb, white, black)) {
  .pause-copy .overline,
  .pause-copy h2 em,
  .pause-readout > span:last-child { color: var(--lime); }
  .pause-ambient { background: radial-gradient(circle at 70% 52%, rgba(200, 255, 61, .14), transparent 40%), linear-gradient(120deg, #08090e, #12141d); }
}
