/* ============ TOKENS ============ */
:root {
  --slate: #1F3A5C;
  --slate-d: #142944;
  --slate-l: #2E4D70;
  --gold: #B8985C;
  --gold-d: #9A7E47;
  --gold-l: #D5BB85;
  --green-d: #1D7B5C;
  --green-m: #4FA37D;
  --green-l: #87C195;
  --red-d: #A03838;
  --red-m: #C44747;
  --amber: #C49230;

  --bg: #FAF7F0;
  --bg-warm: #F5F0E4;
  --bg-cool: #F2F2EC;
  --bg-cream: #FBF9F2;
  --paper: #FFFFFF;
  --ink: #1A1F2A;
  --ink-2: #4A5260;
  --ink-3: #7A8290;
  --rule: #E5DDC4;
  --rule-soft: #ECE6D2;
  --rule-cool: #DCDCD4;

  --font-sans: "Geist", "Söhne", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --shadow-1: 0 1px 2px rgba(20,41,68,0.04), 0 2px 8px rgba(20,41,68,0.04);
  --shadow-2: 0 2px 6px rgba(20,41,68,0.06), 0 8px 28px rgba(20,41,68,0.08);
  --shadow-3: 0 12px 40px rgba(20,41,68,0.14), 0 2px 8px rgba(20,41,68,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ TYPE ============ */
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--slate); }
.display.lg { font-size: clamp(34px, 4.4vw, 56px); }
.display.light { color: #F5EFE0; }
.display.light em { color: var(--gold-l); }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 22px;
}
.eyebrow.light { color: var(--gold-l); }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-d); animation: pulse 2.4s infinite; }
.eyebrow.light .eyebrow-dot { background: var(--gold); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin: 0 0 18px;
}

.section-h { max-width: 820px; margin-bottom: 56px; }
.section-sub { font-size: 16px; color: var(--ink-2); max-width: 640px; margin: 0; line-height: 1.6; text-wrap: pretty; }

/* ============ BUTTONS ============ */
.primary, .ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500;
  font-size: 13.5px; letter-spacing: 0.005em;
  padding: 10px 18px; border-radius: 3px;
  cursor: pointer; transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.primary { background: var(--slate); color: white; box-shadow: var(--shadow-1); }
.primary:hover { background: var(--slate-d); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.primary.lg { padding: 14px 24px; font-size: 15px; border-radius: 3px; }
.primary.block { display: flex; width: 100%; }
.ghost { color: var(--slate); border-color: var(--rule); background: transparent; }
.ghost:hover { border-color: var(--slate); background: var(--paper); }
.ghost.lg { padding: 14px 24px; font-size: 15px; }
.ghost.block { display: flex; width: 100%; }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.topbar.scrolled { border-bottom-color: var(--rule); box-shadow: 0 1px 0 rgba(20,41,68,0.02); }
.topbar-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 500;
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--slate); color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; font-weight: 400;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
}
.brand-name { font-size: 15px; letter-spacing: -0.01em; font-weight: 600; color: var(--slate); }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 2px 7px;
  background: rgba(184,152,92,0.10);
  border: 0.5px solid var(--rule);
  border-radius: 999px;
  margin-left: 4px;
}

.topnav { display: flex; gap: 28px; justify-content: center; }
.topnav a {
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color 0.15s ease;
}
.topnav a:hover { color: var(--slate); }
.topnav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

.topbar-cta { display: flex; align-items: center; gap: 12px; }
.topbar-cta .ghost { padding: 8px 14px; font-size: 13px; border-color: transparent; }
.topbar-cta .primary { padding: 8px 14px; font-size: 13px; }

/* ticker */
.ticker {
  background: var(--slate);
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-mono);
}
.ticker-row {
  display: flex; gap: 28px; align-items: center;
  height: 32px;
  font-size: 11px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ticker-row::-webkit-scrollbar { display: none; }
.tk { display: inline-flex; gap: 8px; align-items: baseline; white-space: nowrap; }
.tk-l { color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.tk b { color: white; font-weight: 500; font-variant-numeric: tabular-nums; }
.tk em { font-style: normal; font-size: 10px; }
.tk em.up { color: #87C195; }
.tk em.dn { color: #E58A8A; }
.tk.live { margin-left: auto; color: rgba(255,255,255,0.65); }
.tk.live .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #87C195; margin-right: 6px; vertical-align: middle; animation: pulse 2.4s infinite; }

/* ============ HERO ============ */
.hero { padding: 72px 0 96px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(184,152,92,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(31,58,92,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-copy { min-width: 0; }
.hero-cta { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.hero-bullets li {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.005em;
  line-height: 1.4;
}
.hero-bullets b {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  font-variant-numeric: tabular-nums;
}

/* hero visual / mockcard */
.hero-visual { position: relative; min-width: 0; }
.mockcard {
  background: var(--paper);
  border: 0.5px solid var(--rule-cool);
  border-radius: 4px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mock-h {
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate-l) 100%);
  color: white;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.mock-brand { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13px; }
.mock-mark {
  width: 22px; height: 22px;
  background: var(--gold); color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 400; font-size: 14px;
  border-radius: 3px;
}
.mock-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; opacity: 0.7; padding: 2px 7px; background: rgba(255,255,255,0.10); border-radius: 8px; margin-left: 4px; }
.mock-meta { text-align: right; font-size: 10.5px; line-height: 1.4; }
.mock-meta b { font-size: 14px; font-variant-numeric: tabular-nums; font-weight: 600; }
.mock-meta span { opacity: 0.7; }

.mock-tabs {
  display: flex; gap: 0;
  border-bottom: 0.5px solid var(--rule-cool);
  background: var(--bg-cool);
  padding: 0 12px;
}
.mock-tab {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  padding: 10px 14px;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
}
.mock-tab.active { color: var(--slate); border-bottom-color: var(--gold); background: var(--paper); }

.mock-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--rule-cool);
}
.mock-stat-row > div {
  padding: 12px 16px;
  border-right: 0.5px solid var(--rule-cool);
}
.mock-stat-row > div:last-child { border-right: none; }
.mock-stat-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 4px; }
.mock-stat-v { font-family: var(--font-serif); font-size: 22px; color: var(--slate); margin: 0; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

.mock-chart { display: block; width: 100%; height: 220px; padding: 12px 8px 0; }
.mock-legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-3);
  padding: 8px 18px;
  border-top: 0.5px solid var(--rule-soft);
}
.mock-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 1px; margin-right: 6px; vertical-align: middle; }
.mock-foot {
  background: var(--bg-cool);
  border-top: 0.5px solid var(--rule-cool);
  display: flex; justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-3);
}

.annot {
  position: absolute;
  background: var(--paper);
  border: 0.5px solid var(--rule);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 2px;
  box-shadow: var(--shadow-2);
  max-width: 220px;
  z-index: 2;
}
.annot-l { font-size: 12.5px; font-weight: 600; color: var(--slate); margin: 0 0 2px; letter-spacing: -0.005em; }
.annot-d { font-size: 11.5px; color: var(--ink-2); margin: 0; line-height: 1.4; }
.annot-1 { top: 22%; left: -28px; transform: translateX(-10%); }
.annot-2 { bottom: 12%; right: -32px; }

/* ============ STRIP / SECTION ============ */
.strip {
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  background: var(--bg-cream);
  padding: 22px 0;
}
.strip-row {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  justify-content: space-between;
}
.strip-l {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.strip-logo {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--slate);
  font-weight: 600;
  opacity: 0.55;
}
.strip-logo.serif { font-family: var(--font-serif); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; }

.section { padding: 110px 0; position: relative; }
.section.thesis { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%); }
.section.product { background: var(--bg-cream); border-top: 0.5px solid var(--rule); border-bottom: 0.5px solid var(--rule); }
.section.method { background: var(--slate); color: rgba(255,255,255,0.92); }
.section.method .section-eyebrow { color: var(--gold-l); }
.section.method .display { color: white; }
.section.method .section-sub { color: rgba(255,255,255,0.7); }
.section.data { background: var(--bg-cream); }
.section.investors { background: var(--bg); }
.section.roadmap { background: var(--bg-cream); border-top: 0.5px solid var(--rule); }
.section.pricing { background: var(--bg); }
.section.faq { background: var(--bg-cream); border-top: 0.5px solid var(--rule); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

/* ============ THESIS ============ */
.thesis-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.thesis-body p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 18px; text-wrap: pretty; }
.thesis-body p:last-child { margin-bottom: 0; }
.thesis-body b { color: var(--slate); }

.bigstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
}
.bigstat {
  background: var(--paper);
  padding: 28px 24px;
}
.bigstat-v {
  font-family: var(--font-serif);
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--slate);
  margin: 0 0 8px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bigstat-l {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.4;
}
.bigstat-l span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============ PRODUCT PILLARS ============ */
.pillar {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 56px;
  padding: 56px 0;
  border-top: 0.5px solid var(--rule);
  align-items: start;
}
.pillar:last-child { border-bottom: 0.5px solid var(--rule); }
.pillar.reverse .pillar-body { order: 1; }
.pillar.reverse .pillar-mock { order: 0; }

.pillar-meta {
  display: flex; flex-direction: column; gap: 10px;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.pillar-body h3 {
  font-size: 38px;
  margin: 0 0 12px;
  color: var(--slate);
  letter-spacing: -0.015em;
}
.pillar-lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 20px;
  line-height: 1.5;
  text-wrap: pretty;
}
.pillar-feat {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pillar-feat li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.pillar-feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.pillar-feat b { color: var(--slate); font-weight: 600; }

/* product mocks */
.pmock {
  background: var(--paper);
  border: 0.5px solid var(--rule);
  border-radius: 3px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.pmock-h {
  background: var(--slate);
  color: white;
  padding: 10px 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
}
.pmock-h span { letter-spacing: 0.16em; opacity: 0.7; }
.pmock-h b { font-family: var(--font-sans); font-size: 13px; font-weight: 500; }

.pmock-projection .pmock-bands {
  position: relative; height: 140px;
  background: linear-gradient(180deg, #FAF7F0 0%, #F8F3E5 100%);
  padding: 12px 16px;
}
.pmock-bands .band {
  position: absolute; left: 16px; right: 16px;
  height: 2px; border-radius: 1px;
  background: var(--green-d);
}
.pmock-bands .band.p95 { top: 24px; opacity: 0.4; }
.pmock-bands .band.p75 { top: 50px; opacity: 0.6; }
.pmock-bands .band.p50 { top: 76px; opacity: 1; height: 3px; background: var(--slate); }
.pmock-bands .band.p25 { top: 100px; opacity: 0.6; }
.pmock-bands .band.p5  { top: 122px; opacity: 0.4; }
.band-labels {
  position: absolute; right: 18px; top: 12px; bottom: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono); font-size: 9px; color: var(--ink-3);
}
.pmock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 16px;
  font-size: 13px;
  border-top: 0.5px solid var(--rule-soft);
}
.pmock-row span { color: var(--ink-2); }
.pmock-row b { color: var(--slate); font-weight: 600; }
.pmock-row .pos { color: var(--green-d); }
.pmock-row .neg { color: var(--red-d); }

/* tx mock */
.tx-mock-row {
  display: grid;
  grid-template-columns: 78px 80px 1fr 50px 70px;
  gap: 8px;
  padding: 8px 14px;
  font-size: 11.5px;
  align-items: center;
  border-top: 0.5px solid var(--rule-soft);
}
.tx-mock-row .dt { color: var(--ink-3); font-family: var(--font-mono); font-size: 10.5px; }
.tx-mock-row .ac { color: var(--ink-2); }
.tx-mock-row .sec { color: var(--slate); font-weight: 500; }
.tx-mock-row .ty {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.08em; padding: 2px 6px; border-radius: 2px;
  text-align: center;
}
.tx-mock-row .ty.buy { background: #E5F2EA; color: var(--green-d); }
.tx-mock-row .ty.sell { background: #FBE6E6; color: var(--red-d); }
.tx-mock-row .ty.div { background: #DCEEE5; color: var(--green-d); }
.tx-mock-row .ty.fee { background: #F5F0DA; color: var(--amber); }
.tx-mock-row .amt { text-align: right; color: var(--slate); font-weight: 600; }
.tx-mock-row .amt.pos { color: var(--green-d); }
.tx-mock-row .amt.neg { color: var(--red-d); }

/* risk mock */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-soft);
}
.risk-cell {
  background: var(--paper);
  padding: 10px 12px;
}
.rl {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 3px;
}
.rl.small { letter-spacing: 0.14em; margin-bottom: 6px; }
.rv {
  font-family: var(--font-serif);
  font-size: 20px; color: var(--slate); margin: 0;
  letter-spacing: -0.01em;
}
.rv.neg { color: var(--red-d); }
.rv.amber { color: var(--gold-d); }
.risk-alloc { padding: 14px 16px; border-top: 0.5px solid var(--rule-soft); }
.alloc-bar {
  display: flex; height: 18px; border-radius: 2px; overflow: hidden;
  font-family: var(--font-mono); font-size: 9.5px;
}
.alloc-bar span { display: flex; align-items: center; justify-content: center; color: white; padding: 0 6px; min-width: 18px; }

/* ============ METHOD ============ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 2px;
}
.method-card {
  background: var(--slate);
  padding: 32px 26px;
  position: relative;
}
.method-num {
  font-family: var(--font-serif);
  font-size: 36px; color: var(--gold);
  display: block; margin-bottom: 18px;
  line-height: 1;
}
.method-card h4 { font-size: 22px; margin: 0 0 10px; color: white; letter-spacing: -0.01em; }
.method-card p { font-size: 13.5px; color: rgba(255,255,255,0.72); margin: 0 0 18px; line-height: 1.55; }
.method-eq {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gold-l);
  background: rgba(255,255,255,0.04);
  padding: 6px 10px;
  border-radius: 2px;
  border: 0.5px solid rgba(184,152,92,0.20);
}
.method-foot {
  margin-top: 48px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 2px;
}
.method-foot p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.method-foot a { color: var(--gold-l); border-bottom: 0.5px solid var(--gold); }
.method-foot a:hover { color: white; }

/* ============ DATA ============ */
.data-lede { font-size: 17px; color: var(--ink-2); line-height: 1.6; max-width: 460px; }
.data-list {
  border-top: 0.5px solid var(--rule);
}
.data-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: baseline;
}
.data-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-d);
}
.data-v {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* ============ INVESTORS ============ */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  margin-bottom: 72px;
}
.inv-card { background: var(--paper); padding: 24px 22px; }
.inv-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.inv-v { font-family: var(--font-serif); font-size: 28px; color: var(--slate); margin: 0 0 4px; letter-spacing: -0.015em; }
.inv-s { font-size: 12px; color: var(--ink-2); margin: 0; line-height: 1.45; }

.traction { margin-bottom: 72px; }
.traction h3 { font-size: 26px; color: var(--slate); margin: 0 0 24px; padding-bottom: 12px; border-bottom: 0.5px solid var(--gold); }
.traction-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.traction-cell { padding: 8px 0; }
.trc-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.trc-bar { height: 4px; background: var(--rule-soft); border-radius: 2px; overflow: hidden; margin-bottom: 8px; }
.trc-bar > div { height: 100%; transition: width 0.6s ease; }
.trc-v { font-family: var(--font-serif); font-size: 26px; color: var(--slate); margin: 0; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.trc-v span { font-family: var(--font-sans); font-size: 11px; color: var(--ink-3); margin-left: 8px; letter-spacing: 0; font-variant-numeric: normal; }

.team h3 { font-size: 26px; color: var(--slate); margin: 0 0 24px; padding-bottom: 12px; border-bottom: 0.5px solid var(--gold); }
.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member {
  background: var(--paper);
  border: 0.5px solid var(--rule);
  padding: 20px;
  border-radius: 3px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-serif); font-size: 22px;
  margin-bottom: 14px;
}
.m-n { font-size: 15px; font-weight: 600; color: var(--slate); margin: 0 0 2px; }
.m-r { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold-d); margin: 0 0 10px; }
.m-b { font-size: 12.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }

.quote-block {
  background: var(--slate);
  color: white;
  padding: 48px 56px;
  border-radius: 3px;
  margin-top: 72px;
  position: relative;
  background-image: linear-gradient(135deg, var(--slate) 0%, var(--slate-l) 100%);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 90px;
  color: var(--gold);
  line-height: 0.7;
  margin: 0 0 8px;
}
.quote-t {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 24px;
  max-width: 920px;
  text-wrap: balance;
}
.quote-a { font-size: 13px; color: var(--gold-l); margin: 0; letter-spacing: 0.005em; }
.quote-a b { color: white; font-weight: 500; }

/* ============ ROADMAP ============ */
.rm-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.rm-rail::before {
  content: "";
  position: absolute;
  top: 12px; left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}
.rm-stage {
  padding: 0 16px 0 0;
  position: relative;
}
.rm-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-cream);
  border: 1.5px solid var(--rule);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.rm-stage.shipped .rm-dot { background: var(--green-d); border-color: var(--green-d); }
.rm-stage.active .rm-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,152,92,0.18); }
.rm-when { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-3); margin: 0 0 4px; }
.rm-status { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-3); margin: 0 0 12px; }
.rm-stage.shipped .rm-status { color: var(--green-d); }
.rm-stage.active .rm-status { color: var(--gold-d); }
.rm-stage h4 { font-size: 19px; color: var(--slate); margin: 0 0 8px; letter-spacing: -0.01em; }
.rm-stage p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ============ PRICING ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.price-card {
  background: var(--paper);
  border: 0.5px solid var(--rule);
  border-radius: 3px;
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--slate);
  color: white;
  border-color: var(--slate);
  box-shadow: var(--shadow-3);
  transform: translateY(-8px);
}
.price-card.featured .pc-name,
.price-card.featured .pc-price { color: white; }
.price-card.featured .pc-price span,
.price-card.featured .pc-d { color: rgba(255,255,255,0.7); }
.price-card.featured ul li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.10); }
.price-card.featured ul li::before { background: var(--gold); }
.price-card.featured .primary { background: var(--gold); color: var(--slate-d); }
.price-card.featured .primary:hover { background: var(--gold-l); }
.pc-tag {
  position: absolute; top: -10px; left: 28px;
  background: var(--gold); color: var(--slate-d);
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em;
  padding: 4px 10px; border-radius: 2px;
}
.pc-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-d); margin: 0 0 12px; }
.pc-price { font-family: var(--font-serif); font-size: 42px; color: var(--slate); margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1; }
.pc-price span { font-size: 14px; color: var(--ink-3); letter-spacing: 0; font-family: var(--font-sans); }
.pc-d { font-size: 13px; color: var(--ink-2); margin: 0 0 20px; line-height: 1.5; min-height: 60px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card ul li {
  font-size: 13px; color: var(--ink-2);
  padding: 10px 0 10px 22px;
  border-top: 0.5px solid var(--rule-soft);
  position: relative;
}
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 1px; background: var(--gold);
}
.price-card a { margin-top: auto; }

/* ============ FAQ ============ */
.faq-grid { align-items: start; }
.faq-list details {
  border-top: 0.5px solid var(--rule);
  padding: 18px 0;
}
.faq-list details:last-child { border-bottom: 0.5px solid var(--rule); }
.faq-list summary {
  font-size: 16px; font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.2s ease;
  line-height: 0.8;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 620px;
  text-wrap: pretty;
}
.faq-list p i { color: var(--slate); }

/* ============ CTA ============ */
.cta {
  background: var(--slate);
  background-image:
    radial-gradient(800px 400px at 90% 110%, rgba(184,152,92,0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(255,255,255,0.05), transparent 60%);
  color: white;
  padding: 96px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.78); margin: 0; max-width: 480px; line-height: 1.55; }
.cta-sub.light { color: rgba(255,255,255,0.78); }
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 28px;
}
.cta-form label {
  display: block;
  margin-bottom: 14px;
}
.cta-form label span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.cta-form input[type=email],
.cta-form select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}
.cta-form input[type=email]:focus,
.cta-form select:focus { outline: 1.5px solid var(--gold); border-color: var(--gold); }
.cta-form select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><path d="M2 4l3 3 3-3" fill="none" stroke="%23B8985C" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.cta-form .check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  cursor: pointer;
}
.cta-form .check input { width: auto; accent-color: var(--gold); }
.cta-form .primary { background: var(--gold); color: var(--slate-d); }
.cta-form .primary:hover { background: var(--gold-l); }
.cta-form .primary:disabled { opacity: 0.7; }
.cta-fine {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--slate-d);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer .brand-name { color: white; }
.footer .brand-mark { background: var(--gold); color: var(--slate-d); }
.footer-addr {
  margin: 18px 0 24px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.footer-addr a { color: var(--gold-l); border-bottom: 0.5px solid rgba(184,152,92,0.4); }
.footer-fine {
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  max-width: 380px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-cols a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.footer-cols a:hover { color: var(--gold-l); }
.fc-h {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-d);
  margin: 0 0 12px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #87C195; box-shadow: 0 0 0 3px rgba(135,193,149,0.18); animation: pulse 2.4s infinite; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-bullets { grid-template-columns: repeat(2, 1fr); }
  .annot-1, .annot-2 { display: none; }
  .topnav { display: none; }
  .topbar-row { grid-template-columns: 1fr auto; }
  .thesis-grid, .two-col, .cta-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .bigstats { grid-template-columns: repeat(2, 1fr); }
  .pillar { grid-template-columns: 1fr; gap: 24px; }
  .pillar.reverse .pillar-body { order: 0; }
  .pillar.reverse .pillar-mock { order: 1; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .rm-rail { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rm-rail::before { display: none; }
  .traction-row { grid-template-columns: 1fr 1fr; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .inv-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .display { font-size: clamp(34px, 8vw, 48px); }
  .quote-block { padding: 32px; }
  .quote-t { font-size: 22px; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .bigstats { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .rm-rail, .traction-row, .team-row, .inv-grid, .footer-cols { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: 1fr; gap: 4px; }
  .pillar-meta { flex-direction: row; gap: 16px; align-items: center; }
  .topbar-cta .ghost { display: none; }
  .ticker-row { gap: 18px; }
}
