@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg:        #0a0e1a;
  --bg2:       #10182b;
  --bg3:       #1a2340;
  --surface:   #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef1f7;
  --ink:       #0a0e1a;
  --ink-2:     #1a2340;
  --muted:     rgba(10,14,26,0.65);
  --faint:     rgba(10,14,26,0.10);
  --border:    rgba(10,14,26,0.10);
  --gold:      #c9a24b;
  --gold-2:    #b58e34;
  --blue:      #2049c7;
  --blue-2:    #1a3ba8;
  --blue-3:    #6b8dff;
  --red:       #d0433a;
  --green:     #2b8a5f;
  --amber:     #d38a1f;
  --nav-h:     72px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --r:         14px;
  --r-sm:      8px;
  --shadow:    0 20px 60px -20px rgba(10,14,26,0.15), 0 8px 20px -10px rgba(10,14,26,0.08);
  --shadow-lg: 0 40px 100px -30px rgba(10,14,26,0.25), 0 20px 40px -20px rgba(10,14,26,0.12);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; letter-spacing: -0.005em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(50px, 7.5vw, 104px); font-weight: 500; letter-spacing: -0.015em; line-height: 1.02; }
h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 500; }
h3 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 500; }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.005em; }

p { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--ink-2); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.005em;
}
.nav__brand span.mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
}
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s var(--ease);
}
.nav__links a:hover { background: var(--surface-2); color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 4px;
  font-size: 13px;
  font-weight: 600;
}
.lang-toggle button {
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: all .2s var(--ease);
}
.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  align-items: center; justify-content: center;
}

/* ─── LAYOUT ─── */
.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 32px; }
.container-narrow { width: min(100%, 920px); margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head p { max-width: 720px; margin: 20px auto 0; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 32px 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(201,162,75,0.15), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(32,73,199,0.10), transparent 60%),
    var(--surface);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,14,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,14,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 1000px; }
.hero__meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero__meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(43,138,95,0.15); }
.hero__title { margin-bottom: 28px; }
.hero__title em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.hero__sub { max-width: 720px; margin: 0 auto; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 900px;
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero__stat { text-align: center; }
.hero__stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
}
.hero__stat .l {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 8px;
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line { width: 1px; height: 40px; background: var(--faint); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: var(--gold); animation: scrollDot 2.5s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -20px; } 100% { top: 40px; } }

/* ─── KEY FINDINGS ─── */
#findings { background: var(--surface); }
.findings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: finding;
}
.finding {
  padding: 28px 28px 28px 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  transition: all .3s var(--ease);
  counter-increment: finding;
}
.finding::before {
  content: counter(finding, decimal-leading-zero);
  position: absolute; top: 26px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.finding:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.finding h4 { margin-bottom: 8px; }
.finding p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* ─── MARKET / TIMELINE ─── */
#market { background: var(--surface-2); }
.timeline {
  position: relative;
  padding: 24px 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 100px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, transparent, var(--faint) 10%, var(--faint) 90%, transparent);
}
.tl-item {
  display: grid; grid-template-columns: 100px 40px 1fr; gap: 24px;
  align-items: start;
  padding: 22px 0;
  position: relative;
}
.tl-item .date {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 6px;
}
.tl-item .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--surface-2);
  box-shadow: 0 0 0 2px var(--gold);
  margin-top: 8px;
  justify-self: start;
  margin-left: 13px;
}
.tl-item .body { padding-left: 4px; }
.tl-item .body h4 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.tl-item .body p { font-size: 14px; margin-bottom: 4px; color: var(--ink-2); }
.tl-item .body .amount {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--blue);
  background: rgba(32,73,199,0.08);
  padding: 3px 10px; border-radius: 999px;
  margin-top: 4px;
}

/* Segments */
.segments {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
.seg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.seg .tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin-bottom: 12px; display: block; }
.seg h4 { font-family: 'Inter', sans-serif; font-size: 17px; margin-bottom: 8px; }
.seg .desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.seg .fit {
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  display: inline-block;
}
.seg .fit.high { background: rgba(43,138,95,0.12); color: var(--green); }
.seg .fit.med  { background: rgba(211,138,31,0.12); color: var(--amber); }
.seg .fit.low  { background: rgba(208,67,58,0.12); color: var(--red); }

/* ─── COMPETITORS ─── */
#competitors { background: var(--surface); }
.comp-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px;
}
.comp-tab {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s var(--ease);
}
.comp-tab:hover { border-color: var(--ink); }
.comp-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.comp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.comp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.comp:hover { box-shadow: var(--shadow-lg); border-color: var(--ink); }
.comp[hidden] { display: none; }
.comp__head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.comp__name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; line-height: 1.1; letter-spacing: -0.005em; }
.comp__owner { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; }
.threat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}
.threat.max { background: rgba(208,67,58,0.10); color: var(--red); }
.threat.high { background: rgba(211,138,31,0.10); color: var(--amber); }
.threat.med { background: rgba(32,73,199,0.10); color: var(--blue); }
.threat.low { background: rgba(43,138,95,0.10); color: var(--green); }
.threat.ref { background: rgba(10,14,26,0.08); color: var(--muted); }

.comp__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pill {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 999px;
  color: var(--ink-2);
}
.comp__pitch { font-style: italic; font-size: 14px; color: var(--ink-2); border-left: 3px solid var(--gold); padding: 4px 0 4px 14px; margin-bottom: 16px; }
.comp__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.comp__stat { text-align: left; }
.comp__stat .n { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; line-height: 1; color: var(--ink); }
.comp__stat .l { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 5px; font-weight: 600; }
.comp__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.comp__cols h5 { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.comp__cols .strong h5 { color: var(--green); }
.comp__cols .weak h5 { color: var(--red); }
.comp__cols ul { list-style: none; padding: 0; }
.comp__cols li { font-size: 13px; padding-left: 14px; position: relative; margin-bottom: 6px; color: var(--ink-2); }
.comp__cols li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; }
.comp__cols .strong li::before { background: var(--green); }
.comp__cols .weak li::before { background: var(--red); }
.comp__verdict { padding: 14px 16px; background: var(--surface-2); border-radius: var(--r-sm); border-left: 3px solid var(--ink); font-size: 13.5px; margin-top: auto; }
.comp__verdict strong { font-family: 'Inter', sans-serif; font-weight: 700; }

/* ─── MODELS TABLE ─── */
#models { background: var(--surface-2); }
.table-wrap {
  background: var(--surface); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  overflow-x: auto;
}
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data thead th {
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  white-space: nowrap;
}
table.data tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--ink-2);
  vertical-align: top;
}
table.data tbody tr:hover { background: var(--surface-2); }
table.data .actor { font-weight: 600; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 18px; }
table.data .highlight { background: rgba(201,162,75,0.08); }
table.data .highlight .actor { color: var(--gold-2); }
table.data .num { font-family: 'JetBrains Mono', monospace; font-size: 13px; }

/* ─── PRICING ─── */
#pricing {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 20% 30%, rgba(201,162,75,0.10), transparent 60%);
  pointer-events: none;
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.tier:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tier.featured { border-color: var(--ink); background: var(--ink); color: #fff; }
.tier.featured h3, .tier.featured .price { color: #fff; }
.tier.featured .price small { color: rgba(255,255,255,0.65); }
.tier.featured .tier-desc { color: rgba(255,255,255,0.75); }
.tier.featured ul li { color: rgba(255,255,255,0.85); }
.tier.featured ul li::before { color: var(--gold); }
.tier.featured .badge { background: var(--gold); color: var(--ink); }

.tier .badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tier h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.tier .tier-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; min-height: 40px; }
.tier .price { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; line-height: 1; margin-bottom: 4px; letter-spacing: -0.01em; }
.tier .price small { font-size: 14px; font-weight: 400; color: var(--muted); font-family: 'Inter', sans-serif; }
.tier .price-note { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.tier ul { list-style: none; padding: 0; }
.tier ul li {
  font-size: 14px; padding: 6px 0 6px 24px; position: relative; color: var(--ink-2);
}
.tier ul li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  color: var(--gold-2); font-weight: 700;
}

.pricing-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--surface-2);
  border-radius: var(--r);
  border-left: 4px solid var(--gold);
  font-size: 14.5px;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}
.pricing-note strong { color: var(--ink); }

/* ─── POSITIONING ─── */
#positioning {
  background: var(--bg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#positioning::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 20%, rgba(201,162,75,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(32,73,199,0.20), transparent 60%);
  pointer-events: none;
}
#positioning .container { position: relative; z-index: 1; }
#positioning h2, #positioning h3 { color: #fff; }
#positioning .eyebrow { color: var(--gold); }
.claim {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.005em;
  text-align: center;
  max-width: 940px;
  margin: 0 auto 60px;
  color: #fff;
}
.claim em { color: var(--gold); font-style: italic; font-weight: 500; }

.proofs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.proof .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.proof h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 17px; margin-bottom: 8px; }
.proof p { color: rgba(255,255,255,0.72); font-size: 14px; }

.vs-matrix {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vs {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 22px 24px;
}
.vs .vs-head {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.vs h4 { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.005em; }
.vs p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* ─── ROADMAP ─── */
#roadmap { background: var(--surface-2); }
.phases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.phase::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.phase .stage { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--gold-2); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.phase h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-bottom: 6px; font-weight: 500; letter-spacing: -0.005em; }
.phase .goal { font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 16px; }
.phase p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 12px; }
.phase .milestones { list-style: none; padding: 0; margin-top: 12px; }
.phase .milestones li {
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  padding: 4px 0 4px 16px; position: relative;
}
.phase .milestones li::before { content: '→'; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }

/* ─── PROJECTIONS ─── */
#projections { background: var(--surface); }
.projection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.p-year {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  position: relative;
}
.p-year.y3 { background: var(--ink); color: #fff; border-color: var(--ink); }
.p-year.y3 .year-label, .p-year.y3 h3 { color: var(--gold); }
.p-year.y3 .p-row .k { color: rgba(255,255,255,0.65); }
.p-year.y3 .p-row .v { color: #fff; }
.p-year .year-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.15em;
  color: var(--gold-2); font-weight: 700; text-transform: uppercase;
}
.p-year h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; margin-bottom: 24px; letter-spacing: -0.005em; }
.p-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.p-year.y3 .p-row { border-top-color: rgba(255,255,255,0.10); }
.p-row .k { color: var(--muted); font-size: 13px; }
.p-row .v { font-family: 'JetBrains Mono', monospace; font-weight: 600; color: var(--ink); }

/* ─── CTA / FOOTER ─── */
#synthesis {
  background: var(--bg);
  color: #fff;
  text-align: center;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
#synthesis::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(1000px 500px at 50% 0%, rgba(201,162,75,0.14), transparent 60%);
}
#synthesis .container { position: relative; z-index: 1; }
#synthesis h2 { color: #fff; margin-bottom: 32px; }
#synthesis .eyebrow { color: var(--gold); }
#synthesis p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.7; margin-bottom: 20px; max-width: 780px; margin-left: auto; margin-right: auto; }
#synthesis .final {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--gold);
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #05080f;
  color: rgba(255,255,255,0.55);
  padding: 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  text-align: center;
}
.footer strong { color: #fff; }

/* ─── UTILITIES ─── */
.badges { display: inline-flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.badges span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
}
.b-v { background: rgba(43,138,95,0.12); color: var(--green); }
.b-e { background: rgba(211,138,31,0.12); color: var(--amber); }
.b-h { background: rgba(32,73,199,0.12); color: var(--blue); }

.legend {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.legend .item { display: inline-flex; align-items: center; gap: 6px; }
.legend .item .sw { width: 12px; height: 12px; border-radius: 3px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 12px;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
  }
  .nav.open .nav__links a { padding: 14px 16px; border-radius: 8px; }

  section { padding: 72px 0; }
  .findings-grid,
  .comp-grid,
  .tiers,
  .proofs,
  .phases,
  .projection-grid,
  .segments,
  .vs-matrix { grid-template-columns: 1fr; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 60px 24px 1fr; gap: 12px; }
  .tl-item .date { font-size: 11px; text-align: left; }
  .tl-item .dot { margin-left: 5px; }
  .comp__cols { grid-template-columns: 1fr; }
  .comp__stats { grid-template-columns: repeat(3, 1fr); }
  .container, .container-narrow { padding: 0 20px; }
  #synthesis { padding: 80px 20px; }
}

@media (max-width: 520px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .comp__stats { grid-template-columns: 1fr 1fr; }
  .finding { padding: 24px 20px 24px 64px; }
  .finding::before { top: 24px; left: 20px; font-size: 26px; }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
