/* Everlapse prelaunch — forest Liquid Glass, matched to the app's DSColor
   tokens (BgCanvas #0d2619→#0a1a33, BrandForest #3de2a0, AccentGold #e0b255,
   aurora green/blue). No frameworks, no webfonts: the system stack IS the
   brand (SF on Apple). */

:root {
  --bg: #0d2619;
  --bg2: #0a1a33;
  --ink: #eaf3ec;
  --ink2: #9db4a4;
  --ink3: #6d8274;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(10, 12, 16, 0.12);
  --mint1: #6be8b4;
  --mint2: #3de2a0;
  --mint3: #1fc27e;
  --gold: #e0b255;
  --grad: linear-gradient(100deg, var(--mint1), var(--mint2) 48%, var(--mint3));
  --r-lg: 28px;
  --r-md: 20px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg2); }

body {
  background: linear-gradient(180deg, var(--bg) 0%, #0b2126 45%, var(--bg2) 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(61, 226, 160, 0.35); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

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

a { color: inherit; }

/* ── Backdrop: aurora blobs + starfield ─────────────────────────── */

.aurora {
  position: fixed; inset: -20vh -20vw; z-index: -2; pointer-events: none;
  filter: blur(90px) saturate(120%);
  opacity: 0.5;
}
.aurora-blob { position: absolute; border-radius: 50%; }
.aurora-a {
  width: 55vw; height: 55vw; left: -12vw; top: -8vh;
  background: radial-gradient(circle, rgba(33, 201, 131, 0.32), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora-b {
  width: 48vw; height: 48vw; right: -10vw; top: 22vh;
  background: radial-gradient(circle, rgba(46, 114, 255, 0.3), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.aurora-c {
  width: 42vw; height: 42vw; left: 22vw; bottom: -18vh;
  background: radial-gradient(circle, rgba(224, 178, 85, 0.16), transparent 65%);
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(9vw, 12vh) scale(1.12); } }
@keyframes drift-b { to { transform: translate(-8vw, -8vh) scale(0.92); } }
@keyframes drift-c { to { transform: translate(6vw, -10vh) scale(1.08); } }

#stars {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.8;
}

/* ── Nav ─────────────────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 40px);
  padding-top: env(safe-area-inset-top);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 22, 17, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; letter-spacing: -0.02em;
  font-size: 19px;
}
.brand-mark { width: 26px; height: 26px; }
.brand-name {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang { display: flex; gap: 2px; padding: 3px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(150%); backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.lang button {
  font: inherit; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink3); background: none; border: 0; cursor: pointer;
  padding: 5px 10px; border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.lang button:hover { color: var(--ink2); }
.lang button.active { color: var(--ink); background: rgba(255, 255, 255, 0.1); }

/* ── Buttons / forms ─────────────────────────────────────────────── */

.btn {
  font: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  color: #08130c;
  background: var(--grad);
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 14px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.25s;
  box-shadow: 0 6px 24px -8px rgba(61, 226, 160, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(8, 19, 12, 0.25);
  white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -8px rgba(61, 226, 160, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(8, 19, 12, 0.25); filter: brightness(1.05); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn[disabled] { opacity: 0.6; pointer-events: none; }
.btn-nav { padding: 9px 18px; font-size: 14px; }

.capture {
  display: flex; gap: 10px; align-items: stretch;
  max-width: 460px; margin: 28px auto 0;
  padding: 6px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(150%); backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.capture:focus-within {
  border-color: rgba(61, 226, 160, 0.55);
  box-shadow: 0 0 0 4px rgba(61, 226, 160, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.capture input[type="email"] {
  flex: 1; min-width: 0; font: inherit; font-size: 16px;
  background: none; border: 0; outline: none; color: var(--ink);
  padding: 10px 12px 10px 20px;
}
.capture input::placeholder { color: var(--ink3); }
.capture .btn { padding: 12px 22px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.capture.err { border-color: rgba(255, 96, 84, 0.65); animation: shake 0.4s; }
@keyframes shake {
  20% { transform: translateX(-6px); } 40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); } 80% { transform: translateX(3px); }
}

.form-note { margin-top: 12px; font-size: 14px; }
.form-note.bad { color: #ff8d80; }

.success {
  max-width: 460px; margin: 28px auto 0; padding: 22px 28px;
  border-radius: var(--r-md);
  background: rgba(70, 190, 120, 0.08);
  border: 1px solid rgba(96, 220, 150, 0.3);
  display: flex; align-items: center; gap: 16px; text-align: left;
}
.success svg { width: 34px; height: 34px; flex: none; }
.success svg circle { stroke: #62d99a; stroke-width: 2; fill: none;
  stroke-dasharray: 88; stroke-dashoffset: 88; animation: draw 0.7s var(--ease) forwards; }
.success svg path { stroke: #62d99a; stroke-width: 2.4; fill: none; stroke-linecap: round;
  stroke-dasharray: 26; stroke-dashoffset: 26; animation: draw 0.5s 0.35s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success strong { display: block; font-size: 17px; letter-spacing: -0.01em; }
.success span { color: var(--ink2); font-size: 14.5px; }

.micro { font-size: 13.5px; color: var(--ink3); margin-top: 14px; }

/* ── Hero ────────────────────────────────────────────────────────── */

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 8vh) 20px 12vh;
}
.hero-inner { max-width: 900px; position: relative; z-index: 2; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint2);
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(61, 226, 160, 0.3);
  background: rgba(61, 226, 160, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(42px, 9vw, 92px);
  line-height: 1.02; font-weight: 800; letter-spacing: -0.035em;
}
/* Gradient must live on the same box as the text: a parent's
   background-clip:text never paints inline-block word spans, so both the
   plain (reduced-motion) title and each split word carry it themselves. */
.hero-title, .hero-title .w {
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.62));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-title .w {
  display: inline-block; opacity: 0; transform: translateY(0.55em) rotate(2deg);
  animation: word-in 0.9s var(--ease) forwards;
  animation-delay: calc(var(--i) * 70ms + 150ms);
}
@keyframes word-in { to { opacity: 1; transform: none; } }

.hero-sub {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--ink2); max-width: 640px; margin: 26px auto 0;
}

.scroll-cue {
  position: absolute; bottom: max(26px, env(safe-area-inset-bottom)); left: 50%;
  width: 26px; height: 42px; margin-left: -13px;
  border: 1.5px solid rgba(255, 255, 255, 0.25); border-radius: 999px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 4px; background: var(--mint2);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 50% { transform: translateY(14px); opacity: 0.2; } }

/* floating polaroids (desktop only) */
.hero-cards { position: absolute; inset: 0; pointer-events: none; z-index: 1; display: none; }
@media (min-width: 1100px) { .hero-cards { display: block; } }
.hcard {
  position: absolute; width: 130px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.65);
  opacity: 0; transition: opacity 1.2s var(--ease);
  will-change: transform;
}
.hcard.in { opacity: 0.85; }
.hcard svg { width: 100%; height: auto; }
.hcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), transparent 42%);
}

/* ── Marquee ─────────────────────────────────────────────────────── */

.marquee {
  overflow: hidden; padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marquee 36s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
  font-size: 14.5px; font-weight: 600; color: var(--ink2); white-space: nowrap;
  padding: 9px 18px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.chip b { color: var(--gold); font-weight: 600; margin-right: 8px; }

/* ── Alignment demo ──────────────────────────────────────────────── */

.align { height: 300svh; position: relative; }
.align-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; padding: calc(var(--nav-h) + 10px) 16px 30px;
}

.align-stage {
  position: relative;
  width: min(74vw, 46svh, 420px);
  aspect-ratio: 3 / 4;
}

.acard {
  position: absolute; inset: 0; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  will-change: transform, opacity;
}
.acard svg { width: 100%; height: 100%; }
.acard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,0.12), transparent 38%);
}
.acard .eyes { opacity: 0; transition: opacity 0.3s; }
.acard.eyes-on .eyes { opacity: 1; }

.crosshair {
  position: absolute; inset: -6%; width: 112%; height: 112%;
  max-width: none; /* the global svg reset would clamp width to 100% and shift the eye marks */
  pointer-events: none; opacity: 0; z-index: 20;
}
.crosshair line { stroke: rgba(61, 226, 160, 0.55); stroke-width: 0.45; stroke-dasharray: 2 2.4; }
.crosshair circle { fill: none; stroke: var(--mint2); stroke-width: 0.7; }

.film-progress {
  position: absolute; left: 8%; right: 8%; bottom: -26px; height: 3px; z-index: 20;
  border-radius: 3px; background: rgba(255, 255, 255, 0.12); opacity: 0;
  transition: opacity 0.3s;
}
.film-progress i {
  display: block; height: 100%; width: 0%; border-radius: 3px;
  background: var(--grad);
}

.align-captions {
  position: relative; height: 84px; width: min(92vw, 560px); text-align: center;
}
.cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  font-size: clamp(18px, 2.6vw, 24px); font-weight: 650; letter-spacing: -0.02em;
  line-height: 1.35; color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.cap.on { opacity: 1; transform: none; }

/* ── Sections shared ─────────────────────────────────────────────── */

section { position: relative; }

.section-title {
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  text-align: center;
}
.section-sub {
  text-align: center; color: var(--ink2);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px; margin: 16px auto 0;
}

/* ── Features bento ──────────────────────────────────────────────── */

.features { padding: 15vh 20px; max-width: 1120px; margin: 0 auto; }

.bento {
  display: grid; gap: 18px; margin-top: 54px;
  grid-template-columns: repeat(6, 1fr);
}
.card {
  grid-column: span 2;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, rgba(255,255,255,0.055), rgba(10,12,16,0.14));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 50px -24px rgba(0, 0, 0, 0.5);
  padding: 26px 26px 30px;
  overflow: hidden; position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(107, 232, 180, 0.3); }
.card-w { grid-column: span 4; }
.card h3 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 8px; }
.card p { color: var(--ink2); font-size: 15.5px; }

.card-art {
  height: 120px; margin: 4px 0 22px; position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* eye-lock art */
.art-lock .lock-frames { position: relative; width: 96px; height: 116px; }
.art-lock .lock-frames i {
  position: absolute; inset: 0; border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}
.art-lock .lock-frames i:nth-child(1) { animation: fr1 4s var(--ease) infinite; }
.art-lock .lock-frames i:nth-child(2) { animation: fr2 4s var(--ease) infinite; }
.art-lock .lock-frames i:nth-child(3) { animation: fr3 4s var(--ease) infinite; }
@keyframes fr1 { 0%, 15% { transform: translate(-16px, 8px) rotate(-7deg); } 45%, 100% { transform: none; } }
@keyframes fr2 { 0%, 15% { transform: translate(14px, -6px) rotate(5deg); } 50%, 100% { transform: none; } }
@keyframes fr3 { 0%, 15% { transform: translate(4px, 12px) rotate(3deg); } 55%, 100% { transform: none; } }
.art-lock .lock-ring {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  border: 1px dashed rgba(61, 226, 160, 0.45);
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse { 0%, 15% { opacity: 0; transform: scale(1.25); } 60%, 85% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.art-lock .lock-eyes { position: absolute; display: flex; gap: 22px; }
.art-lock .lock-eyes b {
  width: 9px; height: 9px; border-radius: 50%; background: var(--mint2);
  box-shadow: 0 0 14px rgba(61, 226, 160, 0.8);
  animation: eye-glow 4s ease-in-out infinite;
}
@keyframes eye-glow { 0%, 20% { opacity: 0.25; } 60%, 90% { opacity: 1; } }

/* morph art */
.art-morph i {
  position: absolute; width: 74px; height: 96px; border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.art-morph i:first-child {
  background: linear-gradient(160deg, rgba(61, 226, 160, 0.22), transparent);
  animation: morph-a 5s ease-in-out infinite alternate;
}
.art-morph i:last-child {
  background: linear-gradient(160deg, rgba(46, 114, 255, 0.24), transparent);
  animation: morph-b 5s ease-in-out infinite alternate;
}
@keyframes morph-a { from { transform: translateX(-20px) rotate(-5deg); opacity: 0.9; } to { transform: translateX(0) rotate(0); opacity: 0.35; } }
@keyframes morph-b { from { transform: translateX(20px) rotate(5deg); opacity: 0.35; } to { transform: translateX(0) rotate(0); opacity: 0.9; } }

/* music art */
.art-music { gap: 7px; }
.art-music i {
  width: 8px; border-radius: 5px; background: var(--grad);
  animation: eq 1.3s ease-in-out infinite;
}
.art-music i:nth-child(1) { height: 36px; animation-delay: 0s; }
.art-music i:nth-child(2) { height: 58px; animation-delay: 0.15s; }
.art-music i:nth-child(3) { height: 78px; animation-delay: 0.3s; }
.art-music i:nth-child(4) { height: 52px; animation-delay: 0.45s; }
.art-music i:nth-child(5) { height: 30px; animation-delay: 0.6s; }
@keyframes eq { 50% { transform: scaleY(0.45); } }

/* ghost guide art */
.art-ghost .ghost-oval {
  width: 78px; height: 102px; border-radius: 50%;
  border: 2px dashed rgba(61, 226, 160, 0.55);
}
.art-ghost .ghost-face {
  position: absolute; width: 62px; height: 84px; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 42%, rgba(255, 235, 210, 0.3), transparent 72%);
  animation: ghost-b 3.6s ease-in-out infinite;
}
@keyframes ghost-b { 50% { opacity: 0.35; transform: translate(4px, -3px) scale(0.97); } }
.art-ghost .ghost-chip {
  position: absolute; right: 12%; top: 6%;
  font-size: 12px; font-weight: 700; color: var(--gold);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(224, 178, 85, 0.12); border: 1px solid rgba(224, 178, 85, 0.32);
}

/* capsule art */
.art-capsule { gap: 16px; }
.cap-stack { position: relative; width: 58px; height: 74px; }
.cap-stack i {
  position: absolute; inset: 0; border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.04);
}
.cap-stack i:nth-child(1) { transform: rotate(-8deg); }
.cap-stack i:nth-child(2) { transform: rotate(5deg); }
.cap-arrow { color: var(--ember2); font-size: 20px; font-weight: 700; }
.cap-strip { display: flex; gap: 4px; padding: 6px; border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25); }
.cap-strip i {
  width: 16px; height: 48px; border-radius: 4px;
  background: linear-gradient(180deg, rgba(61, 226, 160, 0.42), rgba(31, 194, 126, 0.2));
  animation: strip 2.6s ease-in-out infinite;
}
.cap-strip i:nth-child(2) { animation-delay: 0.2s; }
.cap-strip i:nth-child(3) { animation-delay: 0.4s; }
.cap-strip i:nth-child(4) { animation-delay: 0.6s; }
@keyframes strip { 50% { opacity: 0.4; } }

/* ── Demo film phone ─────────────────────────────────────────────── */

.film { padding: 14vh 20px 16vh; text-align: center; }

.phone-wrap { position: relative; width: min(320px, 78vw); margin: 60px auto 0; }
.phone {
  position: relative; border-radius: 48px; padding: 12px;
  background: linear-gradient(170deg, #2a2d35, #14161c);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.phone-island {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; border-radius: 999px; background: #000; z-index: 3;
}
.phone-screen {
  position: relative; border-radius: 38px; overflow: hidden;
  aspect-ratio: 9 / 19.5; background: #0b0d13;
}
.phone-screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.phone-poster {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
}
.poster-film { position: relative; width: 58%; aspect-ratio: 3 / 4; }
.poster-film .pf {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14); opacity: 0;
  animation: pf-cycle 6s linear infinite;
}
.poster-film .pf svg { width: 100%; height: 100%; }
.poster-film .pf:nth-child(1) { animation-delay: 0s; }
.poster-film .pf:nth-child(2) { animation-delay: 2s; }
.poster-film .pf:nth-child(3) { animation-delay: 4s; }
@keyframes pf-cycle {
  0% { opacity: 0; } 8% { opacity: 1; } 33.3% { opacity: 1; }
  41% { opacity: 0; } 100% { opacity: 0; }
}
.poster-label { text-align: center; }
.poster-label strong { display: block; font-size: 17px; letter-spacing: -0.01em; }
.poster-label span { font-size: 13.5px; color: var(--ink3); }

.phone-glow {
  position: absolute; inset: 8% -14%; z-index: 0; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(61, 226, 160, 0.2), transparent 65%);
  filter: blur(30px);
}

/* ── Privacy ─────────────────────────────────────────────────────── */

.privacy {
  padding: 16vh 20px; text-align: center;
  max-width: 900px; margin: 0 auto;
}
.privacy-quote {
  font-size: clamp(30px, 5.6vw, 58px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.privacy-line { margin-top: 22px; color: var(--ink2); font-size: clamp(16px, 2vw, 19px); }
.privacy-tags { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.privacy-tags span {
  font-size: 14px; font-weight: 600; color: var(--ink2);
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--glass);
  -webkit-backdrop-filter: blur(14px) saturate(150%); backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* ── Waitlist ────────────────────────────────────────────────────── */

.waitlist { padding: 6vh 20px 18vh; }
.wl-panel {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 36px;
  background: linear-gradient(175deg, rgba(61, 226, 160, 0.09), rgba(255, 255, 255, 0.03) 40%);
  border: 1px solid rgba(107, 232, 180, 0.24);
  -webkit-backdrop-filter: blur(24px) saturate(150%); backdrop-filter: blur(24px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  position: relative; overflow: hidden;
}
.wl-panel::before {
  content: ""; position: absolute; top: -60%; left: 20%; width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(61, 226, 160, 0.16), transparent 70%);
  pointer-events: none;
}
.wl-panel h2 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -0.03em; }
.wl-sub { color: var(--ink2); margin: 14px auto 0; max-width: 460px; }
.wl-bullets {
  list-style: none; margin: 26px auto 0; max-width: 420px; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
}
.wl-bullets li {
  position: relative; padding-left: 30px; color: var(--ink2); font-size: 15.5px;
}
.wl-bullets li::before {
  content: "✦"; position: absolute; left: 4px; color: var(--gold); font-size: 14px;
}

/* ── Footer ──────────────────────────────────────────────────────── */

.footer { border-top: 1px solid var(--line); padding: 44px 20px calc(44px + env(safe-area-inset-bottom)); }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-brand .brand-mark { width: 22px; height: 22px; }
.footer-brand em { font-style: normal; color: var(--ink3); font-weight: 500; margin-left: 6px; font-size: 14.5px; }
.footer-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-meta p { color: var(--ink3); font-size: 14px; }
.footer-meta a { color: var(--ink2); text-decoration: none; }
.footer-meta a:hover { color: var(--ink); }
.lang-sm button { font-size: 11px; padding: 4px 8px; }

/* ── Reveal on scroll ────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.in { opacity: 1; transform: none; }

/* ── Mobile ──────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .card, .card-w { grid-column: span 1; }
  .card-art { height: 104px; }
  .align { height: 260svh; }
  .align-stage { width: min(72vw, 40svh, 340px); }
  .nav-right .btn-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .capture { flex-direction: column; padding: 10px; border-radius: 24px; gap: 8px; }
  .capture input[type="email"] { text-align: center; padding: 12px; }
  .capture .btn { width: 100%; padding: 14px; }
  .hero { padding-top: calc(var(--nav-h) + 4vh); }
  .align-captions { height: 108px; }
}

/* ── Reduced motion ──────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .cap { opacity: 1 !important; transform: none !important; }
  .hero-title .w { opacity: 1; transform: none; }
  .align { height: auto; }
  .align-sticky { position: static; height: auto; padding-top: 10vh; padding-bottom: 10vh; }
  .marquee-track { animation: none; }
  #stars, .scroll-cue { display: none; }
}
