/* =============== Auspica — design tokens =============== */
:root {
  --bg-0:        #07142e;
  --bg-1:        #0f2147;
  --bg-2:        #15294f;
  --bg-3:        #1c335e;
  --line:        rgba(202, 220, 252, 0.10);
  --line-strong: rgba(202, 220, 252, 0.18);

  --fg:          #f2f5fa;
  --fg-1:        #cadcfc;
  --fg-2:        #8aa8d6;
  --fg-3:        #5b78a5;

  --blue:        #5b9bd5;
  --blue-2:      #2e75b6;
  --blue-deep:   #1d4a86;
  --warm:        #d97b36;
  --warm-soft:   #e8a87c;
  --green:       #6dba8a;
  --red:         #e8736b;

  --serif:  "Newsreader", Georgia, "Times New Roman", serif;
  --sans:   "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:   "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --pad: 32px;

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

/* light mode is achievable via Tweaks toggling [data-theme="light"] */
[data-theme="light"] {
  --bg-0: #f6f4ef;
  --bg-1: #efece4;
  --bg-2: #e7e3d6;
  --bg-3: #ddd7c5;
  --line:        rgba(15, 33, 71, 0.10);
  --line-strong: rgba(15, 33, 71, 0.20);
  --fg:   #0f2147;
  --fg-1: #1d3870;
  --fg-2: #4b6291;
  --fg-3: #7b8db4;
  --blue: #2e75b6;
  --blue-2: #1d4a86;
  --blue-deep: #0f2147;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scrollbar-gutter: stable; }
body {
  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =============== type =============== */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 500;
}
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.02;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--fg);
  text-wrap: balance;
}
.h-1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--fg);
  text-wrap: balance;
}
.h-2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--fg);
}
.h-3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.008em;
  font-size: 22px;
  line-height: 1.2;
  color: var(--fg);
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--fg-1);
  line-height: 1.4;
  font-weight: 400;
}
.body { color: var(--fg-1); font-size: 16px; line-height: 1.6; }
.small { color: var(--fg-2); font-size: 13px; line-height: 1.55; }
.mono { font-family: var(--mono); }
.warm { color: var(--warm); }

/* =============== layout =============== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
section { position: relative; padding: 120px 0; }
section + section { border-top: 1px solid var(--line); }
@media (max-width: 760px) { section { padding: 80px 0; } :root { --pad: 20px; } }

/* =============== wordmark =============== */
.wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--blue);
}
.wordmark .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--warm);
  border-radius: 1px;
  transform: translateY(-3px);
  margin-right: 8px;
}

/* =============== nav =============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg-0) 78%, transparent);
  border-bottom: 1px solid var(--line);
  transition: background 250ms var(--ease);
}
.nav .row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--fg-1);
}
.nav-links a { transition: color 160ms var(--ease); }
.nav-links a:hover { color: var(--fg); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px;
  border-radius: 2px;
  background: var(--fg);
  color: var(--bg-1);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 160ms var(--ease);
}
.nav .cta:hover { transform: translateY(-1px); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px 0 10px;
  background: #0F2147;
  border: 1px solid rgba(91, 155, 213, 0.18);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 160ms var(--ease), transform 160ms var(--ease);
}
.brand-badge:hover {
  border-color: rgba(217, 123, 54, 0.55);
  transform: translateY(-1px);
}
.brand-badge .brand-mark { flex: none; }
.brand-badge .brand-name {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav .cta { display: none; }
  .brand-badge { padding: 0 12px 0 8px; height: 36px; }
  .brand-badge .brand-name { font-size: 18px; }
}

/* =============== buttons =============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 20px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}
.btn-primary { background: var(--fg); color: var(--bg-1); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--fg-1); background: rgba(202, 220, 252, 0.03); }
.btn-arrow { transition: transform 200ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =============== chip =============== */
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg-1);
}
.chip .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--warm) 60%, transparent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--warm) 60%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--warm) 0%, transparent); }
}

/* =============== cards =============== */
.card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.card:hover { border-color: var(--line-strong); }
.card .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-2);
}
.card hr { border: none; border-top: 1px solid var(--line); margin: 22px 0; }

/* =============== hero =============== */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  background:
    radial-gradient(80% 60% at 80% 20%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 60%),
    radial-gradient(60% 50% at 10% 80%, color-mix(in srgb, var(--warm) 6%, transparent), transparent 60%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero .tagline {
  color: var(--warm);
  font-style: italic;
  font-family: var(--serif);
  font-size: 20px;
  margin-top: 12px;
}
.hero .meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-2); letter-spacing: 0.06em;
}
.hero .meta span { padding: 4px 10px; border: 1px solid var(--line); border-radius: 2px; }

/* faint background grid */
.bg-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 60%, transparent);
  opacity: 0.55;
}

/* =============== drift demo =============== */
.demo {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  padding: 0;
  overflow: hidden;
  contain: layout style;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.demo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}
.demo-head .left { display: flex; align-items: center; gap: 10px; }
.demo-head .dots { display:flex; gap:6px; }
.demo-head .dots i {
  width:8px; height:8px; border-radius:50%;
  background: var(--bg-3); display:inline-block;
}
.demo-body { display: grid; grid-template-columns: 1fr 1fr; height: 460px; }
.demo-col { padding: 20px; overflow: hidden; }
.demo-col + .demo-col { border-left: 1px solid var(--line); }
.demo-col-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--fg-2);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.demo-col-head .count { color: var(--fg-1); }
.demo-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  padding: 9px 10px; margin-bottom: 4px;
  border-radius: 3px;
  background: rgba(202, 220, 252, 0.02);
  border: 1px solid transparent;
  color: var(--fg-1);
}
.demo-row.declared { border-color: rgba(91, 155, 213, 0.18); }
.demo-row.observed { border-color: rgba(202, 220, 252, 0.10); }
.demo-row.divergent {
  border-color: color-mix(in srgb, var(--warm) 70%, transparent);
  background: color-mix(in srgb, var(--warm) 6%, transparent);
}
.demo-row.empty {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
  animation: none;
}
.demo-col-head .count {
  font-variant-numeric: tabular-nums;
}
.demo-row.divergent .rule {
  color: var(--warm);
}
.demo-row .ico {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(91, 155, 213, 0.2);
  flex-shrink: 0;
  display:inline-grid; place-items:center;
  color: var(--blue);
  font-size: 9px;
}
.demo-row.divergent .ico {
  background: color-mix(in srgb, var(--warm) 25%, transparent);
  color: var(--warm);
}
.demo-row .name { color: var(--fg); flex: 1; }
.demo-row .rule {
  font-size: 10px; padding: 2px 6px; border-radius: 2px;
  background: rgba(202, 220, 252, 0.05);
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.demo-foot {
  border-top: 1px solid var(--line);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-2);
}
.demo-foot .right { display: flex; gap: 14px; }

/* =============== live findings feed (hero) =============== */
.demo.findings .live { display: flex; align-items: center; gap: 6px; color: var(--warm); }
.demo.findings .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--warm);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--warm) 60%, transparent);
  animation: pulse 2s var(--ease) infinite;
}
.fbody { display: grid; grid-template-columns: 1.55fr 1fr; }
.ffeed { padding: 16px 16px 18px; border-right: 1px solid var(--line); min-width: 0; }
.ffeed-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--fg-2); margin-bottom: 12px;
}
.ffeed-head .count { color: var(--fg-1); font-variant-numeric: tabular-nums; }
.frows { min-height: 336px; }
.frow {
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  border-radius: 4px; padding: 10px 12px; margin-bottom: 8px;
  background: rgba(202, 220, 252, 0.02);
  animation: rowIn 360ms var(--ease) both;
}
.frow.high { border-left-color: var(--warm); }
.frow.medium { border-left-color: var(--blue); }
.frow-top { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; }
.frow-top .sev { font-weight: 600; letter-spacing: 0.04em; padding: 1px 6px; border-radius: 3px; }
.frow-top .sev.high { color: var(--warm); background: color-mix(in srgb, var(--warm) 16%, transparent); }
.frow-top .sev.medium { color: var(--blue); background: color-mix(in srgb, var(--blue) 16%, transparent); }
.frow-top .rid { color: var(--fg-2); }
.frow-top .ago { margin-left: auto; color: var(--fg-3); }
.frow .agent {
  font-family: var(--mono); font-size: 11px; color: var(--fg); margin-top: 7px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.frow .summary { font-size: 12px; color: var(--fg-1); margin-top: 4px; line-height: 1.35; }
.frow .acts { display: flex; gap: 6px; margin-top: 9px; }
.frow .acts span {
  font-family: var(--mono); font-size: 9px; color: var(--fg-2);
  border: 1px solid var(--line); border-radius: 3px; padding: 2px 6px;
  white-space: nowrap;
}
.frail { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.fpanel-h { font-family: var(--serif); font-size: 15px; color: var(--fg); margin-bottom: 12px; }
.brow {
  display: grid; grid-template-columns: 1fr 42px 26px; align-items: center; gap: 8px;
  margin-bottom: 8px; font-family: var(--mono); font-size: 10px;
}
.brow .rid2 { color: var(--blue); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brow .sv.hi { color: var(--warm); }
.brow .sv.me { color: var(--blue); }
.brow .bar { height: 6px; background: rgba(202, 220, 252, 0.08); border-radius: 3px; overflow: hidden; }
.brow .bar > span { display: block; height: 100%; background: var(--blue); border-radius: 3px; transition: width 500ms var(--ease); }
.brow .bar > span.hi { background: var(--warm); }
.brow .bar > span.me { background: var(--blue); }
.brow .bn { text-align: right; color: var(--fg-1); font-variant-numeric: tabular-nums; }
@media (max-width: 520px) {
  .fbody { grid-template-columns: 1fr; }
  .ffeed { border-right: none; border-bottom: 1px solid var(--line); }
}

/* =============== trademark mark =============== */
.tm {
  font-family: var(--sans);
  font-size: 0.4em;
  vertical-align: super;
  line-height: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* row enter animation */
@keyframes rowIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.demo-row { animation: rowIn 340ms var(--ease) both; }

/* sweep line */
.sweep {
  position: absolute;
  left: 50%; top: 60px; bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity: 0.4;
  animation: sweep 4s linear infinite;
}
@keyframes sweep {
  0%   { opacity: 0; transform: translateX(-200px); }
  20%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(200px); }
}

/* =============== table (HR mapping) =============== */
.map-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.map-table th, .map-table td {
  text-align: left;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.map-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-2);
  padding-bottom: 16px;
}
.map-table td.l { color: var(--fg-2); width: 38%; }
.map-table td.r { color: var(--fg); font-family: var(--serif); font-size: 20px; }
.map-table tr:hover td.r { color: var(--blue); }

/* =============== stepper (how it works) =============== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps::before {
  content: ""; position: absolute;
  top: 32px; left: 5%; right: 5%; height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  position: relative;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  z-index: 1;
}
.step:last-child { border-right: none; }
.step .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 1px solid var(--blue);
  margin-bottom: 24px;
  position: relative;
}
.step .dot::after {
  content: ""; position: absolute; inset: 4px;
  background: var(--blue); border-radius: 50%;
}
.step .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-2); letter-spacing: 0.14em;
}
.step h3 { margin: 10px 0 12px; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* =============== cap grid =============== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.cap-grid .card {
  border: none; border-radius: 0;
  background: var(--bg-1);
  padding: 36px 32px;
}
.cap-grid .card:hover { background: var(--bg-2); transform: none; }
@media (max-width: 980px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .cap-grid { grid-template-columns: 1fr; } }

/* =============== role tabs =============== */
.role-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-1);
}
.role-tabs {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--bg-0);
}
.role-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg-2);
  text-align: left;
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}
.role-tab:last-child { border-bottom: none; }
.role-tab:hover { color: var(--fg-1); background: rgba(255,255,255,0.02); }
.role-tab.active { color: var(--fg); background: var(--bg-1); }
.role-tab.active::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--warm);
}
.role-panel { padding: 48px 44px; min-height: 480px; }
.role-panel .pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 32px;
}
.role-panel .pillars > div { border-top: 1px solid var(--line); padding-top: 18px; }
.role-panel .pillars h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--blue); margin: 0 0 8px; text-transform: uppercase; font-weight: 500;
}
.role-panel .pillars p { margin: 0; color: var(--fg-1); font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) {
  .role-wrap { grid-template-columns: 1fr; }
  .role-tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .role-tab { border-bottom: none; border-right: 1px solid var(--line); white-space: nowrap; padding: 16px 20px; }
  .role-tab.active::before { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 2px; }
  .role-panel { padding: 32px 24px; min-height: 0; }
  .role-panel .pillars { grid-template-columns: 1fr; gap: 20px; }
}

/* =============== engagements =============== */
.eng-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .eng-grid { grid-template-columns: 1fr; } }
.eng-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 4px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.eng-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.eng-card .dur {
  font-family: var(--mono); font-size: 11px;
  color: var(--warm); letter-spacing: 0.12em;
}
.eng-card h3 { margin: 18px 0 12px; font-size: 28px; }
.eng-card .feature {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--fg-1);
}
.eng-card .feature:first-of-type { border-top: none; }
.eng-card .feature::before {
  content: ""; width: 4px; height: 4px; background: var(--blue);
  border-radius: 50%; flex-shrink: 0;
}

/* =============== final CTA =============== */
.cta-section {
  text-align: center;
  padding: 160px 0;
  background:
    radial-gradient(50% 50% at 50% 50%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 70%);
}

/* =============== footer =============== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--fg-2);
  font-size: 13px;
}
.footer .row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .legal { color: var(--fg-3); }

/* =============== founders =============== */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.founder-portrait {
  position: relative;
}
.founder-portrait img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.02);
  box-shadow: 0 1px 0 var(--line), 0 20px 60px rgba(0,0,0,0.35);
}
.founder-portrait::before {
  content: "";
  position: absolute;
  inset: -10px -10px 28px 28px;
  border: 1px solid var(--blue);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.founder-id {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.founder-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.founder-body .body { max-width: 680px; }
.founder-body strong { color: var(--fg); font-weight: 500; }
.founder-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder-era {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.founder-era:last-child { border-right: none; }
.founder-era-years {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.founder-era.current .founder-era-years { color: var(--warm); }
.founder-era-label {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 8px;
  text-wrap: balance;
}
.founder-era-sub {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.45;
}
@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { max-width: 320px; }
  .founder-timeline { grid-template-columns: 1fr 1fr; }
  .founder-era:nth-child(2) { border-right: none; }
  .founder-era:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .founder-timeline { grid-template-columns: 1fr; }
  .founder-era { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .founder-era:last-child { border-bottom: none; }
}

/* =============== media =============== */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.media-card {
  display: block;
  background: var(--bg-1);
  padding: 44px 40px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background 240ms var(--ease);
}
.media-card:hover { background: var(--bg-2); }
.media-card.featured { padding: 56px 48px; }
.media-card .h-1 { font-size: clamp(28px, 3vw, 44px); }
.media-card .h-2 { font-size: 24px; }
.media-card h3 { text-wrap: balance; transition: color 200ms var(--ease); }
.media-card:hover h3 { color: var(--blue); }
.media-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-2);
  text-transform: uppercase;
}
.media-meta .media-source {
  color: var(--warm);
  font-weight: 500;
}
.media-meta .media-dot { color: var(--fg-3); }
.media-read {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-1);
  text-transform: uppercase;
}
.media-card:hover .btn-arrow { transform: translateX(3px); }
.media-list { display: grid; gap: 1px; background: var(--line); }
.media-list .media-card { background: var(--bg-1); }
@media (max-width: 760px) {
  .media-card.featured { padding: 36px 24px; }
  .media-card { padding: 32px 24px; }
}
.divider {
  height: 1px; background: var(--line); width: 100%; margin: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-2); margin-bottom: 24px;
}
.kicker::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px; background: var(--warm);
}

/* big quote */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  color: var(--fg);
  border-left: 2px solid var(--warm);
  padding-left: 28px;
  max-width: 880px;
}

/* stat block (4,000) */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-row > div {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.stat-row > div:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.stat-num .unit { font-size: 22px; color: var(--blue); margin-left: 4px; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--fg-2); margin-top: 14px; text-transform: uppercase; }
@media (max-width: 760px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-row > div { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-row > div:last-child { border-bottom: none; }
}

/* aura blob */
.aura {
  position: absolute; pointer-events: none;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--blue) 18%, transparent), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* =============== pillars (shipped since v0.12) =============== */
.pillar-list {
  border-top: 1px solid var(--line);
}
.pillar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.pillar-rail {
  position: sticky;
  top: 96px;
  align-self: start;
}
.pillar-n {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-3);
}
.pillar-rel {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-top: 14px;
}
.pillar-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--warm);
  font-size: 18px;
  margin-top: 4px;
}
.pillar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}
.pillar-meta span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-1);
  padding: 5px 10px;
  background: rgba(202, 220, 252, 0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
}
@media (max-width: 760px) {
  .pillar-row { grid-template-columns: 1fr; gap: 18px; }
  .pillar-rail { position: static; display: flex; align-items: baseline; gap: 16px; }
  .pillar-n { font-size: 36px; }
  .pillar-rel { margin-top: 0; }
}

/* =============== roadmap strip =============== */
.roadmap-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.roadmap-col {
  background: var(--bg-1);
  padding: 28px 24px;
}
.roadmap-col.ahead { background: var(--bg-0); }
.roadmap-rel {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.roadmap-mark {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.roadmap-col.done .roadmap-mark {
  color: var(--green);
  border: 1px solid color-mix(in srgb, var(--green) 40%, transparent);
}
.roadmap-col.ahead .roadmap-mark {
  color: var(--warm);
  border: 1px solid color-mix(in srgb, var(--warm) 40%, transparent);
}
.roadmap-theme {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  color: var(--fg);
  margin: 16px 0 18px;
  min-height: 72px;
  text-wrap: balance;
}
.roadmap-items {
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--fg-2);
}
@media (max-width: 880px) {
  .roadmap-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .roadmap-strip { grid-template-columns: 1fr; }
}
