/* =========================================================================
   ACCELR8 / AGENT & CAPITAL, Website stylesheet
   Locked v5 brand system. Light backgrounds only. Teal is the single accent.
   Typography: Roboto Condensed (headings) · Roboto (body) ·
   Space Grotesk (Accelr8 wordmark only) · Libre Baskerville (ampersand only).
   ========================================================================= */

:root {
  --ac-navy: #0A1628;                       /* Capital Navy: headlines, buttons, wordmark */
  --ac-teal: #00B4D8;                       /* Agent Teal: single brand accent */
  --ac-teal-soft: rgba(0, 180, 216, 0.10);  /* Teal 10%: pill backgrounds */
  --ac-teal-line: rgba(0, 180, 216, 0.22);
  --ac-bg: #F8FAFB;                          /* Page background, alternating sections */
  --ac-bg-pure: #FFFFFF;                     /* Card surfaces */
  --ac-rule: #E3E7EC;                        /* Borders, dividers */
  --ac-grey-soft: #9CA3AF;                   /* Tertiary text */
  --ac-grey: #6B7280;                        /* Captions, meta labels */
  --ac-ink: #1F2937;                         /* Body text */
  --ac-shadow: 0 1px 3px rgba(10,22,40,0.06), 0 8px 24px rgba(10,22,40,0.05);
  --ac-shadow-sm: 0 1px 2px rgba(10,22,40,0.05);
  --ac-maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  margin: 0;
  zoom: 1.15; /* global scale-up; all px sizes below inherit it */
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ac-ink);
  background: var(--ac-bg-pure);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--ac-navy); text-decoration: none; }
a:hover { color: var(--ac-teal); }

img { max-width: 100%; display: block; }

/* ---------- Wordmarks ---------- */
.amp-baskerville {
  font-family: 'Libre Baskerville', 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', Garamond, serif;
  font-weight: 400;
  font-style: normal;
  color: var(--ac-teal);
  font-feature-settings: 'liga' off;
}
.wordmark-ac {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  color: var(--ac-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wordmark-ac .amp-baskerville { font-size: 1.05em; padding: 0; position: relative; top: -0.02em; }
.wordmark-accelr8 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--ac-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wordmark-accelr8 .eight { color: var(--ac-teal); }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ac-teal);
  margin: 0 0 14px 0;
  display: block;
}
.eyebrow.pill {
  display: inline-block;
  background: var(--ac-teal-soft);
  color: var(--ac-teal);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.16em;
}

h1, h2, h3 { font-family: 'Roboto Condensed', sans-serif; color: var(--ac-navy); margin: 0; }

.h-hero {
  font-weight: 400;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h2.section-title {
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.12;
}
h3 {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ac-ink);
}
.muted { color: var(--ac-grey); }
.src { font-style: italic; color: var(--ac-grey); font-size: 12px; }

/* ---------- Layout ---------- */
.section { padding: 84px 24px; }
.section.alt { background: var(--ac-bg); }
.section.tight { padding: 60px 24px; }
.wrap { max-width: var(--ac-maxw); margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin: 7px 0 0 0; font-size: 17px; color: var(--ac-grey); }

.rule-teal { height: 3px; width: 48px; background: var(--ac-teal); border: 0; margin: 0 0 22px 0; }

/* ---------- Top navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ac-rule);
}
.nav-inner {
  max-width: var(--ac-maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-brand { display: flex; align-items: baseline; gap: 12px; }
.nav-brand .wordmark-accelr8 { font-size: 23px; }
.nav-brand .by {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400;
  font-size: 12px; letter-spacing: 0.04em; color: var(--ac-grey);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ac-navy);
}
.nav-links a:hover { color: var(--ac-teal); }
.nav-cta {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700; font-size: 12px !important; letter-spacing: 0.14em !important;
  background: var(--ac-navy); color: #fff !important;
  padding: 10px 18px; border-radius: 4px;
}
.nav-cta:hover { background: #1A2B3C; color: #fff !important; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 4px; cursor: pointer;
  transition: all .15s ease; border: 1.5px solid transparent;
}
.btn-primary { background: var(--ac-navy); color: #fff; }
.btn-primary:hover { background: #1A2B3C; color: #fff; }
.btn-secondary { background: transparent; border-color: var(--ac-navy); color: var(--ac-navy); }
.btn-secondary:hover { background: var(--ac-navy); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Hero ---------- */
.hero { padding: 96px 24px 80px; background: var(--ac-bg-pure); position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero .h-hero { max-width: none; }
.hero .tagline {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px); color: var(--ac-navy);
  margin: 26px 0 0 0; max-width: 720px; line-height: 1.3;
}
.hero .sub { font-size: 18px; color: var(--ac-grey); margin: 20px 0 0 0; max-width: 56ch; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 48px; align-items: center; }
.hero-copy { min-width: 0; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: 100%; max-width: 480px; height: auto; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 20px; } .hero-visual { display: none; } }
.hero-wf { margin: 20px 0 4px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.hero-wf .wf-cap { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ac-teal); margin-right: 4px; }
.hero-wf .wf-stage { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ac-navy); }
.hero-wf .wf-stage.last { color: var(--ac-teal); }
.hero-wf .wf-arrow { color: var(--ac-teal); font-size: 12px; }
.hero-panel { width: 100%; max-width: 440px; background: var(--ac-bg-pure); border: 1px solid var(--ac-rule); border-top: 3px solid var(--ac-teal); border-radius: 10px; padding: 24px 26px 20px; box-shadow: var(--ac-shadow); }
.hero-panel .hp-eyebrow { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ac-teal); margin-bottom: 12px; }
.hp-row { display: flex; gap: 16px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--ac-rule); }
.hp-row:first-of-type { border-top: 0; padding-top: 2px; }
.hp-row .hp-n { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 22px; color: var(--ac-teal); font-variant-numeric: tabular-nums; line-height: 1; min-width: 28px; }
.hp-row .hp-t { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 17px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ac-navy); display: block; }
.hp-row .hp-d { font-size: 14px; color: var(--ac-grey); line-height: 1.5; }
.hp-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--ac-rule); font-family: 'Roboto Condensed', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ac-teal); }
.hero-figure {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 46%; max-width: 560px; opacity: 1; z-index: 1; pointer-events: none;
}

/* ---------- Stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  background: var(--ac-bg-pure);
  border: 1px solid var(--ac-rule);
  border-top: 3px solid var(--ac-teal);
  border-radius: 6px; padding: 22px 20px;
  box-shadow: var(--ac-shadow-sm);
}
.stat .num {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 500;
  font-size: 42px; line-height: 1; color: var(--ac-navy);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.stat .desc { font-size: 14px; color: var(--ac-ink); margin-top: 10px; line-height: 1.5; }
.stat .src { display: block; margin-top: 8px; }

/* ---------- Generic card grid ---------- */
.card-grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--ac-bg-pure);
  border: 1px solid var(--ac-rule);
  border-radius: 8px; padding: 26px 24px;
  box-shadow: var(--ac-shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card .kicker {
  font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--ac-teal);
  margin-bottom: 10px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { margin: 0; font-size: 14.5px; color: var(--ac-ink); line-height: 1.55; }
a.card { color: var(--ac-ink); }
a.card:hover { box-shadow: var(--ac-shadow); transform: translateY(-3px); border-color: var(--ac-teal-line); color: var(--ac-ink); }

/* ---------- Framework matrix ---------- */
.matrix-wrap { overflow-x: auto; }
.matrix {
  width: 100%; border-collapse: separate; border-spacing: 6px; min-width: 760px;
}
.matrix th, .matrix td { text-align: left; }
.matrix .corner {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ac-grey);
  vertical-align: bottom; padding: 6px; width: 150px;
}
.matrix .lever-h {
  background: var(--ac-navy); color: #fff; border-radius: 5px; padding: 10px 9px;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; vertical-align: middle;
}
.matrix .pool-h {
  background: var(--ac-bg); border: 1px solid var(--ac-rule); border-left: 3px solid var(--ac-teal);
  border-radius: 5px; padding: 10px 12px;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 13px;
  color: var(--ac-navy); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.15;
}
.matrix .cell {
  background: var(--ac-bg-pure); border: 1px solid var(--ac-rule); border-radius: 5px;
  height: 46px; transition: background .15s ease;
}
.matrix .cell.flag { background: var(--ac-teal-soft); border-color: var(--ac-teal-line); }
.matrix .cell.active {
  background: var(--ac-navy);
}
.matrix .cell .cell-tag {
  display:block; font-family:'Roboto Condensed',sans-serif; font-size:10px; color:#fff;
  text-transform:uppercase; letter-spacing:0.04em; padding:6px 8px; line-height:1.15;
}
.matrix-legend { display:flex; gap:20px; flex-wrap:wrap; margin-top:18px; font-size:13px; color:var(--ac-grey); }
.matrix-legend span { display:inline-flex; align-items:center; gap:8px; }
.swatch { width:14px; height:14px; border-radius:3px; display:inline-block; border:1px solid var(--ac-rule); }
.swatch.flag { background: var(--ac-teal-soft); border-color: var(--ac-teal-line); }
.swatch.active { background: var(--ac-navy); }

/* ---------- Pools / levers two-column lists ---------- */
.pl-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.pl-list { list-style:none; margin:0; padding:0; }
.pl-list li { padding:16px 0; border-bottom:1px solid var(--ac-rule); display:flex; gap:16px; }
.pl-list li:last-child { border-bottom:0; }
.pl-list .n {
  font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:18px; color:var(--ac-teal);
  font-variant-numeric:tabular-nums; min-width:28px;
}
.pl-list .t { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:16px; color:var(--ac-navy); text-transform:uppercase; letter-spacing:0.02em; }
.pl-list .d { font-size:13.5px; color:var(--ac-grey); margin-top:2px; line-height:1.5; }

/* ---------- Value waterfall ---------- */
.waterfall { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.wf-step {
  background:var(--ac-bg-pure); border:1px solid var(--ac-rule); border-radius:8px;
  padding:20px 16px; position:relative; box-shadow:var(--ac-shadow-sm);
}
.wf-step .stage { font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--ac-teal); }
.wf-step .v { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:30px; color:var(--ac-navy); margin-top:8px; font-variant-numeric:tabular-nums; }
.wf-step .r { font-size:12.5px; color:var(--ac-grey); margin-top:6px; line-height:1.4; }
.wf-step .pct { position:absolute; top:16px; right:16px; font-size:12px; font-weight:700; color:var(--ac-teal); }

/* ---------- Verticals ---------- */
.vertical {
  display:grid; grid-template-columns: 200px 1fr; gap:36px; align-items:start;
  padding:38px 0; border-top:1px solid var(--ac-rule);
}
.vertical:first-of-type { border-top:0; }
.vertical .v-label .num {
  font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:42px; color:var(--ac-teal);
  font-variant-numeric:tabular-nums; line-height:1;
}
.vertical .v-label .stage { font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--ac-grey); margin-top:8px; }
.vertical h3 { font-size:23px; margin-bottom:6px; }
.vertical .v-when { font-family:'Roboto Condensed',sans-serif; font-weight:400; font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ac-teal); margin-bottom:14px; }
.vertical p { margin:0 0 14px 0; font-size:15.5px; }
.vertical .v-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
.tag {
  display:inline-block; background:var(--ac-teal-soft); color:var(--ac-teal);
  font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.1em;
  text-transform:uppercase; padding:5px 11px; border-radius:999px;
}
.tag.ghost { background:transparent; border:1px solid var(--ac-rule); color:var(--ac-grey); }

/* ---------- Pilot timeline (phases) ---------- */
.phases { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.phase {
  background:var(--ac-bg-pure); border:1px solid var(--ac-rule); border-radius:8px; padding:18px 16px;
  border-top:3px solid var(--ac-teal); box-shadow:var(--ac-shadow-sm);
}
.phase .ph-num { font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--ac-grey); }
.phase .ph-name { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:16px; color:var(--ac-navy); text-transform:uppercase; letter-spacing:0.02em; margin:6px 0 4px; }
.phase .ph-days { font-size:13px; color:var(--ac-teal); font-weight:700; }
.phase .ph-desc { font-size:13px; color:var(--ac-grey); margin-top:6px; line-height:1.45; }

/* gate callouts */
.gates { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:22px; }
.gate {
  background:var(--ac-bg-pure); border:1px solid var(--ac-rule); border-left:4px solid var(--ac-teal);
  border-radius:6px; padding:20px 22px;
}
.gate h4 { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:17px; color:var(--ac-navy); margin:0 0 6px; text-transform:uppercase; letter-spacing:0.02em; }
.gate .thr { font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ac-teal); }
.gate p { font-size:14px; color:var(--ac-ink); margin:8px 0 0; }

/* ---------- Tables (shared) ---------- */
table.tbl { width:100%; border-collapse:collapse; font-size:14px; }
table.tbl th {
  text-align:left; font-family:'Roboto Condensed',sans-serif; font-weight:400; font-size:11px;
  text-transform:uppercase; letter-spacing:0.05em; color:var(--ac-navy);
  background:var(--ac-bg); padding:11px 10px; border-bottom:1px solid var(--ac-teal); vertical-align:bottom;
}
table.tbl td { padding:11px 10px; border-bottom:1px solid var(--ac-rule); vertical-align:top; line-height:1.5; color:var(--ac-ink); }
table.tbl tbody tr:nth-child(even) { background:var(--ac-bg); }
table.tbl .right { text-align:right; }
table.tbl .num { font-variant-numeric:tabular-nums; font-family:'Roboto Condensed',sans-serif; font-weight:500; color:var(--ac-navy); }
table.tbl .total td { border-top:1px solid var(--ac-navy); background:var(--ac-bg); font-weight:700; color:var(--ac-navy); }
.evidence { color:var(--ac-grey); font-size:13px; line-height:1.5; }
.evidence strong { color:var(--ac-ink); font-weight:600; }

/* hypothesis id chip */
.h-id {
  display:inline-block; width:30px; height:24px; line-height:24px; text-align:center;
  background:var(--ac-navy); color:var(--ac-teal); border-radius:4px;
  font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:12px; font-variant-numeric:tabular-nums;
}
.prio { display:inline-block; padding:3px 9px; border-radius:999px; font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.06em; text-transform:uppercase; }
.prio.high { background:var(--ac-teal-soft); color:var(--ac-teal); }
.prio.medhigh { background:rgba(10,22,40,0.06); color:var(--ac-navy); }
.prio.med { background:rgba(107,114,128,0.12); color:var(--ac-grey); }

/* ---------- Callout ---------- */
.callout {
  background:linear-gradient(90deg, var(--ac-teal-soft), rgba(0,180,216,0.02));
  border-left:3px solid var(--ac-teal); border-radius:6px; padding:18px 22px; margin-top:22px;
  font-size:15px; color:var(--ac-ink);
}
.callout strong { color:var(--ac-navy); }

/* ---------- KPI strip (briefings) ---------- */
.kpi-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.kpi { background:var(--ac-bg-pure); border:1px solid var(--ac-rule); border-left:3px solid var(--ac-teal); border-radius:6px; padding:16px 16px; }
.kpi .label { font-family:'Roboto',sans-serif; font-weight:700; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ac-grey); }
.kpi .val { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:26px; color:var(--ac-navy); margin-top:6px; line-height:1.05; font-variant-numeric:tabular-nums; }
.kpi .note { font-size:12px; color:var(--ac-grey); margin-top:6px; line-height:1.4; }

/* ---------- Briefing page chrome ---------- */
.brief-top { background:var(--ac-bg); border-bottom:1px solid var(--ac-rule); }
.brief-top .nav-inner { padding-top:14px; padding-bottom:14px; }
.brief-hero { padding:54px 24px 30px; }
.brief-hero .cell-map {
  display:inline-flex; gap:8px; align-items:center; margin-bottom:18px; flex-wrap:wrap;
}
.brief-hero h1 {
  font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:clamp(30px,4.4vw,46px);
  text-transform:uppercase; line-height:1.05; letter-spacing:-0.005em; color:var(--ac-navy); max-width:20ch;
}
.brief-hero .meta { margin-top:14px; font-size:13px; color:var(--ac-grey); }
.brief-section { padding:18px 24px; }
.brief-section h2 {
  font-family:'Roboto Condensed',sans-serif; font-weight:400; font-size:15px; text-transform:uppercase;
  letter-spacing:0.06em; color:var(--ac-navy); border-bottom:1px solid var(--ac-rule);
  padding-bottom:8px; margin:28px 0 16px;
}
.brief-lede { font-size:17px; line-height:1.6; color:var(--ac-navy); }
.brief-lede strong { color:var(--ac-teal); }
.sources-block { font-size:13px; color:var(--ac-grey); line-height:1.6; }
.sources-block strong { color:var(--ac-ink); font-weight:600; }
.disclaimer { font-size:12px; color:var(--ac-grey-soft); line-height:1.55; margin-top:14px; border-top:1px solid var(--ac-rule); padding-top:12px; }
.back-link { font-family:'Roboto Condensed',sans-serif; font-size:13px; text-transform:uppercase; letter-spacing:0.06em; color:var(--ac-teal); }

/* ---------- Footer ---------- */
.footer { background:var(--ac-bg); border-top:1px solid var(--ac-rule); padding:56px 24px 34px; }
.footer-grid { max-width:var(--ac-maxw); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:34px; }
.footer .wordmark-accelr8 { font-size:24px; }
.footer h5 { font-family:'Roboto Condensed',sans-serif; font-weight:500; font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ac-navy); margin:0 0 14px; }
.footer a, .footer p { font-size:14px; color:var(--ac-grey); margin:0 0 9px; }
.footer a:hover { color:var(--ac-teal); }
.footer-bottom { max-width:var(--ac-maxw); margin:30px auto 0; padding-top:18px; border-top:1px solid var(--ac-rule); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; color:var(--ac-grey-soft); }

/* ---------- Misc ---------- */
.center { text-align:center; }
.mt-0 { margin-top:0; }
.divider { height:1px; background:var(--ac-rule); border:0; margin:0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stat-grid, .kpi-strip { grid-template-columns:repeat(2,1fr); }
  .cols-3, .cols-4 { grid-template-columns:repeat(2,1fr); }
  .waterfall { grid-template-columns:repeat(2,1fr); }
  .phases { grid-template-columns:repeat(2,1fr); }
  .pl-grid { grid-template-columns:1fr; gap:0; }
  .hero-figure { display:none; }
}
@media (max-width: 720px) {
  .section { padding:60px 20px; }
  .nav-links { display:none; }
  .nav-links.open { display:flex; position:absolute; top:60px; left:0; right:0; flex-direction:column; gap:0; background:#fff; border-bottom:1px solid var(--ac-rule); padding:8px 0; }
  .nav-links.open a { padding:12px 24px; width:100%; }
  .nav-toggle { display:inline-flex; flex-direction:column; gap:4px; background:none; border:0; cursor:pointer; padding:8px; }
  .nav-toggle span { width:22px; height:1px; background:var(--ac-navy); display:block; }
  .stat-grid, .kpi-strip, .cols-2, .cols-3, .cols-4, .waterfall, .phases, .gates { grid-template-columns:1fr; }
  .vertical { grid-template-columns:1fr; gap:14px; }
  .vertical .v-label { display:flex; align-items:baseline; gap:14px; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer-bottom, .btn-row, .nav-toggle { display:none !important; }
  body { font-size:11px; }
  .section { padding:18px 0; }
  .card, .stat, .kpi, .phase, .wf-step { box-shadow:none; }
}

/* ================================================================
   v10 OVERRIDES — Blackstone-inspired restyle
   Editorial, flat, monochrome discipline. Fonts and backgrounds
   unchanged. Teal survives only in the Accelr8 "8" and the
   Baskerville ampersand.
   ================================================================ */

:root {
  --ac-teal: #6B7280;                 /* teal usages collapse to grey */
  --ac-teal-soft: rgba(10,22,40,0.05);
  --ac-teal-line: #E3E7EC;
  --ac-accent: #00B4D8;               /* the one true accent, used twice */
}
.wordmark-accelr8 .eight { color: var(--ac-accent); }
.amp-baskerville { color: var(--ac-accent); }

/* Links and nav: grey/navy only */
a:hover { color: var(--ac-navy); }
.nav-links a { color: var(--ac-grey); }
.nav-links a:hover { color: var(--ac-navy); }
.nav { box-shadow: none; border-bottom: 1px solid var(--ac-rule); }

/* Typographic primitives: editorial, no pills */
.eyebrow { color: var(--ac-grey); letter-spacing: 0.26em; font-weight: 500; }
.eyebrow.pill { background: transparent; color: var(--ac-grey); padding: 0; border-radius: 0; }
.rule-teal { background: var(--ac-navy); height: 1px; }

/* Buttons: square, uppercase, quiet */
.btn {
  border-radius: 2px; text-transform: uppercase; letter-spacing: 0.14em;
  font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 12px;
}
.btn-primary { background: var(--ac-navy); color: #fff; }
.btn-primary:hover { background: #1A2B3C; }
.btn-secondary { border: 1px solid var(--ac-navy); color: var(--ac-navy); background: transparent; }

/* Hero: bigger, calmer */
.h-hero { font-size: clamp(44px, 6.6vw, 76px); line-height: 1.02; letter-spacing: 0; }
.hero { padding: 120px 24px 96px; }
.hero .tagline { color: var(--ac-ink); }

/* Hero value waterfall: ruled editorial strip */
.hero-wf { margin: 30px 0 6px; gap: 0; border-top: 1px solid var(--ac-rule); border-bottom: 1px solid var(--ac-rule); padding: 12px 0; }
.hero-wf .wf-cap { color: var(--ac-grey); margin-right: 18px; letter-spacing: 0.2em; }
.hero-wf .wf-stage {
  font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.14em; color: var(--ac-grey); padding: 0 14px;
  border-left: 1px solid var(--ac-rule);
}
.hero-wf .wf-stage:first-of-type { border-left: 0; padding-left: 0; }
.hero-wf .wf-stage.last { color: var(--ac-navy); font-weight: 700; }
.hero-wf .wf-arrow { display: none; }

/* Chips */
.tag { background: transparent; border: 1px solid var(--ac-rule); color: var(--ac-grey); border-radius: 2px; }

/* Panels, cards, stats: flat and ruled, no shadows, no colour bars */
.hero-panel { border-top: 1px solid var(--ac-navy); box-shadow: none; border-radius: 2px; }
.hero-panel .hp-eyebrow, .hp-foot { color: var(--ac-grey); }
.hp-row .hp-n { color: var(--ac-navy); }
.stat { border: 0; border-top: 1px solid var(--ac-navy); border-radius: 0; box-shadow: none; padding: 18px 2px 0 0; background: transparent; }
.stat .num { font-size: 54px; }
.card { border: 0; border-top: 1px solid var(--ac-rule); border-radius: 0; box-shadow: none; padding: 26px 18px 26px 0; background: transparent; }
a.card:hover { box-shadow: none; transform: none; border-top-color: var(--ac-navy); }
.card .kicker { color: var(--ac-grey); }

/* Waterfall cards (briefings / m&a) */
.wf-step { border: 0; border-top: 1px solid var(--ac-navy); border-radius: 0; box-shadow: none; background: transparent; padding: 16px 8px 0 0; }
.wf-step .stage { color: var(--ac-grey); }
.wf-step .pct { color: var(--ac-navy); }

/* Framework matrix */
.matrix .cell.flag { background: rgba(10,22,40,0.07); border-color: rgba(10,22,40,0.18); }
.swatch.flag { background: rgba(10,22,40,0.07); border-color: rgba(10,22,40,0.18); }

/* Phases, gates, KPIs, callouts: navy structure, grey labels */
.phase { border-top: 1px solid var(--ac-navy); box-shadow: none; border-radius: 0; }
.phase .ph-days { color: var(--ac-grey); }
.gate { border-left: 1px solid var(--ac-navy); }
.gate .thr { color: var(--ac-grey); }
.kpi { border-left: 0; border-top: 1px solid var(--ac-navy); border-radius: 0; }
.callout { background: rgba(10,22,40,0.04); border-left: 1px solid var(--ac-navy); }
.h-id { color: #fff; }
.prio.high { background: rgba(10,22,40,0.06); color: var(--ac-navy); }
table th { border-bottom: 1px solid var(--ac-navy) !important; }
.brief-lede strong { color: var(--ac-navy); }
.back-link { color: var(--ac-grey); }
.pl-list .n { color: var(--ac-navy); }
.vertical .v-num { color: var(--ac-navy); }
.vertical .v-when { color: var(--ac-grey); }
.footer a:hover { color: var(--ac-navy); }

/* ================================================================
   v11 OVERRIDES — density and fluid type
   Tighter vertical rhythm, smaller hero, waterfall never breaks
   mid-strip, all display text scales with the viewport.
   ================================================================ */

/* Vertical rhythm: less air everywhere */
.section { padding: 56px 24px; }
.section-head { margin-bottom: 30px; }
.hero { padding: 44px 24px 52px; }
.hero-grid { align-items: start; gap: 36px; }

/* Hero type: calmer scale, fluid on every screen */
.h-hero { font-size: clamp(30px, 4.1vw, 48px); line-height: 1.07; }
.hero .tagline { font-size: clamp(17px, 2vw, 21px); margin: 18px 0 0 0; }
.hero .sub { font-size: clamp(15px, 1.7vw, 17px); margin: 14px 0 0 0; }
.btn-row { margin-top: 24px; }
h2.section-title { font-size: clamp(24px, 2.9vw, 30px); }
.stat .num { font-size: clamp(34px, 3.8vw, 46px); }

/* Value waterfall: caption on its own line, stages never wrap mid-strip */
.hero-wf { padding: 10px 0; margin: 22px 0 4px; }
.hero-wf .wf-cap { flex: 0 0 100%; margin: 0 0 8px 0; }
.hero-wf .wf-stage {
  font-size: clamp(9.5px, 1.05vw, 11px);
  padding: 0 clamp(7px, 1.1vw, 13px);
  white-space: nowrap;
}
.hero-wf .wf-stage:first-of-type { padding-left: 0; }
@media (max-width: 460px) {
  .hero-wf .wf-stage { border-left: 0; padding: 2px 10px 2px 0; }
}

/* Right-hand hero panel: hug the top, no dead space above */
.hero-visual { align-items: flex-start; }
.hero-panel { margin-top: 48px; }

/* Fluid body text floor for small screens */
body { font-size: clamp(14.5px, 1.05vw + 9px, 16px); }
.card h3 { font-size: clamp(16.5px, 1.5vw, 19px); }

/* ================================================================
   v12 OVERRIDES — text contrast
   Grey text darkened for WCAG-comfortable contrast on white.
   ================================================================ */
:root {
  --ac-grey: #4B5563;        /* was #6B7280: captions, labels, sub copy */
  --ac-grey-soft: #6B7280;   /* was #9CA3AF: tertiary text */
  --ac-teal: #4B5563;        /* former teal text elements follow suit */
}
.hero .sub { color: #374151; }
.section-head p { color: #374151; }


/* ===== v14: wordmark consistency ===== */
.wordmark-ac, .wordmark-accelr8, .nav-brand .by { text-transform: none; }
.nav-brand .by .wordmark-ac { font-size: 1.05em; }


/* ===== v15: unified fixed nav with current-page highlight ===== */
.nav { position: sticky; top: 0; z-index: 120; }
.nav-links a.active {
  background: var(--ac-navy); color: #fff !important;
  padding: 8px 14px; border-radius: 2px;
}
.nav-links a.active:hover { background: #1A2B3C; color: #fff !important; }

/* ===== v15: wide-screen container ===== */
:root { --ac-maxw: 1360px; }
.brief-hero h1 { max-width: none; }
.brief-lede { max-width: 62ch; }
.hero .sub { max-width: 62ch; }
@media (min-width: 1800px) { :root { --ac-maxw: 1520px; } }


/* ================================================================
   v16 OVERRIDES — batch fixes
   1/4: wider layout on large screens; 2: calm current-page marker;
   3: chapter-break section heads.
   ================================================================ */

/* 1 + 4: the container breathes on big screens */
:root { --ac-maxw: 1420px; }
.hero .tagline { max-width: 900px; }
.hero .sub { max-width: 72ch; }
.section-head { max-width: 980px; }
.brief-hero h1 { max-width: 1150px; text-wrap: balance; }
.brief-lede { max-width: 88ch; }
.brief-section > p { max-width: 88ch; }
@media (min-width: 1700px) { :root { --ac-maxw: 1560px; } }

/* 2: current page marker, no fill, no conflict with the CTA */
.nav-links a.active {
  background: transparent; padding: 0; border-radius: 0;
  color: var(--ac-navy) !important; font-weight: 700;
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-decoration-color: var(--ac-navy); text-underline-offset: 9px;
}
.nav-links a.active:hover { background: transparent; color: var(--ac-navy) !important; }

/* 3: section heads read as chapter breaks */
.section { padding: 72px 24px; }
.section-head { margin-bottom: 38px; }
.section-head::before { content: ""; display: block; width: 54px; height: 1px; background: var(--ac-navy); margin-bottom: 20px; }
h2.section-title { font-size: clamp(30px, 3.2vw, 40px); }
.section-head .eyebrow { letter-spacing: 0.3em; }


/* ===== v17: Blackstone split for section heads (option 1) ===== */
@media (max-width: 900px) {
  .section-head.split { display: block; }
}

/* ===== v17.1: split refined — eyebrow full-width, headline and intro share a baseline ===== */


/* ===== v17: technical summary rows (How it works) ===== */
.tech-sum { margin: 26px 0 22px; border-top: 1px solid var(--ac-navy); }
.ts-row { display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 28px; padding: 13px 0; border-bottom: 1px solid var(--ac-rule); }
.ts-l { font-family: 'Roboto Condensed', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ac-navy); padding-top: 2px; }
.ts-v { font-size: 14px; color: var(--ac-ink); line-height: 1.6; }
@media (max-width: 720px) { .ts-row { grid-template-columns: 1fr; gap: 4px; } }


/* ===== v17: layered architecture + finding anatomy (How it works) ===== */
.arch-row { display: grid; grid-template-columns: 170px minmax(0,1fr); gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--ac-rule); align-items: stretch; }
.arch-row:first-child { border-top: 1px solid var(--ac-navy); }
.arch-label { display: flex; flex-direction: column; justify-content: center; }
.al-t { font-family: 'Roboto Condensed', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ac-navy); }
.al-s { font-size: 10.5px; color: var(--ac-grey); margin-top: 2px; }
.arch-cells { display: grid; gap: 8px; }
.arch-cells.cols-6 { grid-template-columns: repeat(6, 1fr); }
.arch-cells.cols-4 { grid-template-columns: repeat(4, 1fr); }
.arch-cells.cols-3 { grid-template-columns: repeat(3, 1fr); }
.arch-cells.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ac { border: 1px solid var(--ac-rule); padding: 10px 12px; background: #fff; }
.ac b { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ac-ink); margin-bottom: 3px; }
.ac span { font-size: 11px; color: var(--ac-grey); line-height: 1.45; }
@media (max-width: 980px) { .arch-cells.cols-6 { grid-template-columns: repeat(3, 1fr); } .arch-cells.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .arch-row { grid-template-columns: 1fr; } .arch-cells.cols-6, .arch-cells.cols-3 { grid-template-columns: 1fr 1fr; } }
.finding-card { border: 1px solid var(--ac-navy); margin: 26px 0 6px; padding: 18px 20px; background: #fff; }
.fc-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 12px; flex-wrap: wrap; }
.fc-t { font-family: 'Roboto Condensed', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ac-navy); }
.fc-n { font-size: 11px; color: var(--ac-grey); }
.fc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.fc-item { display: grid; grid-template-columns: 130px minmax(0,1fr); gap: 14px; padding: 7px 0; border-top: 1px solid var(--ac-rule); }
.fc-l { font-family: 'Roboto Condensed', sans-serif; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ac-grey); padding-top: 1px; }
.fc-v { font-size: 12.5px; color: var(--ac-ink); line-height: 1.5; }
@media (max-width: 860px) { .fc-grid { grid-template-columns: 1fr; } }


/* ===== v17: framework-page fixes, applied globally where relevant ===== */
/* 1: less dead air above sections; anchors land tight under the sticky nav */
.section { padding: 32px 24px 56px; }
section[id] { scroll-margin-top: 0; }
/* 2: split heads: intro first baseline aligns with the title baseline */
/* 3: sub-section titles inside the framework read Medium */
#framework > .wrap > h3 { font-family: 'Roboto Condensed', sans-serif; font-weight: 400; letter-spacing: 0.02em; }


/* ===== v17: compact two-column framework, pools and levers on one screen ===== */
.fw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.fw-col .fw-h { font-family: 'Roboto Condensed', sans-serif; font-weight: 400; font-size: 19px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ac-navy); margin: 0 0 2px; }
.fw-sub { font-size: 16px; color: var(--ac-grey); margin: 0 0 16px; }
.fw-item { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 12px; padding: 10px 0; border-top: 1px solid var(--ac-rule); align-items: start; }
.fw-n { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.16em; color: var(--ac-grey); padding-top: 5px; }
.fw-t { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 400; font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ac-ink); }
.fw-d { display: block; font-size: 14.5px; color: var(--ac-ink); line-height: 1.55; margin-top: 3px; }
@media (max-width: 980px) { .fw-cols { grid-template-columns: 1fr; gap: 28px; } }

/* consistency: all h3 titles Regular unless explicitly Medium */
h3 { font-weight: 400; }


/* ===== v17: value waterfall, relocated from the hero into How it works ===== */
.vwf { margin: 28px 0 6px; border-top: 1px solid var(--ac-navy); padding-top: 14px; }
.vwf-head { font-family: 'Roboto Condensed', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ac-navy); margin-bottom: 14px; }
.vwf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.vwf-s { border-left: 1px solid var(--ac-rule); padding-left: 14px; }
.vwf-s:first-child { border-left: 0; padding-left: 0; }
.vwf-s b { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 400; font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ac-ink); margin-bottom: 4px; }
.vwf-s.vwf-last b { color: var(--ac-navy); font-weight: 700; }
.vwf-s span { font-size: 12.5px; color: var(--ac-grey); line-height: 1.5; }
.vwf-note { font-size: 12.5px; color: var(--ac-grey); margin: 14px 0 0; }
@media (max-width: 900px) { .vwf-grid { grid-template-columns: 1fr; gap: 8px; } .vwf-s { border-left: 0; padding-left: 0; border-top: 1px solid var(--ac-rule); padding-top: 8px; } .vwf-s:first-child { border-top: 0; } }


/* ===== v17: split head geometry, final: narrow gutter, aligned first lines ===== */
h2.section-title { line-height: 1.12; }


/* ===== v17: split heads hug their content; framework hierarchy by size ===== */
/* 12 item titles one step below the two sub-headings */
.fw-t { font-size: 16.5px; }


/* ===== v17: Blackstone-scale section heads, 28px gutter, aligned first lines ===== */
h2.section-title { font-size: clamp(34px, 3.6vw, 50px); line-height: 1.08; }


/* ===== v17: narrower standfirst with breathing room ===== */


/* ===== v17: head/standfirst final tune: doubled gutter, cap-line alignment ===== */


/* ===== v17: wider separation between heading and standfirst ===== */


/* ===== v17 FINAL head geometry: fixed description column, one axis for the whole site ===== */
/* Heading takes the flexible space; the standfirst column is a fixed width pinned right,
   so every description on every section starts at exactly the same x position. */


/* ===== v17 head geometry, definitive: fixed left heading column ===== */
/* Heading column is a fixed 640px from the left; description follows at a fixed x
   (704px) on every section of every page; leftover space stays on the right. */
h2.section-title { font-size: clamp(32px, 3.2vw, 46px); }


/* ================================================================
   SPLIT SECTION HEADS — single canonical definition (v18)
   Proportional columns: heading 54%, standfirst 46%. One axis at
   every viewport, no pixel pinning, no media special cases.
   ================================================================ */
.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  column-gap: 32px;
  max-width: none;
  align-items: start;
}
.section-head.split::before { display: none; }
.section-head.split .eyebrow { grid-column: 1 / -1; grid-row: 1; margin-bottom: 22px; }
.section-head.split h2 { grid-column: 1; grid-row: 2; margin: 0; padding-right: 12px; text-wrap: balance; }
.section-head.split p { grid-column: 2; grid-row: 2; margin: 0; padding-top: 5px; max-width: 60ch; font-size: 17.5px; line-height: 1.6; }
@media (max-width: 900px) { .section-head.split { display: block; } }


/* ===== v18: hero panel check marks aligned to the row titles ===== */
.hp-row { align-items: baseline; }
.hp-row .hp-n { padding-top: 0; line-height: inherit; }

/* ===== use-case card statistics ===== */
.uc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; border-top: 1px solid var(--ac-rule); padding-top: 14px; }
.uc-stats.one { grid-template-columns: 1fr; }
.uc-stat .n { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 26px; color: var(--ac-navy); font-variant-numeric: tabular-nums; line-height: 1.05; }
.uc-stat .c { display: block; font-size: 12.5px; color: var(--ac-ink); line-height: 1.45; margin-top: 4px; }
.uc-stat .s { display: block; font-size: 11px; font-style: italic; color: var(--ac-grey); margin-top: 4px; }

/* ===== architecture diagram: flow connectors + entity graph ===== */
.arch-row { position: relative; }
.arch-row + .arch-row::before { content:""; position:absolute; top:-11px; left:calc(170px + 14px + (100% - 184px)/2); width:1px; height:22px; background:var(--ac-soft); }
.arch-row + .arch-row::after { content:""; position:absolute; top:9px; left:calc(170px + 14px + (100% - 184px)/2 - 3px); width:6px; height:6px; border-right:1px solid var(--ac-soft); border-bottom:1px solid var(--ac-soft); transform:rotate(45deg); background:transparent; }
.tl-graph { display:block; width:100%; max-width:280px; height:auto; margin-top:10px; }
@media (max-width: 640px) { .arch-row + .arch-row::before, .arch-row + .arch-row::after { display:none; } }

/* ===== 40-day plan (How it works) ===== */
.phase-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 26px 0 22px; }
.ps { border-top: 2px solid var(--ac-navy); padding-top: 10px; }
.ps b { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ac-navy); }
.ps span { display: block; font-family: 'Roboto Condensed', sans-serif; font-size: 13px; color: var(--ac-ink); margin-top: 2px; }
.ps em { display: block; font-style: normal; font-size: 12px; color: var(--ac-grey); margin-top: 3px; }
.plan-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.plan-table th { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ac-grey); text-align: left; padding: 7px 10px 7px 0; border-bottom: 1px solid var(--ac-navy); }
.plan-table td { padding: 8px 10px 8px 0; border-bottom: 1px solid var(--ac-rule); vertical-align: top; color: var(--ac-ink); line-height: 1.45; }
.plan-table td.pd { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; color: var(--ac-navy); white-space: nowrap; }
.plan-table td.po { color: var(--ac-grey); white-space: nowrap; }
@media (max-width: 900px) { .phase-strip { grid-template-columns: 1fr 1fr; } .plan-table { font-size: 12px; } }
/* founder track record rows */
.tr-row { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--ac-rule); font-size: 13.5px; }
.tr-row:last-child { border-bottom: 0; }
.tr-row b { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 13.5px; color: var(--ac-navy); }
.tr-row span { color: var(--ac-ink); line-height: 1.5; }

/* ===== 40-day workstream timeline ===== */
.gw { margin: 0 0 26px; }
.gw-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-bottom: 1px solid var(--ac-navy); padding-bottom: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.gw-head b { font-family: 'Roboto Condensed', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ac-navy); }
.gw-head span { font-size: 12px; color: var(--ac-grey); }
.gw-grid { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 6px 16px; }
.gw-l { font-size: 12.5px; color: var(--ac-ink); align-self: center; line-height: 1.3; }
.gw-t { position: relative; height: 18px; background: var(--ac-bg, #F6F7F9); border-radius: 2px; overflow: visible; }
.gb { position: absolute; top: 0; bottom: 0; border-radius: 2px; font-style: normal; font-size: 10px; color: #fff; display: flex; align-items: center; padding: 0 7px; white-space: nowrap; overflow: hidden; }
.gb.d { background: rgba(22,52,94,0.38); }
.gb.v { background: rgba(22,52,94,0.62); }
.gb.r { background: rgba(22,52,94,0.85); }
.gb.s { background: var(--ac-soft); border-radius: 50%; width: 8px !important; height: 8px; top: 5px; padding: 0; }
.gb.g { background: #B3362B; padding: 0; }
.gm { position: absolute; top: -3px; bottom: -3px; width: 1px; background: rgba(179,54,43,0.5); }
.gw-axis { display: flex; justify-content: space-between; margin: 8px 0 0 266px; font-family: 'Roboto Condensed', sans-serif; font-size: 11px; color: var(--ac-grey); }
@media (max-width: 900px) { .gw { display: none; } }

a.fw-item { text-decoration: none; color: inherit; }
a.fw-item:hover .fw-t { color: var(--ac-teal); }
