/* ============================================================
   ADAMANT — Landing Page Design System
   Dark luxury · constellation · Apollo gold · violet nebula
   ============================================================ */

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

:root {
  /* Surfaces */
  --bg: #04040A;
  --bg-2: #07061199;
  --surface: rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.055);

  /* Apollo gold */
  --gold: #FFB800;
  --gold-light: #FFE066;
  --gold-deep: #C8860B;
  --gold-dim: rgba(255,184,0,0.10);
  --gold-glow: rgba(255,184,0,0.28);

  /* Violet nebula */
  --violet: #7B2FFF;
  --violet-light: #A78BFA;
  --violet-dim: rgba(123,47,255,0.14);

  /* Accents */
  --emerald: #34D399;
  --emerald-dim: rgba(52,211,153,0.08);
  --red: #FF6B6B;
  --red-dim: rgba(255,107,107,0.08);
  --cyan: #5EEAD4;

  /* Text */
  --text: #F2EEE6;
  --text-muted: rgba(242,238,230,0.56);
  --text-faint: rgba(242,238,230,0.30);
  --text-ghost: rgba(242,238,230,0.14);

  /* Lines */
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(255,184,0,0.20);
  --border-violet: rgba(167,139,250,0.22);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'Epilogue', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;

  /* Rhythm */
  --max: 1140px;
  --max-narrow: 760px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5rem, 11vw, 10rem);

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(15px, 0.6vw + 12px, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   BACKGROUND LAYERS (fixed, behind everything)
   ============================================================ */
.bg-layers { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* Deep base gradient */
.bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(123,47,255,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,184,0,0.07), transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(123,47,255,0.10), transparent 60%),
    var(--bg);
}

/* Drifting nebula blobs */
.nebula {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5; mix-blend-mode: screen;
}
.nebula.n1 { width: 50vw; height: 50vw; top: -10%; left: -5%;
  background: radial-gradient(circle, rgba(123,47,255,0.5), transparent 70%);
  animation: drift1 38s ease-in-out infinite alternate; }
.nebula.n2 { width: 40vw; height: 40vw; top: 30%; right: -10%;
  background: radial-gradient(circle, rgba(255,184,0,0.22), transparent 70%);
  animation: drift2 46s ease-in-out infinite alternate; }
.nebula.n3 { width: 45vw; height: 45vw; bottom: -15%; left: 25%;
  background: radial-gradient(circle, rgba(94,234,212,0.14), transparent 70%);
  animation: drift3 54s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(8vw, 6vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vw, 9vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(5vw, -7vh) scale(1.2); } }

/* Constellation canvas */
#constellation { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Vignette */
.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 40%, rgba(2,2,6,0.55) 100%);
}

/* Grain */
.bg-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain { 0%,100%{transform:translate(0,0)} 16%{transform:translate(-4%,2%)} 33%{transform:translate(3%,-3%)} 50%{transform:translate(-2%,4%)} 66%{transform:translate(4%,1%)} 83%{transform:translate(-3%,-2%)} }

@media (prefers-reduced-motion: reduce) {
  .nebula, .bg-grain { animation: none; }
}

/* ============================================================
   THE APOLLO SUN (reusable SVG component)
   ============================================================ */
.sun-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.sun-rays { animation: spin 60s linear infinite; transform-origin: center; }
.sun-rays-2 { animation: spin 90s linear infinite reverse; transform-origin: center; }
.sun-core-glow { animation: breathe 5s ease-in-out infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 0%,100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .sun-rays, .sun-rays-2, .sun-core-glow { animation: none; } }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
section, header, footer, .divider { position: relative; z-index: 1; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad); }
.divider { height: 1px; max-width: var(--max); margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; width: 1.6rem; height: 1px; background: currentColor; opacity: 0.55; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 1.6rem; height: 1px; background: currentColor; opacity: 0.55; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.035em; line-height: 1.04; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 700; }
.section-title em { font-style: italic; color: var(--gold-light); }
.lede { color: var(--text-muted); font-weight: 300; font-size: clamp(0.95rem, 1.1vw, 1.1rem); line-height: 1.8; }
.lede em { color: var(--text); font-style: italic; font-weight: 400; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   ICON SYSTEM (gold line icons via <use>)
   ============================================================ */
.icon { width: 1.5rem; height: 1.5rem; stroke: var(--gold); stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 2.1rem; height: 2.1rem; }
.icon-violet { stroke: var(--violet-light); }
.icon-emerald { stroke: var(--emerald); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.1rem; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  text-decoration: none; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1A1000;
  box-shadow: 0 0 30px var(--gold-glow);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(255,184,0,0.42); }
.btn .icon { stroke: #1A1000; width: 1.05rem; height: 1.05rem; stroke-width: 2; }
.btn-sweep { position: absolute; top: -40%; left: -30%; width: 40px; height: 180%;
  background: rgba(255,255,255,0.4); transform: rotate(18deg); filter: blur(4px);
  animation: sweep 3.4s ease-in-out infinite; }
@keyframes sweep { 0% { left: -30%; } 60%,100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .btn-sweep { animation: none; opacity: 0; } }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.86rem; color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color 0.18s, border-color 0.18s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold); }
.btn-ghost .icon { width: 0.9rem; height: 0.9rem; }

.micro { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-faint); letter-spacing: 0.04em; }

/* ============================================================
   NAV
   ============================================================ */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  background: rgba(4,4,10,0.6); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
nav.top.scrolled { border-bottom-color: var(--border); background: rgba(4,4,10,0.86); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 26px; height: 26px; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.brand-name .dim { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.3rem; border-radius: 100px;
  background: var(--gold); color: #1A1000;
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: grid; align-items: center;
  grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--max); margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) var(--pad) clamp(4rem, 8vw, 6rem);
}
.hero-kicker { margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(3.2rem, 7.5vw, 6.4rem); margin-bottom: 1.5rem; }
.hero h1 .line { display: block; }
.hero h1 em { font-style: italic; color: var(--gold-light);
  text-shadow: 0 0 40px rgba(255,184,0,0.35); }
.hero-sub { max-width: 42ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.5rem; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; color: var(--text-faint); }
.hero-trust-item .icon { width: 0.95rem; height: 0.95rem; stroke: var(--emerald); }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem; }
.hero-sun { position: relative; z-index: 0; width: 230px; height: 230px; margin-bottom: -8px; opacity: 0.96; filter: drop-shadow(0 0 50px rgba(255,184,0,0.3)); }
.hero-cards { position: relative; z-index: 2; width: 100%; max-width: 350px; }

/* Verdict cards (reused) */
.vcard {
  background: rgba(7,6,15,0.94); backdrop-filter: blur(20px);
  border-radius: 18px; padding: 1.4rem 1.5rem; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
}
.vcard + .vcard { margin-top: 0.7rem; }
.vcard.genuine { border: 1px solid rgba(52,211,153,0.28); }
.vcard.reject { border: 1px solid rgba(255,107,107,0.26); }
.vcard::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.vcard.genuine::after { background: radial-gradient(ellipse at top left, rgba(52,211,153,0.08), transparent 60%); }
.vcard.reject::after { background: radial-gradient(ellipse at top left, rgba(255,107,107,0.08), transparent 60%); }
.vcard-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.vcard-head .icon { width: 1rem; height: 1rem; }
.vcard-tag { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }
.vcard-ruling { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; line-height: 1; }
.vcard-ruling.g { color: var(--emerald); }
.vcard-ruling.r { color: var(--red); }
.vcard-body { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; font-weight: 300; }
.vcard-pill { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.8rem;
  padding: 0.28rem 0.75rem; border-radius: 100px; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.04em; }
.vcard-pill.g { background: var(--emerald-dim); border: 1px solid rgba(52,211,153,0.3); color: var(--emerald); }
.vcard-pill.r { border: 1px solid rgba(255,107,107,0.3); color: var(--red); }
.vcard-pill .icon { width: 0.8rem; height: 0.8rem; stroke-width: 2; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; gap: 3rem; }
  .hero-visual { order: -1; min-height: 360px; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { padding: var(--section-y) var(--pad); text-align: center; }
.problem-quote { font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem); line-height: 1.15; letter-spacing: -0.03em;
  max-width: 16ch; margin: 0 auto 1.6rem; }
.problem-quote .strike { color: var(--text-faint); text-decoration: line-through; text-decoration-color: rgba(255,107,107,0.5); }

/* ============================================================
   STEPS (how it works)
   ============================================================ */
.steps-head { margin-bottom: 3.5rem; max-width: 22ch; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 2rem 2rem 2rem 0; position: relative; }
.step:not(:last-child) { border-right: 1px solid var(--border); padding-right: 2rem; padding-left: 0; }
.step:not(:first-child) { padding-left: 2.2rem; }
.step-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.step-icon { width: 2.6rem; height: 2.6rem; margin-bottom: 1rem; }
.step-h { font-size: 1.35rem; margin-bottom: 0.6rem; }
.step-b { font-size: 0.86rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step, .step:not(:last-child), .step:not(:first-child) { border: none; padding: 0; } }

/* ============================================================
   FEATURE SPLIT (proof-scan, lessons, oracle) — alternating
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center; max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--pad); }
.split.flip .split-visual { order: 2; }
.split-copy h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; margin: 1rem 0 1.1rem; }
.split-copy h2 em { font-style: italic; color: var(--gold-light); }
.split-copy .lede { margin-bottom: 1.6rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.feature-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-row .icon { flex-shrink: 0; margin-top: 2px; }
.feature-row-text strong { display: block; font-weight: 600; font-size: 0.92rem; color: var(--text); margin-bottom: 1px; }
.feature-row-text span { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.55; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.flip .split-visual { order: -1; }
}

/* Proof-scan visual */
.scan-frame { position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border-gold); background: rgba(8,7,18,0.7); padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.scan-photo { border-radius: 14px; height: 230px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a2a1e, #0d1410 60%, #16241a); }
.scan-photo-label { position: absolute; bottom: 12px; left: 14px; font-family: var(--font-mono);
  font-size: 0.62rem; color: rgba(242,238,230,0.5); letter-spacing: 0.1em; }
.scan-line { position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px var(--gold); animation: scanmove 2.6s ease-in-out infinite; }
@keyframes scanmove { 0%,100% { top: 6%; } 50% { top: 94%; } }
@media (prefers-reduced-motion: reduce) { .scan-line { animation: none; top: 50%; } }
.scan-reticle { position: absolute; width: 56px; height: 56px; border: 1.5px solid rgba(255,184,0,0.6);
  border-radius: 8px; top: 40%; left: 30%; }
.scan-reticle::before, .scan-reticle::after { content:''; position:absolute; background: var(--gold); }
.scan-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.scan-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem; border-radius: 100px; background: var(--emerald-dim);
  border: 1px solid rgba(52,211,153,0.25); color: var(--emerald); }
.scan-verdict { margin-top: 1.1rem; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: var(--emerald-dim); border: 1px solid rgba(52,211,153,0.25);
  display: flex; align-items: center; gap: 0.7rem; }
.scan-verdict .icon { stroke: var(--emerald); }
.scan-verdict-text { font-size: 0.8rem; color: var(--text); font-weight: 500; }
.scan-verdict-text span { display: block; font-size: 0.72rem; color: var(--text-muted); font-weight: 300; }

/* Lessons (chat) visual */
.chat { border-radius: 22px; border: 1px solid var(--border-violet); background: rgba(8,7,18,0.7);
  padding: 1.5rem; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.chat-head { display: flex; align-items: center; gap: 0.7rem; padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--border); }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 24px var(--gold-glow); }
.chat-avatar .icon { stroke: #1A1000; width: 1.2rem; height: 1.2rem; }
.chat-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.chat-status { font-family: var(--font-mono); font-size: 0.6rem; color: var(--emerald); letter-spacing: 0.08em; }
.bubble { padding: 0.85rem 1.05rem; border-radius: 14px; font-size: 0.82rem; line-height: 1.6;
  max-width: 88%; margin-bottom: 0.7rem; }
.bubble.them { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.18);
  color: var(--text); border-bottom-left-radius: 4px; }
.bubble.me { background: var(--surface-2); color: var(--text-muted); margin-left: auto;
  border-bottom-right-radius: 4px; font-weight: 300; }
.bubble.them em { color: var(--gold-light); font-style: italic; }

/* ============================================================
   REALMS GRID
   ============================================================ */
.realms { padding: var(--section-y) var(--pad); }
.realms-head { text-align: center; margin-bottom: 3.5rem; }
.realms-head .lede { max-width: 48ch; margin: 1rem auto 0; }
.realm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: var(--max); margin: 0 auto; }
.realm {
  position: relative; border-radius: 18px; padding: 1.8rem; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, background 0.3s;
}
.realm::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
  background: radial-gradient(ellipse at top, var(--realm-c, var(--gold-dim)), transparent 70%); }
.realm:hover { transform: translateY(-5px); border-color: var(--realm-bc, var(--border-gold)); background: var(--surface-2); }
.realm:hover::before { opacity: 1; }
.realm-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--realm-c, var(--gold-dim)); border: 1px solid var(--realm-bc, var(--border-gold)); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.realm-icon-wrap .icon { width: 1.5rem; height: 1.5rem; stroke: var(--realm-s, var(--gold)); }
.realm-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.realm-desc { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; position: relative; z-index: 1; }
@media (max-width: 820px) { .realm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .realm-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TWO FUTURES (transformation / loss aversion)
   ============================================================ */
.futures { padding: var(--section-y) var(--pad); }
.futures-head { text-align: center; margin-bottom: 3.5rem; }
.futures-head .lede { max-width: 46ch; margin: 1rem auto 0; }
.futures-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
  max-width: var(--max); margin: 0 auto; }
.future-col { padding: 2.5rem; border-radius: 22px; position: relative; overflow: hidden; }
.future-col.dim { background: rgba(255,255,255,0.02); border: 1px solid var(--border); }
.future-col.bright { background: linear-gradient(170deg, rgba(255,184,0,0.10), rgba(123,47,255,0.06));
  border: 1px solid var(--border-gold); box-shadow: 0 30px 90px rgba(255,184,0,0.10); }
.future-tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.future-col.dim .future-tag { color: var(--text-faint); }
.future-col.bright .future-tag { color: var(--gold); }
.future-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.1; }
.future-col.dim .future-title { color: var(--text-muted); }
.future-sub { font-size: 0.8rem; font-weight: 300; margin-bottom: 1.6rem; }
.future-col.dim .future-sub { color: var(--text-faint); }
.future-col.bright .future-sub { color: var(--text-muted); }
.future-list { display: flex; flex-direction: column; gap: 0.9rem; }
.future-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; line-height: 1.5; }
.future-item .icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.future-col.dim .future-item { color: var(--text-faint); }
.future-col.dim .future-item .icon { stroke: var(--red); }
.future-col.bright .future-item { color: var(--text); }
.future-col.bright .future-item .icon { stroke: var(--emerald); }
.futures-vs { display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.futures-vs span { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--text-faint); }
@media (max-width: 820px) {
  .futures-grid { grid-template-columns: 1fr; gap: 1rem; }
  .futures-vs { padding: 0.5rem; }
}

/* ============================================================
   SCIENCE / STUDIES
   ============================================================ */
.science { padding: var(--section-y) var(--pad); }
.science-head { text-align: center; margin-bottom: 1rem; }
.science-stat { text-align: center; margin-bottom: 3.5rem; }
.science-stat-num { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 6.5rem); font-weight: 900;
  color: var(--emerald); letter-spacing: -0.05em; line-height: 1;
  text-shadow: 0 0 60px rgba(52,211,153,0.3); }
.science-stat-label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-faint); margin-top: 0.5rem; }
.studies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: var(--max); margin: 0 auto; }
.study { background: var(--emerald-dim); border: 1px solid rgba(52,211,153,0.16); border-radius: 16px; padding: 1.6rem; }
.study-finding { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.7rem; color: var(--text); }
.study-finding em { color: var(--emerald); font-style: normal; }
.study-detail { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin-bottom: 0.9rem; }
.study-cite { font-family: var(--font-mono); font-size: 0.64rem; color: var(--text-faint); letter-spacing: 0.04em; padding-top: 0.7rem; border-top: 1px solid rgba(52,211,153,0.14); }
.science-note { text-align: center; margin-top: 2rem; font-size: 0.78rem; color: var(--text-faint); max-width: 50ch; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .studies { grid-template-columns: 1fr; } }

/* ============================================================
   APP GALLERY (device frames showing real screens)
   ============================================================ */
.gallery { padding: var(--section-y) 0; overflow: hidden; }
.gallery-head { text-align: center; margin-bottom: 3.5rem; padding: 0 var(--pad); }
.gallery-head .lede { max-width: 46ch; margin: 1rem auto 0; }
.gallery-rail { display: flex; gap: 1.5rem; padding: 1rem var(--pad) 2rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-rail::-webkit-scrollbar { height: 6px; }
.gallery-rail::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 3px; }
.device { flex: 0 0 auto; scroll-snap-align: center; }
.phone {
  width: 248px; height: 510px; border-radius: 38px; padding: 9px;
  background: linear-gradient(160deg, #2a2438, #14101e); position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone::before { content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 22px; background: #07060f; border-radius: 100px; z-index: 5; }
.phone-screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; position: relative;
  background: #05050D; }
.device-label { text-align: center; font-family: var(--font-mono); font-size: 0.64rem; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1rem; }

/* In-phone screen scaffolds */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 2.6rem 1rem 1rem; }
.scr-grad-today { background: linear-gradient(175deg, #0e0b1e 0%, #05050D 55%); }
.scr-grad-verdict { background: linear-gradient(175deg, #04150e 0%, #05050D 55%); }
.scr-grad-rank { background: linear-gradient(175deg, #110a00 0%, #05050D 55%); }
.scr-grad-realms { background: linear-gradient(175deg, #0e0520 0%, #05050D 55%); }
.scr-grad-sun { background: radial-gradient(ellipse at 50% 42%, #1a1230 0%, #07060f 70%); align-items: center; justify-content: center; }
.scr-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.scr-greet { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; }
.scr-greet span { display: block; font-family: var(--font-mono); font-size: 0.5rem; color: var(--gold); letter-spacing: 0.12em; font-weight: 400; }
.scr-pill { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gold); padding: 0.2rem 0.5rem; border: 1px solid var(--border-gold); border-radius: 100px; }
.scr-card { background: rgba(255,255,255,0.045); border: 1px solid var(--border); border-radius: 11px; padding: 0.65rem 0.7rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.55rem; }
.scr-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.scr-card-txt { flex: 1; min-width: 0; }
.scr-card-name { font-size: 0.62rem; font-weight: 600; color: rgba(242,238,230,0.9); }
.scr-card-sub { font-size: 0.48rem; color: var(--text-faint); margin-top: 1px; }
.scr-check { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--border-gold); flex-shrink: 0; }
.scr-check.on { background: var(--emerald); border-color: var(--emerald); }
/* verdict screen inner */
.scr-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; }
.scr-seal { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.scr-seal.g { background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--gold-deep)); box-shadow: 0 0 30px var(--gold-glow); }
.scr-seal .icon { stroke: #1A1000; width: 1.6rem; height: 1.6rem; }
.scr-verdict-word { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--emerald); }
.scr-verdict-body { font-size: 0.55rem; color: var(--text-muted); font-weight: 300; line-height: 1.5; max-width: 22ch; }
.scr-xp { font-family: var(--font-mono); font-size: 0.56rem; color: var(--emerald); padding: 0.2rem 0.6rem; border: 1px solid rgba(52,211,153,0.3); border-radius: 100px; }
/* rank screen */
.scr-rank-badge { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto;
  background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 40px var(--gold-glow); }
.scr-rank-roman { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: #1A1000; line-height: 1; }
.scr-rank-word { font-size: 0.4rem; font-weight: 800; letter-spacing: 0.1em; color: #1A1000; }
.scr-rank-title { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-light); text-align: center; margin: 0.6rem 0 1rem; }
.scr-stats { display: flex; gap: 0.4rem; }
.scr-stat { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 9px; padding: 0.5rem; text-align: center; }
.scr-stat-v { font-family: var(--font-display); font-size: 0.95rem; font-weight: 900; color: var(--gold); }
.scr-stat-k { font-size: 0.42rem; color: var(--text-faint); letter-spacing: 0.08em; text-transform: uppercase; }
/* realms screen grid */
.scr-realm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
.scr-realm { border-radius: 9px; padding: 0.55rem; aspect-ratio: 1.4; display: flex; flex-direction: column; justify-content: space-between; }
.scr-realm .icon { width: 0.9rem; height: 0.9rem; }
.scr-realm-name { font-size: 0.48rem; font-weight: 600; }

@media (max-width: 520px) { .phone { width: 220px; height: 452px; } }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { padding: var(--section-y) var(--pad); }
.compare-head { text-align: center; margin-bottom: 3rem; }
.compare-table { max-width: 840px; margin: 0 auto; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }
.compare-row.head { background: rgba(255,184,0,0.05); }
.compare-cell { padding: 1rem 1.2rem; font-size: 0.84rem; }
.compare-cell.feat { color: var(--text); font-weight: 500; }
.compare-cell.mid { text-align: center; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.compare-cell.ours { text-align: center; background: rgba(255,184,0,0.04); }
.compare-row.head .compare-cell { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; }
.compare-row.head .compare-cell.ours { color: var(--gold); }
.compare-cell .icon { width: 1.1rem; height: 1.1rem; }
.compare-cell .icon.yes { stroke: var(--emerald); }
.compare-cell .icon.no { stroke: var(--text-ghost); }
.compare-brand { display: inline-flex; align-items: center; gap: 0.4rem; justify-content: center; }
.compare-brand .brand-mark { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .compare-cell { padding: 0.8rem 0.6rem; font-size: 0.74rem; }
  .compare-row { grid-template-columns: 1.5fr 0.8fr 0.8fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: var(--section-y) var(--pad); text-align: center; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 600px; margin: 3rem auto 0; }
.plan { background: var(--surface); border: 1.5px solid var(--border); border-radius: 18px; padding: 1.9rem; text-align: left; position: relative; transition: border-color 0.25s, transform 0.25s; }
.plan:hover { transform: translateY(-3px); }
.plan.on { border-color: var(--gold); background: rgba(255,184,0,0.05); }
.plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1A1000; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.22rem 0.8rem; border-radius: 6px; white-space: nowrap; }
.plan-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.plan-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin: 0.6rem 0 0.2rem; }
.plan-price sup { font-size: 1.1rem; font-weight: 400; top: -0.7em; }
.plan-price .cents { font-size: 1.1rem; font-weight: 400; }
.plan-period { font-size: 0.78rem; color: var(--text-faint); }
.plan-sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.6rem; font-weight: 300; }
.pricing-cta { max-width: 600px; margin: 1.6rem auto 0; }
.pricing-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1.1rem; }
.pricing-trust { margin-top: 0.9rem; }
@media (max-width: 480px) { .plans { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { padding: clamp(7rem, 14vw, 12rem) var(--pad); text-align: center; position: relative; }
.final-sun { margin: 0 auto 2.5rem; }
.final h2 { font-size: clamp(2.8rem, 7vw, 6rem); margin-bottom: 1.2rem; }
.final h2 em { font-style: italic; color: var(--gold-light); text-shadow: 0 0 50px rgba(255,184,0,0.4); }
.final .lede { max-width: 40ch; margin: 0 auto 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--border); padding: 3rem var(--pad); position: relative; z-index: 1; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--text-faint); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-family: var(--font-mono); font-size: 0.66rem; color: var(--text-ghost); letter-spacing: 0.04em; text-align: center; }

/* ============================================================
   GALLERY — richer in-phone screens
   ============================================================ */
.scr-grad-proof { background: linear-gradient(175deg,#0e0b1e 0%,#05050D 55%); }
.scr-grad-tutor { background: linear-gradient(175deg,#0c0a1c 0%,#05050D 55%); }
.scr-grad-stats { background: linear-gradient(175deg,#08101e 0%,#05050D 55%); }
.scr-grad-divergence { background: linear-gradient(175deg,#0e0520 0%,#07060f 60%); }

.scr-momentum { margin-bottom: 0.7rem; }
.scr-momentum-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.3rem; }
.scr-momentum-k { font-family:var(--font-mono); font-size:0.44rem; color:var(--text-faint); letter-spacing:0.12em; }
.scr-momentum-v { font-family:var(--font-mono); font-size:0.44rem; color:var(--gold); }
.scr-bar { height:5px; border-radius:100px; background:rgba(255,255,255,0.08); overflow:hidden; }
.scr-bar-fill { height:100%; border-radius:100px; background:linear-gradient(90deg,var(--gold-deep),var(--gold-light)); box-shadow:0 0 8px var(--gold-glow); }
.scr-streak { display:inline-flex; align-items:center; gap:1px; font-family:var(--font-mono); font-size:0.4rem; color:var(--gold); }
.scr-streak .icon { width:0.5rem; height:0.5rem; stroke:var(--gold); }
.scr-card-right { display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.scr-section-k { font-family:var(--font-mono); font-size:0.44rem; color:var(--text-faint); letter-spacing:0.14em; text-transform:uppercase; margin:0.2rem 0 0.45rem; }

/* proof capture in phone */
.scr-proof-photo { flex:1; border-radius:12px; position:relative; overflow:hidden; margin-bottom:0.55rem;
  background:linear-gradient(160deg,#23303a,#10171c 55%,#1c2a22); }
.scr-proof-photo .scan-reticle { width:46px; height:46px; top:34%; left:32%; }
.scr-proof-tag { position:absolute; bottom:8px; left:10px; font-family:var(--font-mono); font-size:0.4rem; color:rgba(242,238,230,0.6); letter-spacing:0.08em; }
.scr-proof-cap { display:flex; align-items:center; justify-content:center; gap:0.4rem; padding:0.5rem;
  border-radius:10px; background:var(--gold-dim); border:1px solid var(--border-gold); }
.scr-proof-cap .icon { width:0.9rem; height:0.9rem; stroke:var(--gold); }
.scr-proof-cap-t { font-size:0.5rem; color:var(--gold-light); font-weight:600; letter-spacing:0.02em; }

/* tutor chat in phone */
.scr-chat-head { display:flex; align-items:center; gap:0.45rem; padding-bottom:0.5rem; margin-bottom:0.6rem; border-bottom:1px solid var(--border); }
.scr-chat-av { width:24px; height:24px; border-radius:50%; background:radial-gradient(circle at 40% 35%,var(--gold-light),var(--gold-deep)); display:flex; align-items:center; justify-content:center; box-shadow:0 0 14px var(--gold-glow); flex-shrink:0; }
.scr-chat-av .icon { width:0.75rem; height:0.75rem; stroke:#1A1000; }
.scr-chat-name { font-family:var(--font-display); font-weight:700; font-size:0.62rem; }
.scr-chat-st { font-family:var(--font-mono); font-size:0.4rem; color:var(--emerald); letter-spacing:0.06em; }
.scr-bubble { padding:0.45rem 0.6rem; border-radius:9px; font-size:0.5rem; line-height:1.5; max-width:88%; margin-bottom:0.4rem; }
.scr-bubble.them { background:rgba(167,139,250,0.12); border:1px solid rgba(167,139,250,0.2); color:rgba(242,238,230,0.9); border-bottom-left-radius:3px; }
.scr-bubble.them em { color:var(--gold-light); font-style:italic; }
.scr-bubble.me { background:rgba(255,255,255,0.06); color:var(--text-muted); margin-left:auto; border-bottom-right-radius:3px; }

/* stats radar + bars */
.scr-radar { display:flex; justify-content:center; margin:0.2rem 0 0.5rem; }
.scr-bars { display:flex; align-items:flex-end; gap:0.28rem; height:44px; padding:0 0.1rem; }
.scr-barcol { flex:1; display:flex; flex-direction:column; align-items:center; gap:0.2rem; height:100%; justify-content:flex-end; }
.scr-barcol-bar { width:100%; border-radius:3px 3px 0 0; background:linear-gradient(180deg,var(--gold-light),var(--gold-deep)); min-height:4px; }
.scr-barcol-k { font-size:0.36rem; color:var(--text-faint); }

/* rank progress */
.scr-rank-prog { margin-top:0.1rem; }
.scr-rank-prog-k { display:flex; justify-content:space-between; font-family:var(--font-mono); font-size:0.42rem; color:var(--text-faint); margin-bottom:0.25rem; }

/* divergence */
.scr-div-split { flex:1; display:flex; gap:0.4rem; margin-top:0.3rem; }
.scr-div-col { flex:1; border-radius:10px; padding:0.55rem; display:flex; flex-direction:column; gap:0.35rem; }
.scr-div-col.bright { background:linear-gradient(170deg,rgba(255,184,0,0.14),rgba(123,47,255,0.07)); border:1px solid var(--border-gold); }
.scr-div-col.dim { background:rgba(255,255,255,0.02); border:1px solid var(--border); }
.scr-div-fig { height:52px; border-radius:8px; display:flex; align-items:center; justify-content:center; }
.scr-div-fig .icon { width:1.5rem; height:1.5rem; }
.scr-div-k { font-size:0.4rem; font-family:var(--font-mono); letter-spacing:0.06em; text-transform:uppercase; }
.scr-div-t { font-family:var(--font-display); font-size:0.6rem; font-weight:700; line-height:1.1; }
.scr-div-line { font-size:0.42rem; line-height:1.4; }

/* ============================================================
   WAITLIST (pre-launch email capture)
   ============================================================ */
.waitlist { padding: var(--section-y) var(--pad); text-align: center; }
.waitlist .section-title { margin: 0.8rem 0 0; }
.waitlist .lede { max-width: 46ch; margin: 1rem auto 2rem; }
.waitlist-form { display: flex; gap: 0.6rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist-input {
  flex: 1; min-width: 230px; padding: 0.95rem 1.4rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  color: var(--text); font-family: var(--font-ui); font-size: 0.95rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist-input::placeholder { color: var(--text-faint); }
.waitlist-input:focus { border-color: var(--gold); background: rgba(255,184,0,0.05); }
.waitlist-form .btn { flex-shrink: 0; }
.waitlist-trust { margin-top: 1rem; }
.waitlist-count { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.6rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }
.waitlist-count .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald); }

/* ============================================================
   NAV LINKS (Sky / Trial) + TRIAL TEASER + REALMS-MORE BANNER
   ============================================================ */
.nav-links { display: inline-flex; align-items: center; gap: 1.4rem; }
.nav-link { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.18s; }
.nav-link:hover { color: var(--gold-light); }
@media (max-width: 620px) { .nav-links { gap: 0.9rem; } .nav-link.hide-sm { display: none; } }

.trial-tease { padding: var(--section-y) var(--pad); }

.realms-more { max-width: var(--max); margin: 1.6rem auto 0; border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.4rem); display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(123,47,255,0.10), rgba(255,184,0,0.07));
  border: 1px solid var(--border-gold); box-shadow: 0 24px 80px rgba(123,47,255,0.10); }
.realms-more::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(1.5px 1.5px at 12% 30%, rgba(255,224,102,0.9), transparent 100%),
    radial-gradient(1px 1px at 28% 70%, rgba(242,238,230,0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 46% 22%, rgba(167,139,250,0.8), transparent 100%),
    radial-gradient(1px 1px at 64% 62%, rgba(242,238,230,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 34%, rgba(255,224,102,0.8), transparent 100%),
    radial-gradient(1px 1px at 92% 76%, rgba(167,139,250,0.7), transparent 100%); }
.realms-more-copy { max-width: 52ch; position: relative; }
.realms-more-k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 0.5rem; }
.realms-more-t { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 700; line-height: 1.2; }
.realms-more-t em { font-style: italic; color: var(--gold-light); }
.realms-more-sub { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin-top: 0.5rem; }
.realms-more .btn { flex-shrink: 0; position: relative; }

/* ============================================================
   ALIVE ENGINE — comet cursor, tilt, cascades, sparks
   ============================================================ */
.alv-comet { position: fixed; inset: 0; z-index: 90; pointer-events: none; }

.alv-glare { position: absolute; inset: 0; border-radius: inherit; opacity: 0; pointer-events: none;
  transition: opacity 0.35s; mix-blend-mode: screen; z-index: 3; }
.vcard, .scan-frame, .chat, .realm, .study, .plan, .realms-more, .tcard, .v-cell, .lie-card {
  transition: transform 0.55s var(--ease-out-expo), border-color 0.3s, background 0.3s, box-shadow 0.3s; will-change: transform; }
.alv-tilting { transition: transform 0.06s linear !important; }

/* word cascade */
.alv-cascade .alv-w { display: inline-block; opacity: 0; transform: translateY(0.55em) rotate(1.5deg); filter: blur(4px); }
.alv-cascade-in .alv-w { opacity: 1; transform: none; filter: blur(0);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo), filter 0.7s;
  transition-delay: calc(var(--wi, 0) * 55ms); }
@media (prefers-reduced-motion: reduce) { .alv-cascade .alv-w { opacity: 1; transform: none; filter: none; } }

/* generic pop / hide */
.alv-hid { opacity: 0 !important; transform: translateY(10px) scale(0.97); }
.alv-pop { animation: alvPop 0.5s var(--ease-out-expo) both; }
@keyframes alvPop { from { opacity: 0; transform: translateY(12px) scale(0.95); } to { opacity: 1; transform: none; } }

/* live verdict loop */
.alv-vscan { position: absolute; left: 8px; right: 8px; height: 2px; top: 10%; opacity: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 14px var(--gold); z-index: 2; }
.vcard.alv-judging .alv-vscan { opacity: 1; animation: alvScanY 1.2s ease-in-out; }
@keyframes alvScanY { 0% { top: 8%; } 100% { top: 90%; } }
.vcard.alv-judging { border-color: var(--border-gold) !important; }
.vcard.alv-stamped .vcard-ruling { animation: alvStamp 0.45s var(--ease-out-expo); }
@keyframes alvStamp { 0% { transform: scale(1.6) rotate(-4deg); opacity: 0; } 60% { transform: scale(0.96); opacity: 1; } 100% { transform: none; } }
.vcard.alv-shake { animation: alvShake 0.4s ease; }
@keyframes alvShake { 0%,100% { translate: 0 0; } 25% { translate: -4px 0; } 50% { translate: 4px 0; } 75% { translate: -2px 0; } }
.alv-spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; pointer-events: none; z-index: 5;
  background: radial-gradient(circle, #FFF4C2, var(--gold)); box-shadow: 0 0 8px var(--gold-glow);
  animation: alvSpark 0.85s var(--ease-out-expo) forwards; }
@keyframes alvSpark { to { transform: translate(var(--dx, 0), var(--dy, -40px)) scale(0.1); opacity: 0; } }

/* typing dots */
.alv-dots { display: inline-flex; gap: 5px; align-items: center; width: auto; min-height: 0; opacity: 0; transition: opacity 0.2s; }
.alv-dots.alv-on { opacity: 1; }
.alv-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-light); opacity: 0.5;
  animation: alvDot 1s ease-in-out infinite; }
.alv-dots span:nth-child(2) { animation-delay: 0.15s; }
.alv-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes alvDot { 0%,100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-4px); opacity: 1; } }

/* steps light-up */
.step { transition: opacity 0.5s; }
.alv-step-lit .step-num { color: var(--gold-light); text-shadow: 0 0 18px rgba(255,184,0,0.6); }
.alv-step-lit .step-icon { animation: alvIconPulse 0.7s var(--ease-out-expo); }
@keyframes alvIconPulse { 0% { transform: scale(0.8); filter: drop-shadow(0 0 0 rgba(255,184,0,0)); } 50% { transform: scale(1.12); filter: drop-shadow(0 0 14px rgba(255,184,0,0.7)); } 100% { transform: none; } }

/* ============================================================
   THE LIE — tap-a-fake-streak widget
   ============================================================ */
.lie-card { max-width: 430px; margin: 2.6rem auto 0; text-align: left; border-radius: 18px; padding: 1.3rem 1.4rem;
  background: rgba(9,8,18,0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5); }
.lie-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.18em; color: var(--text-faint); margin-bottom: 0.9rem; }
.lie-streak b { color: var(--gold); font-weight: 500; }
.lie-streak.alv-tick b { animation: alvStamp 0.35s var(--ease-out-expo); display: inline-block; }
.lie-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.85rem 0.95rem; border-radius: 12px;
  background: rgba(255,255,255,0.045); border: 1px solid var(--border); }
.lie-dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; flex-shrink: 0; }
.lie-txt { flex: 1; line-height: 1.25; }
.lie-txt b { font-size: 0.88rem; font-weight: 600; display: block; }
.lie-txt i { font-style: normal; font-size: 0.68rem; color: var(--text-faint); }
.lie-check { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border-gold);
  background: transparent; cursor: pointer; flex-shrink: 0; position: relative;
  transition: background 0.2s, transform 0.15s; }
.lie-check:hover { transform: scale(1.12); }
.lie-check.on { background: #34D399; border-color: #34D399; }
.lie-check.on::after { content: ''; position: absolute; inset: 7px 6px 8px; border-left: 2.5px solid #04150e;
  border-bottom: 2.5px solid #04150e; transform: rotate(-45deg) translateY(-1px); }
.lie-check:disabled { cursor: not-allowed; }
.lie-cap { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin-top: 0.9rem; min-height: 2.4em; }
.lie-cap em { color: var(--gold-light); font-style: italic; }
.lie-link { display: inline-block; margin-top: 0.35rem; color: var(--gold-light); text-decoration: none;
  border-bottom: 1px solid var(--border-gold); padding-bottom: 1px; font-weight: 500; }
.lie-link:hover { color: var(--gold); }
.lie-stamp { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%) rotate(-9deg) scale(2.4);
  font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; line-height: 1; text-align: center;
  color: var(--red); border: 3px solid var(--red); border-radius: 8px; padding: 0.35rem 0.8rem;
  opacity: 0; pointer-events: none; letter-spacing: 0.04em; text-transform: uppercase; z-index: 4;
  text-shadow: 0 0 30px rgba(255,107,107,0.5); background: rgba(4,4,10,0.55); backdrop-filter: blur(2px); }
.lie-stamp.on { animation: lieStamp 0.5s var(--ease-out-expo) forwards; }
@keyframes lieStamp { 0% { opacity: 0; transform: translate(-50%,-50%) rotate(-9deg) scale(2.4); }
  100% { opacity: 1; transform: translate(-50%,-50%) rotate(-9deg) scale(1); } }
.lie-busted { animation: alvShake 0.45s ease; border-color: rgba(255,107,107,0.35); }
.lie-busted .lie-row { opacity: 0.45; }
@media (prefers-reduced-motion: reduce) { .lie-stamp.on { animation: none; opacity: 1; transform: translate(-50%,-50%) rotate(-9deg) scale(1); } }

/* ============================================================
   HOLD THE YEAR — divergence hold interaction
   ============================================================ */
.div-wrap { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.div-hold { display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1.5rem 0.7rem 0.7rem;
  border-radius: 100px; cursor: pointer; user-select: none; -webkit-user-select: none; touch-action: none;
  background: rgba(9,8,18,0.75); border: 1px solid var(--border-gold); color: var(--text);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em;
  backdrop-filter: blur(14px); transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s; }
.div-hold:hover { box-shadow: 0 0 30px rgba(255,184,0,0.15); }
.div-hold.holding { border-color: var(--gold); box-shadow: 0 0 45px rgba(255,184,0,0.3); transform: scale(0.985); }
.div-hold.done { border-color: var(--gold); background: var(--gold-dim); cursor: default; }
.div-ring { width: 34px; height: 34px; transform: rotate(-90deg); flex-shrink: 0; }
.div-ring-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 2.5; }
.div-ring-fg { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(255,184,0,0.7)); }
.div-hold-t { color: var(--gold-light); }
.div-days { color: var(--text-muted); font-size: 0.62rem; min-width: 4.6em; text-align: right; }
.div-verdict { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--text-muted);
  opacity: 0; transform: translateY(6px); transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  text-align: center; line-height: 1.5; max-width: 42ch; }
.div-verdict.on { opacity: 1; transform: none; }
.div-verdict b { color: var(--text); font-weight: 700; }
.div-verdict em { color: var(--gold-light); }
.div-verdict.gold { color: var(--text); }
.future-col { transition: filter 0.3s, transform 0.3s, box-shadow 0.3s; }
.div-final .future-col.dim { filter: grayscale(1) brightness(0.7); }

/* ============================================================
   SEALED CODEX — evidence behind wax
   ============================================================ */
.study.sealed { position: relative; overflow: hidden; }
.study.sealed .seal-inner { filter: blur(9px) saturate(0.7); opacity: 0.55; transition: filter 0.7s var(--ease-out-expo), opacity 0.7s; }
.study.unsealed .seal-inner { filter: none; opacity: 1; }
.seal-cover { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.55rem; cursor: pointer; border: none; border-radius: inherit;
  background: linear-gradient(160deg, rgba(5,10,8,0.55), rgba(5,5,13,0.72));
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo); }
.seal-cover:hover .seal-ring, .seal-cover:focus-visible .seal-ring { transform: scale(1.1) rotate(18deg); box-shadow: 0 0 34px rgba(255,184,0,0.45); }
.study.unsealed .seal-cover { opacity: 0; transform: scale(1.06); pointer-events: none; }
.seal-ring { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--gold-deep));
  box-shadow: 0 0 24px var(--gold-glow); transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; }
.seal-ring svg { width: 26px; height: 26px; stroke: #1A1000; stroke-width: 1.6; }
.seal-k { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.22em; color: var(--emerald); }
.seal-hint { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.12em; color: var(--text-faint); text-transform: uppercase; }
.seal-after { text-align: center; margin: 1.6rem auto 0; max-width: 52ch; font-size: 0.85rem; color: var(--text-muted);
  opacity: 0; transform: translateY(10px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.seal-after.on { opacity: 1; transform: none; }
.seal-after em { color: var(--gold-light); font-style: italic; }

/* ============================================================
   COMPARISON — judgment sequence
   ============================================================ */
.alv-row-wait { opacity: 0; transform: translateX(-14px); }
.alv-row-in { opacity: 1; transform: none; transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo); }
.alv-x-thud { animation: alvThud 0.4s ease both; }
@keyframes alvThud { 0% { transform: scale(1.7); opacity: 0; } 100% { transform: none; opacity: 1; } }
.alv-check-pop { animation: alvCheckPop 0.55s var(--ease-out-expo) both; }
@keyframes alvCheckPop { 0% { transform: scale(0); } 60% { transform: scale(1.45); filter: drop-shadow(0 0 10px rgba(52,211,153,0.9)); } 100% { transform: none; } }
.compare-row:not(.head):hover { background: rgba(255,184,0,0.03); }
.alv-table-verdict { animation: alvTableGlow 1.6s ease; border-color: var(--border-gold); }
@keyframes alvTableGlow { 0% { box-shadow: 0 0 0 rgba(255,184,0,0); } 40% { box-shadow: 0 0 70px rgba(255,184,0,0.22); } 100% { box-shadow: 0 0 0 rgba(255,184,0,0); } }

/* ============================================================
   GALLERY float
   ============================================================ */
.alv-float .phone { animation: alvFloat 7s ease-in-out infinite; animation-delay: calc(var(--fi, 0) * -2.2s); }
@keyframes alvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.device { transition: transform 0.4s var(--ease-out-expo); }
.device:hover { transform: translateY(-6px); }
.device:hover .device-label { color: var(--gold-light); }
@media (prefers-reduced-motion: reduce) { .alv-float .phone { animation: none; } }

/* ============================================================
   PROGRESS BAR + CONSTELLATION SPINE
   ============================================================ */
.alv-pbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120; pointer-events: none; }
.alv-pbar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 10px var(--gold-glow); }

.alv-spine { position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 95;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.alv-spine-line { position: absolute; top: 8px; bottom: 34px; width: 1px; background: rgba(255,255,255,0.09); left: 50%; }
.alv-spine-fill { width: 100%; height: 0; background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  box-shadow: 0 0 8px var(--gold-glow); transition: height 0.6s var(--ease-out-expo); }
.alv-spine-stars { display: flex; flex-direction: column; gap: 1.15rem; position: relative; }
.alv-spine-star { width: 14px; height: 14px; padding: 0; border: none; cursor: pointer; position: relative;
  background: transparent; }
.alv-spine-star::before { content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: rgba(242,238,230,0.22); transition: background 0.3s, box-shadow 0.3s, transform 0.3s; }
.alv-spine-star:hover::before { transform: scale(1.5); background: rgba(255,224,102,0.7); }
.alv-spine-star.lit::before { background: #FFE066; box-shadow: 0 0 10px rgba(255,224,102,0.9); }
.alv-spine-star.here::before { animation: alvHere 1.6s ease-in-out infinite; }
@keyframes alvHere { 0%,100% { transform: scale(1); } 50% { transform: scale(1.7); } }
.alv-spine-tip { position: absolute; right: 22px; top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--text); background: rgba(7,6,15,0.92); border: 1px solid var(--border-gold);
  padding: 0.3rem 0.7rem; border-radius: 100px; opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s; }
.alv-spine-star:hover .alv-spine-tip, .alv-spine-star:focus-visible .alv-spine-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.alv-spine-count { font-family: var(--font-mono); font-size: 0.58rem; color: var(--text-faint); letter-spacing: 0.1em; }
.alv-spine-count b { color: var(--gold); }
@media (max-width: 1079px) { .alv-spine { display: none; } }
@media (prefers-reduced-motion: reduce) { .alv-spine-star.here::before { animation: none; } }

/* ============================================================
   TOAST + EXIT DOOR + MEMORY CHIPS
   ============================================================ */
.alv-toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px); z-index: 150;
  padding: 0.8rem 1.5rem; border-radius: 100px; max-width: min(560px, 90vw); text-align: center;
  background: rgba(7,6,15,0.94); border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px); box-shadow: 0 14px 60px rgba(0,0,0,0.6);
  font-size: 0.8rem; color: var(--text); opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo); }
.alv-toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.alv-toast em { color: var(--gold-light); font-style: italic; }
.alv-toast a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border-gold); }

.alv-exit { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(3,3,8,0.75); backdrop-filter: blur(14px); opacity: 0; transition: opacity 0.4s ease; padding: 1.5rem; }
.alv-exit.show { opacity: 1; }
.alv-exit-card { max-width: 480px; width: 100%; text-align: center; border-radius: 24px; position: relative;
  padding: 2.6rem 2.2rem 2.2rem; background: linear-gradient(200deg, rgba(13,11,26,0.92), rgba(5,5,13,0.96));
  border: 1px solid var(--border-gold); box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 80px rgba(255,184,0,0.08);
  transform: scale(0.94) translateY(10px); transition: transform 0.45s var(--ease-out-expo); }
.alv-exit.show .alv-exit-card { transform: none; }
.alv-exit-x { position: absolute; top: 0.9rem; right: 0.9rem; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted);
  cursor: pointer; font-size: 0.8rem; transition: background 0.2s; }
.alv-exit-x:hover { background: rgba(255,255,255,0.12); }
.alv-exit-sun { width: 46px; height: 46px; stroke: var(--gold); stroke-width: 1.5; margin-bottom: 0.9rem;
  filter: drop-shadow(0 0 16px rgba(255,184,0,0.5)); animation: spin 40s linear infinite; }
.alv-exit-card h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; margin-bottom: 0.7rem; }
.alv-exit-card h3 em { font-style: italic; color: var(--gold-light); }
.alv-exit-card p { font-size: 0.86rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.6rem; }
.alv-exit-actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }
@media (prefers-reduced-motion: reduce) { .alv-exit-sun { animation: none; } }

.alv-chips { display: flex; flex-direction: column; gap: 0.5rem; margin: -0.4rem 0 1.3rem; align-items: flex-start; }
.alv-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border-radius: 100px;
  background: rgba(9,8,18,0.7); border: 1px solid var(--border-violet); color: var(--text-muted);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; text-decoration: none;
  backdrop-filter: blur(10px); transition: border-color 0.2s, color 0.2s, transform 0.2s; animation: alvPop 0.7s var(--ease-out-expo) both; }
.alv-chip:hover { border-color: var(--gold); color: var(--text); transform: translateX(4px); }
.alv-chip b { color: var(--gold-light); font-weight: 500; }
.alv-chip-k { color: var(--gold); }
.alv-chip.gold { border-color: var(--border-gold); }
@media (max-width: 860px) { .alv-chips { align-items: center; } }

/* forge banner stats + tilt-ready forge cards */
.fr-banner .realms-more-t em { font-style: italic; color: var(--gold-light); }
.fr-stats { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 0.9rem; }
.fr-stat { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; padding: 0.32rem 0.75rem;
  border-radius: 100px; border: 1px solid var(--border-gold); color: var(--gold-light); background: rgba(255,184,0,0.05); }
.std-panel, .voice-phone { transition: transform 0.55s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s; will-change: transform; }

