/* ============================================================
   AdCab — clinical biotech investor site
   Navy + magenta · Schibsted Grotesk + IBM Plex Mono
   ============================================================ */

:root {
  --navy:        #0E2841;
  --navy-800:    #112e49;
  --navy-700:    #16395a;
  --navy-600:    #1d4f73;
  --ink:         #0E2841;
  --magenta:     #E5197D;
  --magenta-600: #cc1670;
  --magenta-tint:rgba(229, 25, 125, 0.08);
  --bg:          #F5F7FA;
  --surface:     #FFFFFF;
  --surface-2:   #EEF2F6;
  --slate:       #4E627A;
  --slate-2:     #6B7E94;
  --line:        #E2E8F0;
  --line-2:      #D5DEE8;
  --line-dark:   rgba(255,255,255,0.12);
  --slate-dark:  #93A7BE;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-sans: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(72px, 11vw, 148px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 104px); }

.section--dark {
  background: var(--navy);
  color: #fff;
}
.section--dark .lead { color: #C3D2E2; }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--magenta);
  display: inline-block;
}
.section--dark .kicker { color: #FF73B0; }
.section--dark .kicker::before { background: #FF73B0; }

/* ---------- Headings ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: inherit; }

.h-display {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h-section {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h-sub { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  color: var(--slate);
  font-weight: 400;
  text-wrap: pretty;
  max-width: 62ch;
}
p { text-wrap: pretty; }
.muted { color: var(--slate-2); }
.section-head { max-width: 760px; }
.section-head .kicker { margin-bottom: 22px; }
.section-head .lead { margin-top: 22px; }

.accent { color: var(--magenta); }

/* footnote / source */
.fnote {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--slate-2);
}
.section--dark .fnote { color: var(--slate-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.98rem; font-weight: 500;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--magenta); color: #fff; }
.btn--primary:hover { background: var(--magenta-600); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--navy); }
.section--dark .btn--ghost { border-color: rgba(255,255,255,0.25); color: #fff; }
.section--dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.hero .btn--ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
.hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav.is-scrolled {
  background: rgba(245, 247, 250, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; height: 30px; }
.brand__logo { height: 25px; width: auto; display: block; }
.brand__logo--dark { display: none; }
.nav.is-scrolled .brand__logo--light { display: none; }
.nav.is-scrolled .brand__logo--dark { display: block; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.88rem; font-weight: 450; color: rgba(255,255,255,0.78);
  transition: color .2s; letter-spacing: -0.01em;
}
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a { color: var(--slate); }
.nav.is-scrolled .nav__links a:hover { color: var(--navy); }
.nav__cta { padding: 9px 18px; font-size: 0.86rem; }
@media (max-width: 880px) { .nav__links .nav-link { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(229,25,125,0.16), transparent 55%),
    radial-gradient(100% 80% at 0% 100%, rgba(15,158,213,0.12), transparent 50%),
    linear-gradient(180deg, rgba(14,40,65,0.2), rgba(14,40,65,0.55));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(40px, 8vh, 90px); }
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 { max-width: 16ch; margin-bottom: 28px; }
.hero h1 .em { color: #FF73B0; }
.hero__sub { font-size: clamp(1.12rem, 1.7vw, 1.4rem); color: #C7D6E6; max-width: 56ch; font-weight: 400; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__origin {
  margin-top: 44px;
  font-family: var(--font-mono);
  font-size: 0.76rem; letter-spacing: 0.04em;
  color: var(--slate-dark);
  display: flex; align-items: center; gap: 10px;
}
.hero__origin .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); flex: none; box-shadow: 0 0 12px 2px rgba(229,25,125,0.6); }

.hero__metrics {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-dark);
  margin-top: clamp(40px, 7vh, 76px);
  padding-top: 26px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.hero__metric .v { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em; }
.hero__metric .v .accent { color: #FF73B0; }
.hero__metric .l { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-dark); margin-top: 4px; }
@media (max-width: 720px) { .hero__metrics { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } }

/* scroll hint */
.scrollhint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--slate-dark); text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scrollhint .line { width: 1px; height: 30px; background: linear-gradient(var(--magenta), transparent); animation: scrollpulse 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 720px) { .scrollhint { display: none; } }

/* ============================================================
   PROBLEM — stat triad
   ============================================================ */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.cancer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.cancer-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -30px rgba(14,40,65,0.4); border-color: var(--line-2); }
.cancer-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.cancer-card:hover::before { transform: scaleX(1); }
.cancer-card .abbr { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.cancer-card .full { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-2); margin-top: 6px; min-height: 2.4em; }
.cancer-card .rows { margin-top: 24px; border-top: 1px solid var(--line); }
.cancer-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cancer-card .row .rv { font-size: 1.55rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.cancer-card .row .rl { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-2); text-align: right; max-width: 13ch; }
.cancer-card .row .rv .u { font-size: 0.85rem; font-weight: 500; color: var(--slate); margin-left: 2px; }
.cancer-card .row--bad .rv { color: var(--magenta); }
@media (max-width: 820px) { .triad { grid-template-columns: 1fr; } .cancer-card .full { min-height: 0; } }

.bigline { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 500; letter-spacing: -0.02em; margin-top: 52px; max-width: 22ch; line-height: 1.18; }
.bigline .accent { color: var(--magenta); }

/* ============================================================
   Two-col media sections (challenge, tech, solution, platform)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__body .kicker { margin-bottom: 20px; }
.split__body h2 { margin-bottom: 22px; }
.split__body .lead { margin-bottom: 0; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split--rev .split__media { order: 0; } }

.figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 30px 70px -50px rgba(14,40,65,0.5);
}
.figure img { border-radius: 8px; margin: 0 auto; }
.figure__cap { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--slate-2); margin-top: 16px; text-align: center; line-height: 1.5; }
.section--dark .figure { background: #fff; border-color: rgba(255,255,255,0.1); }

/* numbered requirement items */
.reqs { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.req { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.section--dark .req { border-top-color: var(--line-dark); }
.req:last-child { border-bottom: 1px solid var(--line); }
.section--dark .req:last-child { border-bottom-color: var(--line-dark); }
.req__n { font-family: var(--font-mono); font-size: 0.95rem; color: var(--magenta); font-weight: 500; flex: none; padding-top: 2px; }
.section--dark .req__n { color: #FF73B0; }
.req__t { font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.req__d { color: var(--slate); font-size: 1rem; margin-top: 5px; }
.section--dark .req__d { color: #AFC0D2; }

.callout-bar {
  margin-top: 38px; padding: 22px 26px;
  border-left: 3px solid var(--magenta);
  background: var(--magenta-tint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em;
}
.section--dark .callout-bar { background: rgba(229,25,125,0.14); }

/* mechanism chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line-2); color: var(--slate);
  background: var(--surface);
}
.section--dark .chip { border-color: rgba(255,255,255,0.18); color: #C7D6E6; background: rgba(255,255,255,0.04); }

/* ============================================================
   SOLUTION pillars (dark)
   ============================================================ */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.pillar { padding: 28px; border: 1px solid var(--line-dark); border-radius: var(--r-md); background: rgba(255,255,255,0.025); transition: background .3s, border-color .3s, transform .3s var(--ease); }
.pillar:hover { background: rgba(255,255,255,0.05); transform: translateY(-3px); border-color: rgba(255,115,176,0.4); }
.pillar__n { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: #FF73B0; text-transform: uppercase; }
.pillar__t { font-size: 1.35rem; font-weight: 600; margin-top: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.pillar__d { color: #AFC0D2; margin-top: 10px; font-size: 1rem; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   Comparison + tables
   ============================================================ */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.vs__col { border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; background: var(--surface); }
.vs__col--win { border-color: var(--magenta); box-shadow: 0 0 0 1px var(--magenta), 0 28px 60px -40px rgba(229,25,125,0.5); }
.vs__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.vs__name { font-weight: 600; font-size: 1.25rem; letter-spacing: -0.02em; }
.vs__col--win .vs__name { color: var(--magenta); }
.vs__tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; background: var(--surface-2); color: var(--slate-2); }
.vs__col--win .vs__tag { background: var(--magenta-tint); color: var(--magenta); }
.vs__list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.vs__list li { display: flex; gap: 12px; font-size: 0.98rem; line-height: 1.45; color: var(--slate); }
.vs__list li .mk { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.vs__col--win .vs__list li { color: var(--ink); }
@media (max-width: 760px) { .vs { grid-template-columns: 1fr; } }

/* matrix table */
.matrix-wrap { margin-top: 44px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
table.matrix { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.92rem; }
table.matrix th, table.matrix td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
table.matrix thead th { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-2); font-weight: 500; vertical-align: bottom; }
table.matrix tbody th { text-align: left; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
table.matrix .col-adcab { background: var(--magenta-tint); border-left: 1px solid rgba(229,25,125,0.2); border-right: 1px solid rgba(229,25,125,0.2); }
table.matrix thead .col-adcab { color: var(--magenta); font-weight: 600; }
table.matrix tbody tr:last-child td, table.matrix tbody tr:last-child th { border-bottom: none; }
table.matrix .yes { color: var(--magenta); font-weight: 600; }
table.matrix .no { color: var(--slate-2); }
.lvl { font-family: var(--font-mono); font-size: 0.78rem; }
.lvl-high { color: #1F8A5B; font-weight: 600; }
.lvl-med { color: #C77B17; }
.lvl-low { color: #C0392B; }
.examples td, .examples th { font-family: var(--font-mono); font-size: 0.68rem !important; color: var(--slate-2); }

/* ============================================================
   PoC — mechanism + charts
   ============================================================ */
.moa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.moa-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 22px; }
.moa-card .num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--magenta); letter-spacing: 0.1em; }
.moa-card .t { font-weight: 600; font-size: 1.1rem; margin-top: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.moa-card .d { color: var(--slate); font-size: 0.9rem; margin-top: 8px; }
@media (max-width: 880px) { .moa-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .moa-grid { grid-template-columns: 1fr; } }

.charts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.chart-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.chart-card .ct { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.chart-card .cs { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.05em; color: var(--slate-2); text-transform: uppercase; margin-top: 4px; }
.chart-card svg { width: 100%; height: auto; margin-top: 16px; display: block; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.chart-legend span { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--slate); }
.chart-legend i { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }
@media (max-width: 900px) { .charts { grid-template-columns: 1fr; } }

.poc-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 28px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.poc-strip .cell { padding: 26px 28px; border-right: 1px solid var(--line); }
.poc-strip .cell:last-child { border-right: none; }
.poc-strip .v { font-size: 2.2rem; font-weight: 600; letter-spacing: -0.02em; }
.poc-strip .v .accent { color: var(--magenta); }
.poc-strip .l { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-2); margin-top: 4px; }
@media (max-width: 720px) { .poc-strip { grid-template-columns: 1fr; } .poc-strip .cell { border-right: none; border-bottom: 1px solid var(--line); } .poc-strip .cell:last-child { border-bottom: none; } }

.indications { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ind {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 18px;
  background: var(--surface); flex: 1 1 240px;
}
.ind .tag { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.06em; color: #fff; background: var(--navy); padding: 4px 8px; border-radius: 5px; flex: none; }
.ind .txt { font-size: 0.92rem; color: var(--slate); }

/* ============================================================
   Market
   ============================================================ */
.mkt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.mkt-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px; background: var(--surface); position: relative; overflow: hidden; }
.mkt-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mkt-card .label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-2); }
.mkt-card .flow { display: flex; align-items: flex-end; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.mkt-card .yr { }
.mkt-card .yr .amt { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.mkt-card .yr .ylabel { font-family: var(--font-mono); font-size: 0.66rem; color: var(--slate-2); margin-top: 6px; letter-spacing: 0.04em; }
.mkt-card .arrow { font-size: 1.6rem; color: var(--magenta); padding-bottom: 6px; }
.mkt-card .yr.future .amt { color: var(--magenta); }
.mkt-card .cagr { font-family: var(--font-mono); font-size: 0.72rem; padding: 6px 12px; border-radius: 100px; background: var(--navy); color: #fff; letter-spacing: 0.04em; white-space: nowrap; flex: none; }
@media (max-width: 760px) { .mkt-cards { grid-template-columns: 1fr; } }

.funnel { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.funnel-row { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 20px; align-items: center; }
.funnel-row .fk { font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate-2); letter-spacing: 0.08em; }
.funnel-bar { min-width: 0; min-height: 76px; box-sizing: border-box; border-radius: var(--r-sm); display: flex; flex-wrap: wrap; align-items: center; gap: 2px 14px; padding: 12px 24px; color: #fff; position: relative; transition: filter .3s; }
.funnel-bar:hover { filter: brightness(1.06); }
.funnel-bar .fa { font-size: clamp(1.3rem, 2.6vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.funnel-bar .fd { font-family: var(--font-mono); font-size: 0.66rem; opacity: 0.82; letter-spacing: 0.04em; }
.fb-tam { background: var(--navy); width: 100%; }
.fb-sam { background: #1d4f73; width: 72%; }
.fb-som { background: var(--magenta); width: 54%; }
@media (max-width: 720px) { .fb-sam, .fb-som { width: 100%; } }
@media (max-width: 560px) { .funnel-row { grid-template-columns: 54px minmax(0, 1fr); gap: 12px; } .funnel-bar { padding: 12px 16px; } }

/* ============================================================
   Roadmap timeline
   ============================================================ */
.timeline { margin-top: 52px; }
.tl-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; }
.tl-axis { position: absolute; left: 0; right: 0; top: 46px; height: 2px; background: var(--line-2); }
.tl-axis::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: var(--prog, 38%); background: linear-gradient(90deg, var(--navy), var(--magenta)); }
.tl-col { padding: 0 10px; position: relative; }
.tl-yr { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; color: var(--ink); }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--navy); margin: 26px 0 22px; position: relative; z-index: 2; }
.tl-col.is-key .tl-dot { border-color: var(--magenta); box-shadow: 0 0 0 5px var(--magenta-tint); }
.tl-ev { font-size: 0.86rem; color: var(--slate); line-height: 1.4; }
.tl-ev strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.tl-phases { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; margin-top: 36px; }
.tl-phase { padding: 12px 16px; border-radius: var(--r-sm); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.tl-phase.p1 { background: var(--surface-2); color: var(--slate); }
.tl-phase.p2 { background: #dde6ef; color: var(--navy); }
.tl-phase.p3 { background: var(--navy); color: #fff; }
@media (max-width: 820px) { .tl-track { grid-template-columns: 1fr; gap: 0; } .tl-axis { left: 6px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .tl-axis::after { width: 100%; height: var(--prog, 38%); background: linear-gradient(180deg, var(--navy), var(--magenta)); }
  .tl-col { padding: 0 0 26px 30px; } .tl-dot { position: absolute; left: 0; top: 6px; margin: 0; }
  .tl-phases { grid-template-columns: 1fr; } }

/* buyers / acquisitions */
.acq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.acq { border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; background: var(--surface); }
.acq .amt { font-size: 2rem; font-weight: 600; letter-spacing: -0.03em; color: var(--magenta); }
.acq .deal { font-weight: 600; margin-top: 10px; font-size: 1.02rem; }
.acq .ph { font-family: var(--font-mono); font-size: 0.68rem; color: var(--slate-2); margin-top: 4px; letter-spacing: 0.03em; }
@media (max-width: 760px) { .acq-grid { grid-template-columns: 1fr; } }

.paths { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.path-pill { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line-2); color: var(--ink); background: var(--surface); }
.path-pill .num { color: var(--magenta); margin-right: 8px; }

/* ============================================================
   Regulatory timeline (horizontal stages)
   ============================================================ */
.reg-flow { margin-top: 48px; display: flex; flex-direction: column; gap: 18px; }
.reg-band { border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 26px; background: var(--surface); }
.reg-band .bh { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.reg-band .bh .pdot { width: 9px; height: 9px; border-radius: 50%; background: var(--magenta); }
.reg-band .bh .pname { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.reg-band .bh .pyr { font-family: var(--font-mono); font-size: 0.68rem; color: var(--slate-2); margin-left: auto; }
.reg-steps { display: flex; flex-wrap: wrap; gap: 10px; }
.reg-step { font-size: 0.82rem; padding: 9px 14px; border-radius: 100px; background: var(--surface-2); color: var(--slate); white-space: nowrap; }
.reg-step.hot { background: var(--magenta-tint); color: var(--magenta); font-weight: 500; }
.reg-note { margin-top: 26px; }

/* ============================================================
   IP table
   ============================================================ */
.ip-wrap { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
table.ip { width: 100%; border-collapse: collapse; }
table.ip th, table.ip td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
table.ip thead th { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-2); font-weight: 500; }
table.ip tbody td { font-size: 1rem; }
table.ip tbody tr:last-child td { border-bottom: none; }
table.ip .region { font-weight: 600; }
table.ip .ident { font-family: var(--font-mono); font-size: 0.9rem; color: var(--navy); }
table.ip .date { font-family: var(--font-mono); font-size: 0.9rem; color: var(--slate); }
table.ip tbody tr:hover { background: var(--surface-2); }
@media (max-width: 560px) { table.ip th, table.ip td { padding: 14px 16px; font-size: 0.88rem; } }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.member:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -42px rgba(14,40,65,0.5); }
.member__photo { aspect-ratio: 4/4.4; background: var(--surface-2); overflow: hidden; position: relative; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(1.02); }
.member__mono { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #16395a, #0E2841); }
.member__mono span { font-size: 3.4rem; font-weight: 600; color: rgba(255,255,255,0.92); letter-spacing: -0.02em; }
.member__body { padding: 24px; }
.member__role { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); }
.member__name { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; margin-top: 12px; }
.member__title { font-size: 0.86rem; color: var(--slate-2); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.01em; }
.member__bio { font-size: 0.94rem; color: var(--slate); margin-top: 16px; line-height: 1.55; }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; max-width: 460px; } }

.cred-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; padding: 36px; border-radius: var(--r-md); background: var(--navy); color: #fff; }
.cred .v { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: -0.03em; color: #fff; }
.cred .v .accent { color: #FF73B0; }
.cred .l { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-dark); margin-top: 6px; }
@media (max-width: 640px) { .cred-strip { grid-template-columns: 1fr; gap: 24px; text-align: left; } }

/* affiliations logos */
.affil { margin-top: 56px; }
.affil__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-2); text-align: center; margin-bottom: 28px; }
.affil__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 56px); }
.affil__row img { height: 34px; width: auto; object-fit: contain; opacity: 0.6; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.affil__row img:hover { opacity: 1; filter: grayscale(0); }
.affil__row .big { height: 44px; }

/* ============================================================
   Value pillars
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.value-cell { background: var(--surface); padding: 34px 30px; transition: background .3s; }
.value-cell:hover { background: var(--surface-2); }
.value-cell .vnum { font-family: var(--font-mono); font-size: 0.7rem; color: var(--magenta); letter-spacing: 0.1em; }
.value-cell .vt { font-size: 1.2rem; font-weight: 600; margin-top: 16px; letter-spacing: -0.01em; }
.value-cell .vd { color: var(--slate); font-size: 0.95rem; margin-top: 10px; line-height: 1.5; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .value-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Ask / Contact (dark)
   ============================================================ */
.ask-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; margin-top: 40px; }
@media (max-width: 880px) { .ask-grid { grid-template-columns: 1fr; gap: 44px; } }
.ask-eq { display: flex; align-items: center; gap: 22px; margin: 8px 0 28px; flex-wrap: wrap; }
.ask-eq .box { text-align: center; }
.ask-eq .box .n { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.ask-eq .box.match .n { color: #FF73B0; }
.ask-eq .box.total .n { color: #fff; }
.ask-eq .box .c { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-dark); margin-top: 8px; }
.ask-eq .op { font-size: 2rem; font-weight: 300; color: var(--slate-dark); }
.ask-eq .box.total { padding: 18px 28px; border: 1px solid rgba(255,115,176,0.4); border-radius: var(--r-md); background: rgba(229,25,125,0.1); }

.runway { list-style: none; margin-top: 6px; }
.runway li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 1.02rem; color: #D6E2EE; align-items: baseline; }
.runway li:first-child { border-top: 1px solid var(--line-dark); }
.runway li .rn { font-family: var(--font-mono); font-size: 0.8rem; color: #FF73B0; flex: none; }
.runway__h { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-dark); margin-bottom: 4px; }

.contact-cta { margin-top: 8px; }
.contact-cta h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.02em; margin-bottom: 10px; }
.contact-cta .lead { color: #B9CADB; margin-bottom: 28px; }
.mailbtn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 1rem; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 16px 24px; border-radius: 100px; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.mailbtn:hover { border-color: var(--magenta); background: rgba(229,25,125,0.12); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #0a1f33; color: var(--slate-dark); padding: 52px 0 40px; border-top: 1px solid var(--line-dark); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer .brand { font-size: 1.2rem; }
.footer__logo { height: 30px; width: auto; display: block; margin-bottom: 18px; }
.footer__meta { font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.7; letter-spacing: 0.02em; max-width: 42ch; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-family: var(--font-mono); font-size: 0.76rem; line-height: 1.3; white-space: nowrap; }
.footer__links a:hover { color: #fff; }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal-on .reveal.in { opacity: 1; transform: none; }
  .reveal-on .reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-on .reveal-stagger.in > * { opacity: 1; transform: none; }
  .reveal-on .reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
  .reveal-on .reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
  .reveal-on .reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
  .reveal-on .reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
  .reveal-on .reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
}

/* number plate divider */
.sec-index { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--slate-2); }
