/* SMEX iteration 2 — craft pass: serif italics, dot grid bg, custom cursor X, scroll progress, redesigned engagement rail, Robin Hood manifesto, NZ split layout, founder block. */

:root {
  --bg: #07070C;
  --bg-elevated: #0E0E16;
  --bg-line: rgba(244, 239, 230, 0.06);
  --fg: #F4EFE6;
  --fg-dim: rgba(244, 239, 230, 0.7);
  --fg-faint: rgba(244, 239, 230, 0.36);
  --accent: #FFE600;
  --accent-warm: #FFC400;
  --accent-text: #07070C;
  --accent-soft: rgba(255, 230, 0, 0.08);
  --accent-line: rgba(255, 230, 0, 0.5);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-serif: "Fraunces", "Tiempos", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px; --space-10: 128px;
  --space-11: 192px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-stripe: cubic-bezier(0.32, 0.72, 0, 1);
  --d-quick: 200ms;
  --d-norm: 350ms;
  --d-slow: 600ms;
  --d-cinema: 1200ms;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --container-max: 1240px;
  --container-pad: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01" on;
  font-variation-settings: "opsz" 24;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 920px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: inherit; border: none; background: none; color: inherit; }
img, svg, canvas { max-width: 100%; display: block; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

@media (max-width: 720px) {
  :root { --container-pad: 20px; }
}

/* GLOBAL DECOR */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 10%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 10%, #000 30%, transparent 80%);
}
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(255, 230, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 800px 600px at 0% 30%, rgba(47, 89, 255, 0.05) 0%, transparent 60%);
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(244, 239, 230, 0.05);
  z-index: 100;
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.6);
}

/* CUSTOM CURSOR */
.cursor-x {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
  transition: transform 0ms linear;
  font-family: var(--font-sans);
  line-height: 1;
}
.cursor-x.hovering {
  transform: translate3d(var(--cx, 0), var(--cy, 0), 0) scale(1.6);
  transition: transform 200ms var(--ease-expo);
}
@media (max-width: 920px) {
  .cursor-x { display: none; }
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(7, 7, 12, 0.5);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: padding var(--d-norm) var(--ease-expo), background var(--d-norm) var(--ease-expo), border-color var(--d-norm) var(--ease-expo);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(7, 7, 12, 0.85);
  border-bottom-color: rgba(244, 239, 230, 0.08);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
}
.brand-x { color: var(--accent); font-size: 26px; line-height: 1; transform: translateY(2px); }
.brand-text { letter-spacing: 0.04em; }
.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--fg-dim); font-size: 14px; font-weight: 500;
  position: relative;
  transition: color var(--d-quick) var(--ease-expo);
}
.nav a:hover { color: var(--fg); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-norm) var(--ease-expo);
}
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 920px) { .nav { display: none; } }

/* CTAs */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    background var(--d-quick) var(--ease-expo),
    color var(--d-quick) var(--ease-expo),
    transform var(--d-norm) var(--ease-expo),
    box-shadow var(--d-norm) var(--ease-expo);
  white-space: nowrap;
}
.cta-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.3);
}
.cta-primary:hover { background: var(--accent-warm); transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(255, 230, 0, 0.5); }
.cta-primary .arrow { transition: transform var(--d-quick) var(--ease-expo); }
.cta-primary:hover .arrow { transform: translateX(4px); }
.cta-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(244, 239, 230, 0.18);
}
.cta-secondary:hover { background: rgba(244, 239, 230, 0.06); border-color: rgba(244, 239, 230, 0.4); }
.cta-ghost {
  color: var(--fg);
  padding: 10px 18px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  font-size: 14px;
}
.cta-ghost:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 720px) {
  .cta-ghost { padding: 8px 14px; font-size: 13px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 160px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
#hero-canvas { width: 100%; height: 100%; display: block; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 32px;
  padding: 6px 14px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.03);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 18px var(--accent), 0 0 6px var(--accent); } }

.display {
  font-size: clamp(46px, 7.2vw, 102px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 36px;
  font-feature-settings: "ss01", "case", "calt";
}
.display em {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.02em;
  color: var(--fg);
  background: linear-gradient(180deg, var(--fg) 0%, rgba(244, 239, 230, 0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display .line { display: block; opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.display .accent { color: var(--accent); }
.display .accent em {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 640px;
  margin-bottom: 42px;
}
.lede em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 720px) {
  .hero { padding: 130px 0 80px; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-faint);
}
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--fg-faint));
  animation: scroll-tick 2s ease-in-out infinite;
}
@keyframes scroll-tick {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* HERO PROOF — small stats row inside hero */
.hero-proof {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--bg-line);
}
.hero-proof li {
  display: flex; flex-direction: column; gap: 6px;
  align-items: baseline;
}
.hero-proof-num {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
}
.hero-proof-num.hero-proof-inf { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.hero-proof-pct {
  font-size: clamp(20px, 2vw, 28px);
  color: var(--accent);
  font-weight: 700;
  margin-left: 4px;
  align-self: flex-start;
  margin-top: 6px;
}
.hero-proof-label {
  font-size: 13px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.hero-proof-label em { font-family: var(--font-serif); font-style: italic; color: var(--fg); }
@media (max-width: 720px) {
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-proof-num { font-size: 28px; }
}

/* MARQUEE */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  overflow: hidden;
  padding: 36px 0;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(244, 239, 230, 0.16);
}
.marquee-track em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.marquee-x {
  color: var(--accent);
  font-weight: 400;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 144px 0; position: relative; z-index: 1; }
@media (max-width: 720px) { section { padding: 80px 0; } }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.section-h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 1040px;
}
.section-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.section-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--fg-dim);
  max-width: 720px;
  line-height: 1.55;
}
.section-lede em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
}

/* EQUATION */
.equation { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%); }
.equation-board {
  margin-top: 80px;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.equation-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 0%, rgba(255, 230, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.eq-display {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.eq-var {
  color: var(--fg);
  background: rgba(255, 230, 0, 0.06);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-md);
  padding: 12px 28px;
  min-width: 110px;
  text-align: center;
  transition: background var(--d-norm) var(--ease-expo), border-color var(--d-norm) var(--ease-expo), transform var(--d-norm) var(--ease-expo);
}
.eq-var.tuned { background: rgba(255, 230, 0, 0.18); transform: scale(1.04); }
.eq-op { color: var(--accent); }
.eq-result {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: var(--r-md);
  padding: 12px 36px;
  min-width: 160px;
  text-align: center;
  transition: background var(--d-norm) var(--ease-expo);
  box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.5);
}
.eq-board-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  border-bottom: 1px solid var(--bg-line);
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
}
.eq-board-label { color: var(--fg-faint); }
.eq-board-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
}
.eq-board-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}

.eq-readout-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 8px auto 16px;
  max-width: 720px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.eq-readout-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}
.eq-readout-bar {
  height: 6px;
  background: rgba(244, 239, 230, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.eq-readout-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  width: 0.9%;
  transition: width 600ms var(--ease-expo);
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.5);
}
.eq-readout-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  font-feature-settings: "tnum";
}

.eq-controls {
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.eq-control {
  display: grid;
  gap: 10px;
}
.eq-label-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: baseline;
}
.eq-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.eq-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.eq-readout {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.eq-hint {
  font-size: 13px;
  color: var(--fg-faint);
  font-family: var(--font-sans);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(244, 239, 230, 0.1);
  border-radius: 999px;
  width: 100%;
  outline: none;
  cursor: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.18), 0 0 16px rgba(255, 230, 0, 0.4);
  cursor: none;
  transition: transform var(--d-quick) var(--ease-expo);
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.18);
}
.eq-caveat {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-faint);
  text-align: center;
  margin-top: -12px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* THREE-STEP */
.three-step {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--d-norm) var(--ease-expo), transform var(--d-norm) var(--ease-expo);
}
.step::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.06) 0%, transparent 60%);
  transform: translate(40%, -40%);
  transition: transform var(--d-slow) var(--ease-expo);
}
.step:hover {
  border-color: var(--accent-line);
  transform: translateY(-4px);
}
.step:hover::after { transform: translate(20%, -20%) scale(1.4); }
.step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.step h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}
.step h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--accent); }
.step p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .equation-board { padding: 32px 22px; }
  .three-step { grid-template-columns: 1fr; }
  .eq-display { font-size: 56px; gap: 10px; }
  .eq-var, .eq-result { padding: 10px 18px; min-width: auto; }
  .eq-label-row { grid-template-columns: auto 1fr auto; gap: 8px; }
  .eq-name { font-size: 13px; }
}

/* SCORE PREVIEW */
.score-preview {
  margin-top: 96px;
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  overflow: hidden;
}
.score-preview-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--bg-line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.score-preview-label { color: var(--fg-faint); }
.score-preview-meta { color: var(--fg-faint); font-style: italic; }
.score-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--bg-line);
}
.score-card {
  padding: 32px 28px;
  border-right: 1px solid var(--bg-line);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
}
.score-card:last-child { border-right: none; }
.score-card-primary { background: rgba(244, 239, 230, 0.02); }
.score-card-gap { background: rgba(255, 230, 0, 0.05); }
.score-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
}
.score-card-num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  font-feature-settings: "tnum";
  display: inline-flex; align-items: baseline;
}
.score-card-num.score-card-potential { color: var(--accent); }
.score-card-of {
  font-size: 0.4em;
  color: var(--fg-faint);
  margin-left: 6px;
  font-weight: 600;
}
.score-card-gap .score-card-num { color: var(--accent); }
.score-card-bar {
  height: 5px;
  background: rgba(244, 239, 230, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.score-card-fill {
  height: 100%;
  background: var(--fg-dim);
  border-radius: 999px;
  transition: width 1200ms var(--ease-expo);
}
.score-card-fill-warm {
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.4);
}
.score-card-tag {
  font-size: 13px;
  color: var(--fg-dim);
}
.score-list { padding: 24px 28px; display: grid; gap: 14px; }
.score-row {
  display: grid;
  grid-template-columns: 24px 1fr 200px 50px;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}
.score-row-tag { color: var(--accent); font-weight: 700; font-size: 18px; }
.score-row-name { color: var(--fg); font-weight: 500; }
.score-row-bar {
  display: block;
  height: 4px;
  background: rgba(244, 239, 230, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.score-row-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  border-radius: 999px;
}
.score-row-lift {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}
.score-row-faint .score-row-tag,
.score-row-faint .score-row-name,
.score-row-faint .score-row-lift { color: var(--fg-faint); }
@media (max-width: 820px) {
  .score-preview-grid { grid-template-columns: 1fr; }
  .score-card { border-right: none; border-bottom: 1px solid var(--bg-line); padding: 24px; }
  .score-card:last-child { border-bottom: none; }
  .score-row { grid-template-columns: 20px 1fr 80px; }
  .score-row-bar { display: none; }
}

/* DIVIDER X */
.divider-x-section {
  text-align: center;
  padding: 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.divider-x-section::before, .divider-x-section::after {
  content: "";
  position: absolute;
  top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-line), transparent);
  width: 35%;
}
.divider-x-section::before { left: 0; }
.divider-x-section::after { right: 0; }
.divider-x {
  font-size: 96px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-sans);
  line-height: 1;
  display: inline-block;
  animation: x-drift 8s ease-in-out infinite;
}
@keyframes x-drift {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* ROBIN HOOD CENTERPIECE */
.robin-hood {
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(255, 230, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #050507 100%);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  position: relative;
  overflow: hidden;
  padding: 192px 0;
}
.rh-bg-x {
  position: absolute;
  font-size: clamp(400px, 60vw, 900px);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.05;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.rh-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.rh-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
.rh-tag-stack {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 28px;
}
.rh-line {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
}
.rh-line:first-child { color: var(--accent); }
.manifesto-pull {
  margin-top: 64px;
  display: grid;
  gap: 28px;
  max-width: 760px;
}
.rh-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--accent-line), transparent);
  width: 64px;
}
.rh-amp {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  margin: 0 8px;
}
@media (max-width: 920px) {
  .rh-grid { grid-template-columns: 1fr; gap: 24px; }
  .rh-side { position: static; }
  .robin-hood { padding: 96px 0; }
}
.manifesto {
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 1100px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.manifesto em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.robin-hood-detail {
  display: grid;
  gap: 28px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.rh-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg-dim);
  line-height: 1.55;
}
.rh-tag {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.rh-tag em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.rh-tag-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}
.rh-credit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--accent);
  margin-top: 8px;
}

/* ENGAGE — depth selector */
.engage { background: var(--bg); }
.depth-selector {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}
.depth-rail {
  display: grid;
  gap: 6px;
  position: sticky;
  top: 110px;
}
.depth-tab {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--bg-line);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--fg-dim);
  text-align: left;
  cursor: none;
  transition: background var(--d-norm) var(--ease-expo), border-color var(--d-norm) var(--ease-expo), color var(--d-norm) var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.depth-tab::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--d-norm) var(--ease-expo);
}
.depth-tab:hover {
  border-color: var(--accent-line);
  color: var(--fg);
}
.depth-tab.depth-active {
  background: rgba(255, 230, 0, 0.04);
  border-color: var(--accent-line);
  color: var(--fg);
}
.depth-tab.depth-active::before {
  transform: scaleY(1);
}
.depth-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.depth-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.depth-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  border: 1px solid var(--bg-line);
  border-radius: 999px;
  padding: 4px 10px;
}
.depth-active .depth-tag {
  color: var(--accent);
  border-color: var(--accent-line);
}

.depth-panels {
  position: relative;
  min-height: 360px;
}
.depth-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 16px 0;
  animation: panel-fade 600ms var(--ease-expo);
}
.depth-panel.depth-panel-active {
  display: flex;
}
.depth-headline {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 8px;
}
.depth-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.depth-body {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 620px;
}
.depth-body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--fg);
}
.depth-panel .cta {
  margin-top: 12px;
  align-self: flex-start;
}
@keyframes panel-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 920px) {
  .depth-selector { grid-template-columns: 1fr; gap: 40px; }
  .depth-rail { position: static; }
  .depth-tab { grid-template-columns: 32px 1fr auto; padding: 14px 16px; gap: 10px; }
  .depth-name { font-size: 15px; }
}

/* legacy engage-rail (kept for back-compat) */
.engage-rail {
  margin-top: 80px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--bg-line);
}
.engage-row {
  display: grid;
  grid-template-columns: 60px 1fr 160px;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--bg-line);
  transition: background var(--d-norm) var(--ease-expo);
  position: relative;
}
.engage-row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-slow) var(--ease-expo);
}
.engage-row:hover { background: rgba(255, 230, 0, 0.02); }
.engage-row:hover::before { transform: scaleX(1); }
.engage-feature { padding: 56px 0; }
.engage-feature h3 { font-size: clamp(28px, 3vw, 40px); }
.engage-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.engage-body h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.engage-body p {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.55;
  max-width: 640px;
}
.engage-body p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--fg);
}
.engage-detail {
  margin-top: 12px;
  font-style: italic;
  color: var(--fg-faint) !important;
  font-size: 14px !important;
}
.engage-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  text-align: center;
  align-self: start;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .engage-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .engage-feature { padding: 40px 0; }
  .engage-tag { justify-self: start; }
}

/* VENTURES */
.ventures { background: var(--bg-elevated); position: relative; }
.venture-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.venture {
  background: var(--bg);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 36px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--d-norm) var(--ease-expo), transform var(--d-norm) var(--ease-expo);
  display: grid;
  gap: 16px;
}
.venture:hover {
  border-color: var(--accent-line);
  transform: translateY(-4px);
}
.venture-header {
  display: flex; justify-content: space-between; align-items: center;
}
.venture-mark {
  font-size: 38px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-sans);
}
.venture-tag-row { display: inline-flex; gap: 12px; align-items: center; }
.venture-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
}
.venture-mock {
  margin: 4px 0 12px;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-md);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.venture-mock-bar {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.venture-mock-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: rgba(255, 230, 0, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent-line);
}
.venture-mock-pill-dim {
  background: rgba(244, 239, 230, 0.04);
  color: var(--fg-dim);
  border-color: var(--bg-line);
}
.venture-mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(244, 239, 230, 0.08);
  width: 80%;
}
.venture-mock-line-short { width: 50%; }
.venture-mock-line-mid { width: 65%; background: rgba(255, 230, 0, 0.15); }
.venture-mock-empty {
  min-height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.venture-mock-cipher {
  font-family: var(--font-mono);
  color: var(--fg-faint);
  letter-spacing: 0.4em;
  font-size: 18px;
}
.venture h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 4px;
}
.venture p {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.55;
}
.venture-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  border: 1px solid var(--bg-line);
  border-radius: 999px;
  padding: 4px 10px;
}
.venture-status-live {
  color: var(--accent);
  border-color: var(--accent-line);
  background: rgba(255, 230, 0, 0.06);
}
.venture-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.venture-link {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--d-quick) var(--ease-expo);
  margin-top: 4px;
}
.venture-link:hover { border-color: var(--accent); }
.venture-link-muted { color: var(--fg-faint); cursor: default; }
.venture-placeholder { border-style: dashed; opacity: 0.85; }
.venture-placeholder .venture-mark { opacity: 0.4; }
@media (max-width: 720px) {
  .venture-grid { grid-template-columns: 1fr; }
  .venture { padding: 28px 24px; }
}

/* NZ */
.nz { background: var(--bg); }
.nz-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.nz-stats {
  display: grid;
  gap: 40px;
}
.nz-stats > div { display: flex; flex-direction: column; gap: 12px; }
.nz-num {
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--accent);
  font-feature-settings: "tnum";
}
.nz-num .pct { font-size: 0.4em; color: var(--fg); margin-left: 4px; font-weight: 600; }
.nz-stats p { color: var(--fg-dim); font-size: 15px; max-width: 360px; line-height: 1.55; }
@media (max-width: 920px) {
  .nz-grid { grid-template-columns: 1fr; gap: 56px; }
  .nz-stats { gap: 32px; }
}

/* FOUNDER */
.founder { background: var(--bg-elevated); }
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait-x {
  font-size: 280px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-sans);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 230, 0, 0.4);
}
.portrait-frame {
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--accent-line);
  border-radius: 14px;
  pointer-events: none;
}
.founder-bullets {
  list-style: none;
  margin: 32px 0;
  display: grid;
  gap: 12px;
}
.founder-bullets li {
  font-size: 16px;
  color: var(--fg-dim);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.founder-bullets li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}
.founder-copy .cta { margin-top: 16px; }
@media (max-width: 920px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { max-width: 280px; }
}

/* FOOTER */
.site-footer {
  padding: 56px 0;
  border-top: 1px solid var(--bg-line);
  background: var(--bg);
  position: relative; z-index: 1;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 4px;
}
.footer-brand .brand-x { color: var(--accent); font-size: 22px; transform: translateY(2px); }
.footer-thesis {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-dim);
  text-align: center;
}
.footer-thesis em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  text-align: right;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .footer-row { grid-template-columns: 1fr; text-align: left; gap: 18px; }
  .footer-thesis, .footer-meta { text-align: left; }
}

/* MAGNETIC + REVEAL */
.magnetic { will-change: transform; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1100ms var(--ease-expo), transform 1100ms var(--ease-expo); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .display .line { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  body, button, a { cursor: auto !important; }
  .cursor-x { display: none; }
}
