:root {
  --ink: #09090b;
  --ink-2: #111216;
  --ink-3: #1a1b20;
  --paper: #f2f0e8;
  --paper-2: #e9e6dc;
  --white: #fbfaf6;
  --muted: #a7a7ad;
  --muted-dark: #6f706f;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(9, 9, 11, .14);
  --lime: #c9ff63;
  --lime-soft: #dcffa0;
  --violet: #a99aff;
  --violet-soft: #c7bfff;
  --coral: #ff745f;
  --orange: #ffad6b;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
  --gutter: clamp(22px, 5vw, 82px);
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
::selection { color: var(--ink); background: var(--lime); }

.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;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 99px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  z-index: 900;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.cursor {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  pointer-events: none;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s ease, border-color .25s ease;
  mix-blend-mode: difference;
}
.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.cursor.is-hovering { width: 70px; height: 70px; background: #fff; border-color: #fff; }

.nav {
  position: fixed;
  z-index: 800;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), 1440px);
  height: 66px;
  padding: 8px 9px 8px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 22px;
  transform: translateX(-50%);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, transform .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(12, 12, 15, .72);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.nav.is-hidden { transform: translate(-50%, -130%); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 20px; font-weight: 720; letter-spacing: -.05em; }
.brand svg { width: 26px; height: 26px; overflow: visible; }
.brand svg path { fill: none; stroke: var(--lime); stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { position: relative; color: rgba(255, 255, 255, .67); font-size: 13px; font-weight: 570; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--lime); transform: scaleX(0); transition: transform .35s var(--ease-out); transform-origin: right; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav > .button { justify-self: end; }
.button, .waitlist-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  font-weight: 720;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.button::before, .waitlist-form button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--white);
  transform: translateY(105%);
  transition: transform .45s var(--ease-out);
}
.button:hover::before, .waitlist-form button:hover::before { transform: translateY(0); }
.button--small { min-height: 48px; padding: 0 17px 0 22px; font-size: 13px; }
.button i, .waitlist-form button i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(9, 9, 11, .1); font-size: 13px; font-style: normal; }

.section-light { color: var(--ink); background: var(--paper); }
.section-number { color: rgba(9, 9, 11, .52); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.section-number--dark { color: rgba(255, 255, 255, .47); }
.overline { margin: 0 0 28px; font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 10px; font-weight: 750; letter-spacing: .19em; }
.display { margin: 0; font-size: clamp(52px, 7.2vw, 118px); line-height: .88; letter-spacing: -.07em; font-weight: 610; }
.display em { color: var(--lime); font-family: Iowan Old Style, Baskerville, "Times New Roman", serif; font-weight: 400; letter-spacing: -.07em; }
.display--dark { color: var(--ink); }
.display--dark em { color: #6653f2; }

.hero {
  position: relative;
  min-height: max(860px, 100svh);
  padding: 150px var(--gutter) 58px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, .88fr);
  align-items: center;
  gap: clamp(30px, 4vw, 80px);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .38));
}
.hero-aurora {
  position: absolute;
  z-index: -3;
  top: -26%;
  right: -10%;
  width: min(90vw, 1250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 52%, rgba(169, 154, 255, .36), rgba(255, 116, 95, .17) 28%, rgba(201, 255, 99, .08) 47%, transparent 67%);
  filter: blur(12px);
  animation: aurora 10s ease-in-out infinite alternate;
}
@keyframes aurora { to { transform: translate3d(-4%, 5%, 0) scale(1.08); filter: blur(24px); } }
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.orbit { position: absolute; z-index: -1; right: -4vw; top: 48%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translateY(-50%) rotate(-13deg); }
.orbit::after { content: ""; position: absolute; top: 9%; left: 15%; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 28px var(--lime); }
.orbit--one { width: min(63vw, 920px); aspect-ratio: 1.25; }
.orbit--two { width: min(50vw, 720px); aspect-ratio: 1; transform: translateY(-50%) rotate(22deg); }
.orbit--two::after { top: auto; bottom: 14%; left: auto; right: 17%; width: 6px; height: 6px; background: var(--coral); box-shadow: 0 0 28px var(--coral); }

.hero-copy { position: relative; z-index: 5; max-width: 850px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; color: rgba(255,255,255,.68); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(201, 255, 99, .12); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 9px rgba(201, 255, 99, 0); } }
.hero h1 { margin: 0; font-size: clamp(59px, 7.55vw, 112px); line-height: .84; font-weight: 600; letter-spacing: -.075em; }
.hero-line { display: block; padding: 0 .08em .08em 0; overflow: hidden; }
.hero-line > span { display: block; transform: translateY(112%) rotate(2deg); transition: transform 1.05s var(--ease-out); }
.is-ready .hero-line:nth-child(1) > span { transition-delay: .08s; }
.is-ready .hero-line:nth-child(2) > span { transition-delay: .18s; }
.is-ready .hero-line:nth-child(3) > span { transition-delay: .28s; }
.is-ready .hero-line > span { transform: translateY(0) rotate(0); }
.hero h1 em { color: var(--coral); font-family: Iowan Old Style, Baskerville, "Times New Roman", serif; font-weight: 400; letter-spacing: -.08em; }
.hero-line--accent { color: var(--lime); }
.hero-intro { max-width: 590px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.5; letter-spacing: -.025em; }
.waitlist-form { position: relative; display: grid; grid-template-columns: minmax(180px, 1fr) auto; gap: 9px; width: min(100%, 580px); }
.waitlist-form--hero { margin-top: 32px; }
.waitlist-form input {
  min-width: 0;
  height: 64px;
  padding: 0 23px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,.43); }
.waitlist-form input:focus { border-color: var(--lime); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px rgba(201,255,99,.1); }
.waitlist-form input.is-invalid { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,116,95,.1); }
.waitlist-form button { min-height: 64px; padding: 0 18px 0 26px; }
.form-note { grid-column: 1 / -1; margin: 2px 0 0 22px; color: rgba(255,255,255,.43); font-size: 11px; }
.form-error { grid-column: 1 / -1; min-height: 14px; margin: -1px 0 0 22px; color: #ff9e90; font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 18px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 650; }
.text-link span { color: var(--lime); transition: transform .3s var(--ease-out); }
.text-link:hover span { transform: translateY(4px); }

.hero-scene { position: relative; z-index: 3; height: min(73vh, 770px); min-height: 650px; perspective: 1500px; }
.device { position: relative; width: var(--device-w, 340px); aspect-ratio: 390 / 844; transform-style: preserve-3d; }
.device--hero {
  --device-w: clamp(300px, 24vw, 370px);
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate3d(-50%, -50%, 80px) rotateX(calc(-3deg + var(--tilt-y, 0deg))) rotateY(calc(-17deg + var(--tilt-x, 0deg))) rotateZ(3.5deg);
  transition: transform .3s ease-out;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { margin-top: -7px; }
  50% { margin-top: 9px; }
}
.device-shell {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #4d4e54 0%, #141519 16%, #050506 50%, #34353b 86%, #0c0c0e 100%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: clamp(43px, 4.1vw, 58px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), inset 8px 0 20px rgba(255,255,255,.05), 0 38px 90px rgba(0,0,0,.42);
  transform: translateZ(16px);
}
.device-shadow { position: absolute; z-index: 0; right: -6%; bottom: -5%; left: 4%; height: 18%; border-radius: 50%; background: rgba(0,0,0,.7); filter: blur(30px); transform: translateZ(-80px) rotateX(78deg); }
.device-side { position: absolute; z-index: 2; top: 7%; bottom: 7%; width: 20px; border-radius: 16px; background: linear-gradient(90deg, #08080a, #4b4c51 50%, #0a0a0b); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); transform-style: preserve-3d; }
.device-side--left { left: -8px; transform: translateZ(1px) rotateY(82deg); }
.device-side--right { right: -8px; transform: translateZ(1px) rotateY(82deg); }
.device-side i { position: absolute; width: 4px; border-radius: 6px; background: #111216; box-shadow: 0 0 0 1px #55565a; }
.device-side--left i:first-child { top: 16%; height: 10%; }
.device-side--left i:last-child { top: 29%; height: 17%; }
.device-side--right i { top: 24%; height: 20%; right: 3px; }
.device-screen { position: relative; width: 100%; height: 100%; overflow: hidden; color: #f7f7f2; background: #111217; border: 1px solid #000; border-radius: clamp(37px, 3.6vw, 50px); }
.screen-shine { position: absolute; z-index: 20; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(112deg, rgba(255,255,255,.19), transparent 15%, transparent 72%, rgba(255,255,255,.05)); mix-blend-mode: screen; }
.device-speaker { position: absolute; z-index: 40; top: 20px; left: 50%; width: 92px; height: 25px; border-radius: 20px; background: #020203; transform: translateX(-50%); box-shadow: inset 0 1px 1px rgba(255,255,255,.08); pointer-events: none; }
.dynamic-island { position: absolute; z-index: 5; top: 11px; left: 50%; width: 88px; height: 23px; border-radius: 18px; background: #000; transform: translateX(-50%); }
.screen-status { position: relative; z-index: 4; height: 46px; padding: 15px 21px 0; display: flex; justify-content: space-between; color: rgba(255,255,255,.84); font-size: 9px; font-weight: 700; }
.status-icons { font-size: 7px; letter-spacing: 1px; }
.screen-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px 0; }
.mini-brand { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 760; letter-spacing: -.04em; }
.mini-brand i { display: block; width: 12px; height: 12px; border: 2px solid var(--lime); border-right-color: transparent; border-radius: 50%; transform: rotate(-35deg); }
.screen-pill { padding: 6px 9px; color: var(--lime); border: 1px solid rgba(201,255,99,.32); border-radius: 99px; background: rgba(201,255,99,.07); font-family: ui-monospace, Menlo, monospace; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.pause-screen { padding: 0 8px 18px; background: radial-gradient(circle at 50% 30%, rgba(169,154,255,.17), transparent 34%), #0f1014; }
.pause-app { margin: 19px 12px 0; padding: 12px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.045); }
.app-glyph { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #fff; font-size: 19px; font-weight: 800; }
.app-glyph--gradient { background: radial-gradient(circle at 72% 75%, #ffd067 0 12%, #f05b58 34%, #ad50b7 61%, #5668d8 100%); box-shadow: 0 8px 20px rgba(190,70,145,.26); }
.pause-app div:last-child { display: grid; gap: 2px; }
.pause-app small { color: rgba(255,255,255,.44); font-size: 8px; }
.pause-app b { font-size: 13px; }
.pause-message { margin: 25px 16px 0; }
.kicker { color: rgba(255,255,255,.42); font-family: ui-monospace, Menlo, monospace; font-size: 7px; font-weight: 700; letter-spacing: .18em; }
.pause-message h2 { margin: 7px 0 4px; max-width: 250px; font-size: clamp(23px, 2vw, 30px); line-height: .97; letter-spacing: -.055em; }
.pause-message p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }
.wave-card { margin: 17px 10px 0; padding: 10px 8px 9px; border: 1px solid rgba(201,255,99,.15); border-radius: 19px; background: rgba(201,255,99,.045); }
.wave-card svg { width: 100%; height: auto; }
.wave-line { fill: none; stroke: var(--lime); stroke-width: 2.3; stroke-linecap: round; stroke-dasharray: 480; stroke-dashoffset: 480; animation: drawWave 2s 1s var(--ease-out) forwards; }
@keyframes drawWave { to { stroke-dashoffset: 0; } }
.wave-dot { fill: var(--lime); filter: drop-shadow(0 0 6px var(--lime)); animation: dotPulse 1.6s ease-in-out infinite; }
@keyframes dotPulse { 50% { r: 8px; opacity: .55; } }
.wave-meta { margin-top: -4px; display: flex; justify-content: space-between; align-items: baseline; color: rgba(255,255,255,.35); font-family: ui-monospace, Menlo, monospace; font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
.wave-meta b { color: #fff; font-size: 21px; letter-spacing: -.06em; }
.screen-primary, .screen-secondary { width: calc(100% - 20px); min-height: 43px; margin: 10px 10px 0; border: 0; border-radius: 14px; font-size: 10px; font-weight: 720; }
.screen-primary { color: var(--ink); background: var(--lime); box-shadow: 0 10px 28px rgba(201,255,99,.13); }
.screen-secondary { min-height: 35px; margin-top: 5px; color: rgba(255,255,255,.52); background: transparent; border: 1px solid rgba(255,255,255,.1); }
.screen-reassure { margin: 8px 0 0; color: rgba(255,255,255,.3); font-size: 7px; text-align: center; }

.feed-card { position: absolute; z-index: 2; width: 190px; padding: 12px; display: flex; align-items: center; gap: 10px; color: #fff; background: rgba(26,27,32,.68); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: transform .2s ease-out; }
.feed-card div { display: grid; gap: 3px; }
.feed-card b { font-size: 11px; }
.feed-card small { color: rgba(255,255,255,.44); font-size: 8px; }
.feed-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; font-size: 12px; }
.feed-icon--pink { background: #e95280; }
.feed-icon--blue { background: #5677f6; }
.feed-icon--orange { background: #f58949; }
.feed-card--one { top: 16%; left: -4%; transform: rotate(-7deg); animation: feedFloatOne 5s ease-in-out infinite; }
.feed-card--two { top: 23%; right: -6%; transform: rotate(7deg); animation: feedFloatTwo 6.5s ease-in-out infinite; }
.feed-card--three { right: -3%; bottom: 14%; transform: rotate(-5deg); animation: feedFloatOne 5.7s .8s ease-in-out infinite reverse; }
@keyframes feedFloatOne { 50% { margin-top: -12px; transform: rotate(-3deg) translateX(6px); } }
@keyframes feedFloatTwo { 50% { margin-top: 11px; transform: rotate(3deg) translateX(-8px); } }
.choice-chip { position: absolute; z-index: 6; bottom: 13%; left: 1%; padding: 8px 8px 8px 15px; display: flex; align-items: center; gap: 11px; color: var(--ink); background: var(--lime); border-radius: 999px; box-shadow: 0 16px 45px rgba(201,255,99,.16); font-family: ui-monospace, Menlo, monospace; font-size: 8px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; transform: rotate(4deg); }
.choice-chip b { width: 27px; height: 27px; display: grid; place-items: center; color: var(--lime); background: var(--ink); border-radius: 50%; }
.hero-foot { position: absolute; right: var(--gutter); bottom: 30px; left: var(--gutter); display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.37); font-family: ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: .15em; }
.hero-foot i { height: 1px; flex: 1; background: rgba(255,255,255,.13); }

.signal-strip { position: relative; z-index: 10; width: 100%; padding: 16px 0; color: var(--ink); background: var(--coral); overflow: hidden; transform: rotate(-1.2deg) scale(1.02); box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.signal-track { display: flex; width: max-content; align-items: center; animation: marquee 30s linear infinite; }
.signal-track span { padding: 0 22px; font-size: 13px; font-weight: 790; letter-spacing: -.015em; }
.signal-track i { font-style: normal; opacity: .5; }
@keyframes marquee { to { transform: translateX(-50%); } }

.recognition { position: relative; z-index: 2; padding: 150px var(--gutter) 170px; }
.recognition-grid { max-width: var(--max); margin: 105px auto 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: clamp(60px, 11vw, 180px); align-items: start; }
.recognition-sticky { position: sticky; top: 150px; }
.recognition-sticky .display { max-width: 850px; font-size: clamp(64px, 7.2vw, 118px); }
.recognition-lede { max-width: 610px; margin: 32px 0 0; color: var(--muted-dark); font-size: clamp(20px, 2vw, 31px); line-height: 1.22; letter-spacing: -.04em; }
.moments { display: grid; gap: 22px; }
.moment-card { position: relative; min-height: 280px; padding: 28px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 30px; background: rgba(255,255,255,.42); box-shadow: 0 26px 70px rgba(30,27,17,.06); }
.moment-card > span { color: var(--muted-dark); font-family: ui-monospace, Menlo, monospace; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.moment-card p { margin: 58px 0 20px; font-size: clamp(29px, 3vw, 44px); line-height: 1.02; letter-spacing: -.055em; }
.moment-card strong { color: var(--coral); font-size: 14px; }
.moment-card:nth-child(2) { margin-left: -70px; background: var(--ink); color: #fff; transform: rotate(-2deg); }
.moment-card:nth-child(2) > span { color: rgba(255,255,255,.44); }
.mini-loop { position: absolute; right: 18px; bottom: -28px; color: var(--violet); font-size: 160px; font-weight: 200; opacity: .5; }
.moment-card--accent { color: var(--ink); background: var(--lime); transform: rotate(1.5deg); }
.moment-card--accent > span { color: rgba(9,9,11,.5); }
.moment-card--accent p { font-size: clamp(27px, 2.4vw, 39px); }
.recognition-close { max-width: 1080px; margin: 170px auto 0; font-size: clamp(38px, 5.4vw, 83px); line-height: .97; letter-spacing: -.06em; text-align: center; }

.story { position: relative; padding: 150px var(--gutter) 180px; overflow: clip; }
.story-heading { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto 130px; }
.story-heading .overline { margin-top: 100px; }
.story-heading .display { max-width: 1250px; }
.story-backdrop { position: absolute; z-index: 0; inset: 0; display: grid; align-content: space-around; color: transparent; font-size: 20vw; line-height: .7; font-weight: 800; letter-spacing: -.09em; -webkit-text-stroke: 1px rgba(255,255,255,.045); pointer-events: none; }
.story-backdrop span:nth-child(2) { text-align: right; }
.story-layout { position: relative; z-index: 2; max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, .8fr) minmax(380px, .66fr); gap: clamp(70px, 12vw, 190px); align-items: start; }
.story-steps { padding: 10vh 0 38vh; }
.story-step { min-height: 66vh; padding: 60px 0; display: grid; grid-template-columns: 50px 1fr; gap: 24px; align-content: center; opacity: .23; transition: opacity .55s ease, transform .7s var(--ease-out); transform: translateX(-18px); }
.story-step.is-active { opacity: 1; transform: translateX(0); }
.story-step > span { padding-top: 9px; color: var(--lime); font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: .15em; }
.story-step h3 { margin: 0; font-size: clamp(38px, 4.5vw, 70px); line-height: .95; letter-spacing: -.06em; }
.story-step p { max-width: 520px; margin: 24px 0 0; color: rgba(255,255,255,.57); font-size: 18px; line-height: 1.55; }
.story-phone-wrap { position: sticky; top: 13vh; height: 74vh; min-height: 660px; display: grid; place-items: center; perspective: 1400px; }
.story-orbit { position: absolute; width: 130%; aspect-ratio: 1; border: 1px solid rgba(201,255,99,.13); border-radius: 50%; transform: rotateX(67deg) rotateZ(-22deg); }
.story-orbit::after { content: ""; position: absolute; top: 13%; left: 20%; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 25px var(--lime); }
.device--story { --device-w: min(29vw, 350px); transform: perspective(1400px) rotateY(-8deg) rotateX(2deg); transition: transform .9s var(--ease-out); }
.device--story[data-screen="pause"] { transform: perspective(1400px) rotateY(6deg) rotateX(-1deg); }
.device--story[data-screen="choice"] { transform: perspective(1400px) rotateY(0) rotateX(0) scale(1.03); }
.story-screen { background: #0f1014; }
.story-view { position: absolute; top: 46px; right: 0; bottom: 0; left: 0; padding: 8px 18px 20px; opacity: 0; transform: translateY(25px) scale(.97); pointer-events: none; transition: opacity .55s ease, transform .75s var(--ease-out); }
.device--story[data-screen="reflex"] .story-view--reflex,
.device--story[data-screen="pause"] .story-view--pause,
.device--story[data-screen="choice"] .story-view--choice { opacity: 1; transform: translateY(0) scale(1); }
.social-head { display: flex; justify-content: space-between; margin: 10px 3px 13px; font-size: 13px; }
.social-post { position: relative; overflow: hidden; border-radius: 20px; background: #272932; }
.post-one { height: 360px; background: radial-gradient(circle at 64% 26%, #b49fff 0 8%, transparent 9%), linear-gradient(145deg, #3c345a, #fa7e67 45%, #222538 46% 70%, #98c752); }
.post-one::before { content: ""; position: absolute; width: 170px; height: 220px; left: 42px; bottom: -18px; border-radius: 90px 90px 20px 20px; background: linear-gradient(#f3ca9a 0 24%, #25232e 25%); transform: rotate(-8deg); box-shadow: 0 0 0 1px rgba(255,255,255,.1); }
.post-one::after { content: ""; position: absolute; right: 20px; bottom: 25px; width: 54px; height: 140px; border-radius: 5px; background: rgba(255,255,255,.14); transform: rotate(11deg); }
.post-tag { position: absolute; z-index: 3; top: 13px; left: 13px; padding: 7px 9px; border-radius: 99px; background: rgba(0,0,0,.44); font-size: 8px; }
.post-play { position: absolute; z-index: 3; top: 50%; left: 50%; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.24); backdrop-filter: blur(10px); transform: translate(-50%, -50%); }
.social-post small { position: absolute; z-index: 3; bottom: 13px; left: 13px; font-size: 9px; }
.social-meta { padding: 12px 3px 16px; display: flex; gap: 18px; color: rgba(255,255,255,.75); font-size: 10px; }
.post-two { height: 220px; background: linear-gradient(135deg,#83d2e7,#4544a6); }
.tap-ripple { position: absolute; z-index: 12; right: 48px; bottom: 100px; width: 58px; height: 58px; border: 1px solid var(--coral); border-radius: 50%; animation: tapRipple 1.8s ease-out infinite; }
@keyframes tapRipple { 80%,100% { transform: scale(2.6); opacity: 0; } }
.story-view--pause { text-align: center; background: radial-gradient(circle at 50% 26%, rgba(169,154,255,.23), transparent 35%); }
.story-view--pause .screen-head { padding: 4px 2px; }
.pause-orb { position: relative; width: 215px; aspect-ratio: 1; margin: 32px auto 20px; display: grid; place-items: center; }
.pause-orb::before, .pause-orb::after, .pause-orb span { content: ""; position: absolute; border-radius: 50%; }
.pause-orb::before { inset: 0; border: 1px solid rgba(201,255,99,.14); animation: breathe 4s ease-in-out infinite; }
.pause-orb::after { inset: 19px; border: 1px solid rgba(201,255,99,.24); animation: breathe 4s .4s ease-in-out infinite reverse; }
.pause-orb span { inset: 40px; background: radial-gradient(circle at 40% 35%, var(--lime-soft), var(--lime) 42%, #7f9f47); box-shadow: 0 0 60px rgba(201,255,99,.18); animation: breathe 4s .2s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(.87); opacity: .65; } }
.pause-orb b { position: relative; z-index: 2; color: var(--ink); font-size: 20px; line-height: .95; letter-spacing: -.05em; }
.story-view h4 { margin: 0; font-size: 27px; letter-spacing: -.055em; }
.story-view--pause > p { max-width: 260px; margin: 9px auto 0; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.4; }
.tiny-wave { height: 44px; margin: 15px 16px; overflow: hidden; }
.tiny-wave i { display: block; width: 130%; height: 75px; margin-left: -15%; border-top: 2px solid var(--lime); border-radius: 50%; transform: translateY(32px); }
.choice-bloom { position: relative; width: 210px; height: 210px; margin: 38px auto 26px; display: grid; place-items: center; }
.choice-bloom i { position: absolute; width: 86px; height: 130px; border-radius: 50%; background: linear-gradient(var(--lime), rgba(201,255,99,.15)); transform-origin: 50% 83%; }
.choice-bloom i:nth-child(1) { transform: translateY(-37px); }
.choice-bloom i:nth-child(2) { transform: rotate(90deg) translateY(-37px); }
.choice-bloom i:nth-child(3) { transform: rotate(180deg) translateY(-37px); }
.choice-bloom i:nth-child(4) { transform: rotate(270deg) translateY(-37px); }
.choice-bloom span { position: relative; z-index: 3; width: 74px; height: 74px; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; font-size: 30px; }
.story-view--choice { text-align: center; background: linear-gradient(180deg, rgba(201,255,99,.07), transparent); }
.story-view--choice h4 { margin-top: 8px; }
.story-view--choice > p { max-width: 280px; margin: 9px auto 0; color: rgba(255,255,255,.53); font-size: 10px; line-height: 1.45; }
.choice-stat { margin: 20px 8px 16px; padding: 13px 16px; display: grid; grid-template-columns: 1fr auto; align-items: center; text-align: left; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.04); }
.choice-stat span { color: rgba(255,255,255,.46); font-size: 8px; }
.choice-stat b { grid-row: span 2; color: var(--lime); font-size: 31px; }
.choice-stat small { font-size: 10px; }
.screen-primary--ink { color: var(--white); background: var(--ink); box-shadow: none; }
.story-caption { position: absolute; right: 4%; bottom: 0; left: 4%; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.42); font-family: ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: .14em; }
.story-caption i { height: 1px; flex: 1; background: rgba(255,255,255,.14); }
.story-caption b { color: var(--lime); }

.outcomes { padding: 150px var(--gutter) 160px; }
.outcomes-heading { max-width: var(--max); margin: 100px auto 90px; }
.outcomes-heading .display { max-width: 1140px; }
.outcome-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.outcome-card { min-height: 610px; padding: 24px; display: flex; flex-direction: column; border-radius: 34px; color: var(--ink); overflow: hidden; }
.outcome-card--lime { background: var(--lime); }
.outcome-card--violet { background: var(--violet-soft); }
.outcome-card--coral { background: var(--coral); }
.outcome-visual { position: relative; height: 310px; margin-bottom: auto; border: 1px solid rgba(9,9,11,.13); border-radius: 22px; overflow: hidden; }
.outcome-index { margin-top: 24px; font-family: ui-monospace, Menlo, monospace; font-size: 9px; font-weight: 700; letter-spacing: .15em; opacity: .5; }
.outcome-card h3 { margin: 16px 0 10px; font-size: clamp(34px, 3.2vw, 52px); line-height: .94; letter-spacing: -.06em; }
.outcome-card p { margin: 0; max-width: 390px; font-size: 15px; line-height: 1.5; opacity: .62; }
.focus-visual { display: grid; place-items: center; }
.focus-visual span { position: absolute; border: 1px solid rgba(9,9,11,.16); border-radius: 50%; animation: focusRings 5s ease-in-out infinite; }
.focus-visual span:nth-child(1) { width: 270px; height: 270px; }
.focus-visual span:nth-child(2) { width: 190px; height: 190px; animation-delay: .3s; }
.focus-visual span:nth-child(3) { width: 110px; height: 110px; animation-delay: .6s; }
@keyframes focusRings { 50% { transform: scale(.9); opacity: .5; } }
.focus-visual b { position: relative; z-index: 2; font-family: ui-monospace, Menlo, monospace; font-size: clamp(27px, 3vw, 44px); letter-spacing: -.07em; }
.room-visual { display: grid; place-items: center; background: radial-gradient(circle at center, rgba(255,255,255,.6), transparent 43%); }
.room-visual i { width: 126px; height: 190px; border-radius: 80px 80px 20px 20px; background: var(--ink); box-shadow: 0 0 0 18px rgba(9,9,11,.06), 0 0 0 42px rgba(9,9,11,.03); }
.room-visual span { position: absolute; bottom: 24px; padding: 8px 12px; color: var(--white); background: var(--ink); border-radius: 99px; font-family: ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: .14em; }
.sleep-visual { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, rgba(60,26,31,.15), transparent); }
.sleep-visual span { font-size: clamp(48px, 5vw, 78px); line-height: .9; font-weight: 610; letter-spacing: -.07em; }
.sleep-visual i { position: absolute; right: 20px; bottom: -58px; width: 170px; height: 280px; border: 7px solid var(--ink); border-radius: 38px; transform: rotate(18deg); }
.sleep-visual i::after { content: ""; position: absolute; inset: 8px; border-radius: 26px; background: var(--ink); opacity: .13; }
.sleep-visual small { font-family: ui-monospace, Menlo, monospace; font-size: 9px; letter-spacing: .15em; }
.outcome-statement { max-width: var(--max); margin: 150px auto 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; font-size: clamp(15px, 1.5vw, 21px); font-weight: 730; letter-spacing: -.02em; }
.outcome-statement i { height: 10px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: skewX(-45deg); }

.showcase { position: relative; height: 360vh; background: var(--ink); }
.showcase-sticky { position: sticky; top: 0; height: 100vh; padding: 100px 0 34px; overflow: hidden; }
.showcase-top { height: 90px; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: end; }
.showcase-top .overline { margin: 19px 0 0; }
.showcase-progress { width: min(360px, 28vw); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-family: ui-monospace, Menlo, monospace; font-size: 9px; }
.showcase-progress i { height: 1px; background: rgba(255,255,255,.15); }
.showcase-progress b { display: block; width: 100%; height: 100%; background: var(--lime); transform: scaleX(0); transform-origin: left; }
.showcase-track { height: calc(100vh - 224px); margin-top: 26px; padding: 0 var(--gutter); display: flex; gap: 24px; will-change: transform; }
.showcase-panel { flex: 0 0 min(84vw, 1280px); height: 100%; padding: clamp(34px, 4.5vw, 76px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .68fr); align-items: center; gap: 60px; border: 1px solid rgba(255,255,255,.1); border-radius: 42px; background: #15161a; overflow: hidden; }
.showcase-panel--cream { color: var(--ink); background: var(--paper); }
.showcase-panel--violet { color: var(--ink); background: var(--violet); }
.panel-copy { max-width: 670px; }
.panel-copy--dark { color: var(--ink); }
.panel-index { font-family: ui-monospace, Menlo, monospace; font-size: 9px; font-weight: 700; letter-spacing: .15em; opacity: .48; }
.panel-copy h2 { margin: 30px 0 24px; font-size: clamp(53px, 6.2vw, 96px); line-height: .87; font-weight: 590; letter-spacing: -.075em; }
.panel-copy h2 em { color: var(--lime); font-family: Iowan Old Style, Baskerville, "Times New Roman", serif; font-weight: 400; }
.panel-copy--dark h2 em { color: #6653f2; }
.showcase-panel--violet .panel-copy h2 em { color: var(--ink); }
.panel-copy > p { max-width: 570px; margin: 0; color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.52; }
.panel-copy--dark > p { color: rgba(9,9,11,.6); }
.panel-copy ul { margin: 34px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; font-size: 12px; font-weight: 620; }
.panel-copy li { display: flex; align-items: center; gap: 10px; }
.panel-copy li::before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 10px; }
.panel-copy--dark li::before { color: #fff; background: var(--ink); }
.panel-device { height: 100%; display: grid; place-items: center; perspective: 1400px; }
.device--gallery { --device-w: min(24vw, 330px); }
.device--gallery-a { transform: rotateY(-15deg) rotateZ(5deg); }
.device--gallery-b { transform: rotateY(13deg) rotateZ(-4deg); }
.device--gallery-c { transform: rotateY(-8deg) rotateZ(2deg); }
.gallery-pause, .gallery-home, .gallery-finish { padding: 0 13px 17px; }
.gallery-pause { background: radial-gradient(circle at 50% 29%, rgba(169,154,255,.2), transparent 34%), #101115; }
.gallery-pause > .mini-brand, .gallery-finish > .mini-brand { margin: 8px 8px 0; }
.gallery-app { margin: 28px 4px 0; display: grid; justify-items: center; gap: 10px; }
.gallery-app span { font-size: 11px; font-weight: 650; }
.gallery-wave { position: relative; margin: 25px 0 20px; padding: 14px 12px; border: 1px solid rgba(201,255,99,.16); border-radius: 20px; background: rgba(201,255,99,.04); }
.gallery-wave svg { width: 100%; }
.gallery-wave path { fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round; }
.gallery-wave circle { fill: var(--lime); filter: drop-shadow(0 0 8px var(--lime)); }
.gallery-wave b { position: absolute; top: 50%; left: 50%; font-family: ui-monospace, Menlo, monospace; font-size: 38px; letter-spacing: -.07em; transform: translate(-50%, -20%); }
.gallery-wave span { display: block; margin-top: 2px; color: rgba(255,255,255,.44); font-size: 9px; line-height: 1.35; text-align: center; }
.gallery-home { color: var(--ink); background: #eeeee8; }
.gallery-home .screen-status { color: var(--ink); }
.home-head { margin: 8px 5px 0; display: flex; justify-content: space-between; align-items: center; }
.home-head button { width: 31px; height: 31px; color: var(--ink); background: rgba(9,9,11,.06); border: 0; border-radius: 50%; font-size: 9px; }
.home-date { display: block; margin: 32px 6px 9px; color: rgba(9,9,11,.45); font-family: ui-monospace, Menlo, monospace; font-size: 7px; font-weight: 700; letter-spacing: .16em; }
.gallery-home h3 { margin: 0 6px; font-size: 29px; line-height: .95; letter-spacing: -.06em; }
.time-ring { position: relative; width: 185px; height: 185px; margin: 24px auto 19px; display: grid; place-items: center; }
.time-ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.time-ring circle { fill: none; stroke: rgba(9,9,11,.08); stroke-width: 10; }
.time-ring .time-ring-progress { stroke: #745ef7; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 112; }
.time-ring div { position: relative; display: grid; text-align: center; }
.time-ring b { font-size: 54px; line-height: .9; letter-spacing: -.08em; }
.time-ring span { margin-top: 5px; color: rgba(9,9,11,.5); font-size: 8px; }
.home-row { margin: 7px 4px 0; padding: 12px 13px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(9,9,11,.08); border-radius: 13px; background: rgba(255,255,255,.45); font-size: 9px; }
.home-row span { display: flex; align-items: center; gap: 8px; }
.home-row b { font-size: 14px; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot--lime { background: #83aa36; }
.dot--violet { background: #745ef7; }
.home-note { margin: 12px 4px 0; padding: 13px; color: #fff; background: var(--ink); border-radius: 16px; }
.home-note span { color: var(--lime); font-family: ui-monospace, Menlo, monospace; font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.home-note p { margin: 7px 0 0; font-size: 10px; }
.gallery-finish { text-align: center; background: linear-gradient(180deg, rgba(201,255,99,.1), transparent 47%), #101115; }
.open-loop { position: relative; width: 205px; height: 205px; margin: 28px auto 12px; display: grid; place-items: center; }
.open-loop svg { position: absolute; inset: 0; }
.open-loop path { fill: none; stroke: var(--lime); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(201,255,99,.25)); }
.open-loop span { width: 65px; height: 65px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 27px; }
.gallery-finish h3 { margin: 9px 0; font-size: 29px; line-height: .95; letter-spacing: -.055em; }
.gallery-finish > p { max-width: 250px; margin: 0 auto 22px; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.4; }

.pause-lab { padding: 150px var(--gutter); }
.pause-lab-grid { max-width: var(--max); margin: 110px auto 0; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .65fr); gap: 10vw; align-items: center; }
.pause-lab-copy .display { max-width: 900px; font-size: clamp(58px, 7vw, 108px); }
.pause-lab-copy > p:last-child { max-width: 590px; margin: 34px 0 0; color: var(--muted-dark); font-size: 18px; line-height: 1.55; }
.hold-card { position: relative; min-height: 620px; padding: 46px 24px 30px; display: grid; place-items: center; align-content: center; color: #fff; background: var(--ink); border-radius: 40px; overflow: hidden; }
.hold-rings { position: absolute; top: 50%; left: 50%; width: 520px; height: 520px; transform: translate(-50%,-50%); }
.hold-rings i { position: absolute; border: 1px solid rgba(201,255,99,.12); border-radius: 50%; transition: transform 4s linear, opacity .5s ease; }
.hold-rings i:nth-child(1) { inset: 0; }
.hold-rings i:nth-child(2) { inset: 65px; }
.hold-rings i:nth-child(3) { inset: 130px; }
.hold-card.is-holding .hold-rings i:nth-child(1) { transform: scale(.68); }
.hold-card.is-holding .hold-rings i:nth-child(2) { transform: scale(.76); }
.hold-card.is-holding .hold-rings i:nth-child(3) { transform: scale(.88); }
.hold-button { position: relative; z-index: 2; width: 230px; height: 230px; padding: 0; display: grid; place-items: center; color: var(--ink); background: transparent; border: 0; border-radius: 50%; cursor: pointer; user-select: none; -webkit-user-select: none; touch-action: none; }
.hold-button::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 80px rgba(201,255,99,.18); transition: transform 4s linear, background .4s ease; }
.hold-button svg { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.hold-button circle { fill: none; stroke: rgba(255,255,255,.13); stroke-width: 3; }
.hold-button #holdProgress { stroke: var(--white); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 641; stroke-dashoffset: 641; }
.hold-button span { position: relative; z-index: 4; display: grid; gap: 7px; pointer-events: none; }
.hold-button b { font-size: 45px; line-height: .9; letter-spacing: -.07em; }
.hold-button small { font-family: ui-monospace, Menlo, monospace; font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hold-card.is-holding .hold-button::before { transform: scale(.74); }
.hold-card.is-complete .hold-button::before { background: var(--violet); transform: scale(.82); }
.hold-card > p { position: relative; z-index: 3; margin: 36px 0 0; color: rgba(255,255,255,.45); font-size: 11px; }
.hold-reset { position: relative; z-index: 3; margin-top: 14px; padding: 8px 12px; display: none; color: var(--lime); background: transparent; border: 0; cursor: pointer; font-size: 11px; }
.hold-card.is-complete .hold-reset { display: block; }

.principles { padding: 150px var(--gutter); background: var(--ink); }
.principles-intro { max-width: var(--max); margin: 0 auto 110px; }
.principles-intro .overline { margin-top: 95px; }
.principles-intro .display { max-width: 1000px; }
.principle-list { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.principle { padding: 42px 0; display: grid; grid-template-columns: 80px minmax(280px, .9fr) minmax(280px, .65fr); gap: 50px; align-items: baseline; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--lime); font-family: ui-monospace, Menlo, monospace; font-size: 9px; letter-spacing: .15em; }
.principle h3 { margin: 0; font-size: clamp(35px, 4.2vw, 64px); line-height: .95; letter-spacing: -.055em; }
.principle p { margin: 0; color: rgba(255,255,255,.5); font-size: 16px; line-height: 1.5; }
.privacy-note { max-width: var(--max); margin: 80px auto 0; padding: 25px 28px; display: flex; align-items: center; gap: 20px; border: 1px solid rgba(201,255,99,.18); border-radius: 20px; background: rgba(201,255,99,.045); }
.privacy-note svg { width: 29px; height: 29px; flex: 0 0 auto; }
.privacy-note path, .privacy-note rect { fill: none; stroke: var(--lime); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; }
.privacy-note b { color: #fff; }

.early-access { position: relative; padding: 150px var(--gutter); overflow: hidden; }
.early-glow { position: absolute; top: -35%; left: 50%; width: 1050px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(169,154,255,.34), rgba(201,255,99,.13) 34%, transparent 68%); filter: blur(30px); transform: translateX(-50%); }
.early-card { position: relative; z-index: 2; max-width: 1380px; min-height: 700px; margin: 0 auto; padding: clamp(45px, 6vw, 95px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .55fr); gap: 9vw; color: #fff; background: var(--ink); border-radius: 48px; box-shadow: 0 50px 120px rgba(25,19,13,.18); overflow: hidden; }
.early-card::before { content: ""; position: absolute; right: -20%; bottom: -45%; width: 75%; aspect-ratio: 1; border: 1px solid rgba(201,255,99,.13); border-radius: 50%; }
.early-copy { align-self: center; }
.early-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; color: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 99px; font-family: ui-monospace, Menlo, monospace; font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.early-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.early-copy h2 { max-width: 850px; margin: 38px 0 25px; font-size: clamp(62px, 7.3vw, 112px); line-height: .86; font-weight: 600; letter-spacing: -.075em; }
.early-copy > p { max-width: 660px; margin: 0; color: rgba(255,255,255,.58); font-size: 17px; line-height: 1.55; }
.waitlist-form--final { margin-top: 36px; }
.early-aside { position: relative; z-index: 2; align-self: center; }
.early-aside > p { color: rgba(255,255,255,.4); font-family: ui-monospace, Menlo, monospace; font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.early-aside ul { margin: 25px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.early-aside li { padding: 19px 0; display: grid; grid-template-columns: 36px 1fr; gap: 10px; color: rgba(255,255,255,.64); border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.4; }
.early-aside li span { color: var(--lime); font-family: ui-monospace, Menlo, monospace; font-size: 8px; }
.early-loop { position: relative; width: 210px; height: 210px; margin: 45px auto 0; display: grid; place-items: center; }
.early-loop svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: slowRotate 18s linear infinite; }
@keyframes slowRotate { to { transform: rotate(360deg); } }
.early-loop path { fill: none; stroke: var(--lime); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.early-loop span { color: var(--lime); font-family: ui-monospace, Menlo, monospace; font-size: 9px; font-weight: 700; line-height: 1.45; letter-spacing: .15em; text-align: center; text-transform: uppercase; }

.faq { padding: 40px var(--gutter) 160px; display: grid; grid-template-columns: minmax(280px, .5fr) minmax(0, .8fr); gap: 10vw; }
.faq-heading { position: sticky; top: 150px; align-self: start; }
.faq-heading h2 { margin: 0; font-size: clamp(50px, 6vw, 90px); line-height: .9; letter-spacing: -.065em; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary { padding: 30px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; list-style: none; font-size: clamp(20px, 2vw, 29px); font-weight: 600; letter-spacing: -.035em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--line-dark); border-radius: 50%; }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--ink); transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq details p { max-width: 720px; margin: -7px 50px 30px 0; color: var(--muted-dark); font-size: 15px; line-height: 1.6; }

footer { padding: 75px var(--gutter) 45px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; border-top: 1px solid var(--line); }
.brand--footer { font-size: 30px; }
footer > p { margin: 0; color: rgba(255,255,255,.42); font-family: Iowan Old Style, Baskerville, "Times New Roman", serif; font-size: 17px; font-style: italic; }
footer > div { justify-self: end; display: flex; gap: 20px; color: rgba(255,255,255,.4); font-size: 10px; }
footer a:hover { color: var(--lime); }

.toast { position: fixed; z-index: 1500; right: 22px; bottom: 22px; width: min(calc(100% - 44px), 410px); padding: 15px; display: grid; grid-template-columns: 38px 1fr 26px; align-items: center; gap: 11px; color: var(--ink); background: var(--white); border: 1px solid rgba(9,9,11,.1); border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.28); transform: translateY(calc(100% + 50px)); opacity: 0; transition: transform .6s var(--ease-out), opacity .4s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast > span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--lime); border-radius: 50%; font-weight: 800; }
.toast div { display: grid; gap: 3px; }
.toast b { font-size: 13px; }
.toast small { color: var(--muted-dark); font-size: 9px; }
.toast button { width: 26px; height: 26px; padding: 0; color: var(--muted-dark); background: transparent; border: 0; cursor: pointer; font-size: 19px; }

.reveal, .reveal-up, .reveal-card { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform 1s var(--ease-out); }
.reveal-card { transform: translateY(55px) scale(.98); }
.reveal.in, .reveal-up.in, .reveal-card.in { opacity: 1; transform: translateY(0) scale(1); }
.hero .reveal-up { transition-delay: .55s; }
.hero .waitlist-form.reveal-up { transition-delay: .68s; }
.hero .text-link.reveal-up { transition-delay: .78s; }

@media (max-width: 1180px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr); }
  .hero h1 { font-size: clamp(58px, 7.2vw, 95px); }
  .feed-card { width: 160px; }
  .feed-card--one { left: -10%; }
  .feed-card--two, .feed-card--three { right: -12%; }
  .recognition-grid { grid-template-columns: 1fr .7fr; gap: 70px; }
  .outcome-card { min-height: 550px; }
  .outcome-visual { height: 265px; }
  .showcase-panel { grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr); }
}

@media (max-width: 900px) {
  .cursor { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-inner { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(58px, 12vw, 98px); }
  .hero-scene { width: min(100%, 680px); min-height: 650px; margin: 0 auto; }
  .device--hero { --device-w: min(54vw, 360px); }
  .orbit--one { width: 100vw; }
  .orbit--two { width: 78vw; }
  .hero-foot { display: none; }
  .recognition { padding-top: 110px; }
  .recognition-grid { margin-top: 80px; grid-template-columns: 1fr; }
  .recognition-sticky { position: static; }
  .moments { width: min(100%, 620px); margin-left: auto; }
  .recognition-close { margin-top: 120px; }
  .story-layout { grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr); gap: 40px; }
  .story-step { grid-template-columns: 34px 1fr; }
  .story-phone-wrap { min-height: 580px; }
  .device--story { --device-w: min(38vw, 320px); }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 520px; }
  .outcome-visual { height: 300px; }
  .showcase { height: auto; }
  .showcase-sticky { position: static; height: auto; padding: 110px var(--gutter); overflow: visible; }
  .showcase-top { height: auto; padding: 0; }
  .showcase-progress { display: none; }
  .showcase-track { height: auto; margin-top: 55px; padding: 0; display: grid; transform: none !important; }
  .showcase-panel { width: 100%; height: auto; min-height: 760px; padding: 55px 40px; grid-template-columns: minmax(0, 1fr) minmax(270px, .65fr); }
  .device--gallery { --device-w: min(36vw, 300px); }
  .panel-copy h2 { font-size: clamp(55px, 8vw, 82px); }
  .pause-lab-grid { grid-template-columns: 1fr; }
  .hold-card { width: min(100%, 610px); margin: 0 auto; }
  .principle { grid-template-columns: 45px 1fr; gap: 20px; }
  .principle p { grid-column: 2; }
  .early-card { grid-template-columns: 1fr; }
  .early-aside { display: grid; grid-template-columns: 1fr 230px; gap: 45px; align-items: center; }
  .early-aside > p { grid-column: 1; }
  .early-aside ul { grid-column: 1; }
  .early-loop { grid-column: 2; grid-row: 1 / 3; }
  .faq { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { display: none; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }
  .nav { top: 10px; width: calc(100% - 20px); height: 60px; padding-left: 14px; border-radius: 18px; }
  .nav.is-hidden { transform: translateX(-50%); }
  .button--small { min-height: 42px; padding: 0 10px 0 15px; }
  .button--small i { width: 24px; height: 24px; }
  .brand { font-size: 18px; }
  .brand svg { width: 23px; height: 23px; }
  .hero { padding-top: 118px; padding-bottom: 70px; }
  .eyebrow { margin-bottom: 24px; font-size: 8px; }
  .hero h1 { font-size: clamp(48px, 15.2vw, 74px); line-height: .86; }
  .hero-intro { margin-top: 20px; font-size: 17px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form input, .waitlist-form button { height: 57px; min-height: 57px; }
  .form-note, .form-error { grid-column: 1; margin-left: 17px; }
  .hero-scene { height: 570px; min-height: 570px; }
  .device--hero { --device-w: min(72vw, 320px); left: 53%; }
  .feed-card { width: 144px; padding: 9px; }
  .feed-card--one { top: 17%; left: -8%; }
  .feed-card--two { top: 26%; right: -10%; }
  .feed-card--three { right: -10%; bottom: 14%; }
  .choice-chip { left: -3%; bottom: 10%; }
  .signal-strip { padding: 12px 0; }
  .signal-track span { font-size: 10px; }
  .recognition { padding: 100px var(--gutter) 115px; }
  .recognition-grid { margin-top: 70px; gap: 55px; }
  .display, .recognition-sticky .display { font-size: clamp(50px, 14vw, 76px); }
  .recognition-lede { font-size: 21px; }
  .moments { gap: 14px; }
  .moment-card { min-height: 235px; padding: 22px; border-radius: 25px; }
  .moment-card:nth-child(2) { margin-left: 0; }
  .moment-card p { margin-top: 46px; font-size: 31px; }
  .moment-card--accent p { font-size: 27px; }
  .recognition-close { margin-top: 95px; font-size: 39px; }
  .story { padding: 100px var(--gutter) 110px; }
  .story-heading { margin-bottom: 70px; }
  .story-heading .overline { margin-top: 70px; }
  .story-layout { display: flex; flex-direction: column; gap: 20px; }
  .story-phone-wrap { position: sticky; z-index: 5; top: 112px; order: -1; width: 180px; height: 430px; min-height: 430px; margin: 0 -10px -430px auto; background: radial-gradient(circle at center, rgba(169,154,255,.14), transparent 64%); }
  .device--story { --device-w: 175px; }
  .story-caption { bottom: 7px; }
  .story-phone-wrap .story-caption { right: 18px; left: -10px; }
  .story-steps { position: relative; z-index: 4; width: 100%; margin: 0; padding: 0 0 10vh; pointer-events: none; }
  .story-step { position: relative; min-height: 96vh; padding: 150px 160px 150px 0; grid-template-columns: 22px 1fr; gap: 10px; align-content: center; background: linear-gradient(90deg, rgba(9,9,11,.98) 0 51%, rgba(9,9,11,.66) 69%, transparent 88%); }
  .story-step h3 { font-size: 34px; }
  .story-step p { margin-top: 16px; font-size: 14px; line-height: 1.45; }
  .story-view { padding: 5px 10px 12px; }
  .post-one { height: 215px; }
  .post-two { height: 85px; }
  .pause-orb { width: 105px; margin: 6px auto 8px; }
  .pause-orb::after { inset: 10px; }
  .pause-orb span { inset: 21px; }
  .pause-orb b { font-size: 14px; }
  .story-view h4 { font-size: 18px; }
  .story-view--pause > p { font-size: 7.5px; }
  .tiny-wave { height: 25px; margin: 5px 8px; }
  .tiny-wave i { height: 50px; transform: translateY(22px); }
  .story-view .screen-primary, .story-view .screen-secondary { width: calc(100% - 10px); min-height: 31px; margin: 6px 5px 0; font-size: 8px; }
  .story-view .screen-secondary { min-height: 27px; margin-top: 4px; }
  .choice-bloom { width: 100px; height: 100px; margin: 6px auto 10px; }
  .choice-bloom i { width: 41px; height: 62px; }
  .choice-bloom i:nth-child(1) { transform: translateY(-18px); }
  .choice-bloom i:nth-child(2) { transform: rotate(90deg) translateY(-18px); }
  .choice-bloom i:nth-child(3) { transform: rotate(180deg) translateY(-18px); }
  .choice-bloom i:nth-child(4) { transform: rotate(270deg) translateY(-18px); }
  .choice-bloom span { width: 42px; height: 42px; font-size: 18px; }
  .story-view--choice > p { font-size: 7.5px; }
  .choice-stat { margin: 8px 3px 6px; padding: 8px 9px; }
  .choice-stat b { font-size: 23px; }
  .outcomes { padding: 100px var(--gutter) 110px; }
  .outcomes-heading { margin: 75px auto 60px; }
  .outcome-card { min-height: 500px; padding: 18px; border-radius: 28px; }
  .outcome-visual { height: 260px; }
  .outcome-card h3 { font-size: 41px; }
  .outcome-statement { margin-top: 90px; grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .outcome-statement i { width: 100%; }
  .showcase-sticky { padding: 100px var(--gutter); }
  .showcase-panel { min-height: 880px; padding: 35px 24px; grid-template-columns: 1fr; gap: 35px; border-radius: 30px; }
  .panel-copy h2 { margin: 22px 0 18px; font-size: 55px; }
  .panel-copy > p { font-size: 15px; }
  .panel-device { height: 470px; }
  .device--gallery { --device-w: 235px; }
  .pause-lab { padding: 100px var(--gutter); }
  .pause-lab-grid { margin-top: 75px; gap: 60px; }
  .pause-lab-copy .display { font-size: 51px; }
  .hold-card { min-height: 520px; border-radius: 30px; }
  .hold-rings { width: 430px; height: 430px; }
  .hold-button { width: 210px; height: 210px; }
  .principles { padding: 100px var(--gutter); }
  .principles-intro { margin-bottom: 70px; }
  .principles-intro .overline { margin-top: 70px; }
  .principle { padding: 32px 0; grid-template-columns: 30px 1fr; }
  .principle h3 { font-size: 37px; }
  .privacy-note { align-items: flex-start; }
  .early-access { padding: 80px 12px; }
  .early-card { min-height: auto; padding: 42px 22px; border-radius: 34px; }
  .early-copy h2 { margin-top: 30px; font-size: 58px; }
  .early-copy > p { font-size: 15px; }
  .early-aside { display: block; margin-top: 25px; }
  .early-loop { width: 180px; height: 180px; }
  .faq { padding: 40px var(--gutter) 110px; gap: 65px; }
  .faq-heading h2 { font-size: 53px; }
  .faq summary { padding: 25px 0; font-size: 21px; }
  footer { padding: 55px var(--gutter) 35px; grid-template-columns: 1fr; }
  footer > div { justify-self: start; flex-wrap: wrap; }
  .toast { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal, .reveal-up, .reveal-card { opacity: 1; transform: none; }
  .hero-line > span { transform: none; }
  .showcase { height: auto; }
  .showcase-sticky { position: static; height: auto; overflow: visible; }
  .showcase-track { height: auto; display: grid; transform: none !important; }
  .showcase-panel { width: 100%; min-height: 720px; }
}

/* ============================================================
   VERSION 2 · PRODUCT-TRUE SURFACES
   All screens below are real simulator captures from the SwiftUI app.
   ============================================================ */
.version-tag {
  margin-left: -3px;
  padding: 4px 6px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 7px;
  line-height: 1;
  letter-spacing: .08em;
}
.hero-intro b { color: rgba(255,255,255,.92); font-weight: 700; }

.product-terms { position: absolute; z-index: 7; inset: 0; pointer-events: none; }
.product-term {
  position: absolute;
  padding: 9px 13px;
  color: var(--lime);
  background: rgba(9,9,11,.72);
  border: 1px solid rgba(201,255,99,.26);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  transition: translate .25s ease-out;
}
.product-term::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 8px; background: currentColor; border-radius: 50%; box-shadow: 0 0 10px currentColor; vertical-align: 1px; }
.product-term--one { top: 23%; left: 1%; color: var(--coral); transform: rotate(-8deg); }
.product-term--two { top: 36%; right: -3%; transform: rotate(6deg); }
.product-term--three { right: 1%; bottom: 18%; color: var(--violet-soft); transform: rotate(-4deg); }

.product-screen { padding: 0; background: #f2f0e8; }
.product-screen > img,
.story-view--shot > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.product-screen--hero > img { filter: saturate(1.04) contrast(1.01); }
.story-view--shot {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  background: var(--paper);
}
.device--story[data-screen="reflex"] .story-view--reflex,
.device--story[data-screen="pause"] .story-view--pause,
.device--story[data-screen="choice"] .story-view--choice { transform: translateY(0) scale(1); }

.product-crop { margin: 0 0 auto; background: #eeeadd; }
.product-crop img { display: block; width: 100%; height: auto; }
.product-crop--pause img { transform: translateY(-20%); }
.product-crop--lab img { transform: translateY(-4%); }
.product-crop--looplings img { transform: translateY(-5%); }

.product-crop-stage { position: relative; perspective: 1400px; }
.product-crop-stack { position: relative; width: min(32vw, 450px); height: 86%; min-height: 520px; transform-style: preserve-3d; }
.product-detail-crop {
  position: absolute;
  width: 100%;
  height: 44%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(9,9,11,.14);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(20,17,10,.18);
}
.product-detail-crop img { display: block; width: 100%; height: auto; }
.product-detail-crop--lab-head { top: 3%; left: -5%; transform: rotateY(9deg) rotateZ(-3deg); }
.product-detail-crop--lab-head img { transform: translateY(-3%); }
.product-detail-crop--lab-loop { right: -7%; bottom: 4%; transform: rotateY(-9deg) rotateZ(3deg); }
.product-detail-crop--lab-loop img { transform: translateY(-17%); }
.product-crop-stack > span {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 0;
  padding: 8px 11px;
  color: var(--lime);
  background: var(--ink);
  border-radius: 99px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
}

.real-screen-card {
  position: relative;
  width: min(100%, 365px);
  aspect-ratio: 1206 / 2622;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
  border: 8px solid #17181c;
  border-radius: 48px;
  box-shadow: 0 42px 90px rgba(20,17,10,.22), inset 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(2.5deg);
}
.real-screen-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.real-screen-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  background: rgba(9,9,11,.82);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
}
.real-screen-card figcaption span { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 8px var(--lime); }

@media (max-width: 900px) {
  .product-crop-stack { width: min(42vw, 360px); min-height: 470px; }
  .real-screen-card { width: min(100%, 330px); }
}

@media (max-width: 680px) {
  .version-tag { font-size: 6px; }
  .product-term { padding: 7px 9px; font-size: 6px; }
  .product-term--one { top: 18%; left: -3%; }
  .product-term--two { top: 35%; right: -2%; }
  .product-term--three { right: -3%; bottom: 16%; }
  .story-view--shot { inset: 0; padding: 0; }
  .product-crop--pause img { transform: translateY(-16%); }
  .product-crop-stack { width: 280px; height: 430px; min-height: 430px; }
  .product-detail-crop { height: 45%; border-radius: 22px; }
  .real-screen-card { width: min(90%, 300px); border-width: 6px; border-radius: 38px; transform: rotate(1.5deg); }
}

/* ============================================================
   VERSION 2 · LIVE PRODUCT HTML
   Screen imagery is rendered from the app-design source as
   isolated, animated web components. No screenshot crops.
   ============================================================ */
unloop-screen,
unloop-loopling { display: block; }

.device-screen > unloop-screen,
.story-view > unloop-screen,
.outcome-visual > unloop-screen,
.product-detail-crop > unloop-screen,
.real-screen-card > unloop-screen { width: 100%; height: 100%; }

.product-screen,
.story-view--shot { background: #f5f2e7; }

.story-view--shot { overflow: hidden; }

.loop-journey {
  position: relative;
  padding: 150px var(--gutter) 120px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 16%, rgba(255,86,54,.1), transparent 29%),
    radial-gradient(circle at 85% 80%, rgba(201,242,58,.08), transparent 31%),
    var(--ink);
  overflow: clip;
}
.loop-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}
.loop-journey-heading {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.loop-journey-heading .overline { margin-top: 95px; }
.loop-journey-heading .display { max-width: 1000px; }
.loop-journey-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.53);
  font-size: 17px;
  line-height: 1.6;
}
.loop-journey-layout {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: minmax(380px, .84fr) minmax(0, .72fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}
.loop-journey-stage {
  position: sticky;
  top: 12vh;
  height: 76vh;
  min-height: 610px;
  perspective: 1400px;
}
.loop-journey-stage > unloop-loopling {
  width: 100%;
  height: calc(100% - 34px);
  transform: perspective(1400px) rotateY(5deg);
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.3));
  transition: transform .9s var(--ease-out);
}
.loop-journey[data-loop-state="begging"] .loop-journey-stage > unloop-loopling { transform: perspective(1400px) rotateY(-5deg) scale(1.015); }
.loop-journey[data-loop-state="fading"] .loop-journey-stage > unloop-loopling { transform: perspective(1400px) rotateY(3deg) scale(.985); }
.loop-journey[data-loop-state="dormant"] .loop-journey-stage > unloop-loopling { transform: perspective(1400px) rotateY(0) scale(.96); }
.loop-journey[data-loop-state="graduated"] .loop-journey-stage > unloop-loopling { transform: perspective(1400px) rotateY(-3deg) scale(.98); }
.loop-journey-caption {
  position: absolute;
  right: 6px;
  bottom: 0;
  left: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.46);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .15em;
}
.loop-journey-caption i { height: 1px; background: rgba(255,255,255,.16); }
.loop-journey-caption b { color: var(--lime); font-size: 8px; }
.loopling-mobile-state { display: none; }
.loop-journey-steps { border-top: 1px solid var(--line); }
.loop-journey-step {
  min-height: 68vh;
  padding: 16vh 0 12vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  opacity: .25;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .8s var(--ease-out);
}
.loop-journey-step.is-active { opacity: 1; transform: none; }
.loop-journey-step--interlude { min-height: 52vh; }
.loop-journey-step.loop-journey-step--interlude > span { color: var(--coral); }
.loop-journey-step > span {
  color: var(--lime);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}
.loop-journey-step h3 {
  max-width: 570px;
  margin: 24px 0 18px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .92;
  letter-spacing: -.06em;
}
.loop-journey-step p {
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 16px;
  line-height: 1.55;
}

.product-crop { background: #f5f2e7; }
.product-crop > unloop-screen { border-radius: inherit; }
.product-crop-stack {
  width: min(29vw, 390px);
  min-height: 650px;
}
.product-detail-crop {
  height: auto;
  aspect-ratio: 390 / 310;
  background: #f5f2e7;
}
.product-detail-crop--lab-head { top: 4%; }
.product-detail-crop--lab-loop {
  bottom: 5%;
  aspect-ratio: 390 / 275;
}
.real-screen-card { background: #f5f2e7; }
.real-screen-card figcaption { z-index: 4; }

@media (max-width: 900px) {
  .loop-journey { padding-top: 110px; }
  .loop-journey-layout { grid-template-columns: minmax(330px,.8fr) 1fr; gap: 45px; }
  .loop-journey-stage { min-height: 560px; }
  .loop-journey-step h3 { font-size: 52px; }
  .product-crop-stack { width: min(39vw, 360px); min-height: 610px; }
}

@media (max-width: 680px) {
  .loop-journey { padding: 100px var(--gutter) 85px; }
  .loop-journey-heading .overline { margin-top: 68px; }
  .loop-journey-lede { font-size: 14px; }
  .loop-journey-layout { margin-top: 65px; display: block; }
  .loop-journey-stage { display: none; }
  .loop-journey-step { min-height: auto; padding: 70px 0; justify-content: flex-start; opacity: 1; transform: none; background: none; }
  .loopling-mobile-state { width: 100%; height: 360px; margin: 22px 0 30px; display: block; }
  .loop-journey-step h3 { margin-top: 18px; font-size: 44px; }
  .loop-journey-step p { font-size: 14px; }
  .product-crop-stack { width: min(100%, 300px); min-height: 535px; }
  .product-detail-crop { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .loop-journey-step { min-height: auto; padding: 70px 0; opacity: 1; transform: none; }
  .loop-journey-stage { position: sticky; }
}
