:root {
  --ink: #111b31;
  --navy: #233f78;
  --navy-deep: #0d1930;
  --red: #a7161b;
  --red-dark: #7d1115;
  --green: #0d6b57;
  --gold: #d79d2b;
  --paper: #ffffff;
  --mist: #f2f5f8;
  --line: #d7dee8;
  --muted: #5d6879;
  --max: 1220px;
  --shadow: 0 18px 44px rgba(13, 25, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy-deep);
}
.skip-link:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
}
.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 205px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff !important;
}

.micro-nav {
  border-bottom: 1px solid var(--line);
  background: var(--navy-deep);
  color: #fff;
}
.micro-nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.micro-nav-inner::-webkit-scrollbar { display: none; }
.micro-nav a {
  flex: 0 0 auto;
  color: #dce5f4;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.micro-nav a:hover, .micro-nav a[aria-current="page"] { color: #fff; }
.micro-nav a[aria-current="page"] { border-bottom: 3px solid var(--red); padding: 14px 0 11px; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 58px 0; }
.band-mist { background: var(--mist); }
.band-dark { background: var(--navy-deep); color: #fff; }
.band-red { background: var(--red); color: #fff; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.band-dark .eyebrow, .band-red .eyebrow { color: #fff; }
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 { font-size: 64px; font-weight: 900; }
h2 { font-size: 43px; font-weight: 900; }
h3 { font-size: 22px; font-weight: 800; }
.lede { max-width: 780px; font-size: 21px; color: var(--muted); }
.band-dark .lede, .band-red .lede { color: #d9e2ef; }
.fineprint { color: var(--muted); font-size: 13px; }
.text-link { color: var(--red); font-weight: 900; text-decoration-thickness: 2px; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  background: var(--mist);
}
.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 88px 72px 88px max(32px, calc((100vw - var(--max)) / 2));
}
.hero-copy-inner { width: 100%; max-width: 690px; }
.hero h1 { max-width: 680px; }
.hero .lede { margin: 26px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--red-dark); }
.btn-secondary { border-color: var(--navy); background: transparent; color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy-deep); }
.btn-light:hover { background: #eef2f7; }

.hero-board {
  position: relative;
  min-height: 690px;
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.hero-board::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -240px;
  width: 480px;
  height: 480px;
  border: 84px solid rgba(167,22,27,.52);
  border-radius: 50%;
}
.board-label { position: relative; z-index: 1; color: #aebbd0; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.board-title { position: relative; z-index: 1; margin: 10px 0 34px; font-size: 27px; max-width: 520px; }
.board-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.board-row strong { color: #fff; font-size: 28px; line-height: 1; }
.board-row span { color: #cbd5e5; font-size: 14px; }
.board-row:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.hero-board .source-stamp { position: relative; z-index: 1; margin-top: 24px; color: #aebbd0; font-size: 11px; }

.truth-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.truth-strip article { padding: 34px; border-right: 1px solid var(--line); }
.truth-strip article:last-child { border-right: 0; }
.truth-strip b { display: block; color: var(--red); font-size: 12px; margin-bottom: 7px; }
.truth-strip strong { font-size: 20px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.split-6040 { grid-template-columns: 1.2fr .8fr; }
.section-heading { max-width: 800px; margin-bottom: 38px; }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.comparison > article { padding: 36px; }
.comparison > article + article { border-left: 1px solid var(--line); }
.comparison h3 { margin-bottom: 24px; }
.cost-line { margin: 19px 0; }
.cost-line div { display: flex; justify-content: space-between; gap: 18px; font-size: 13px; font-weight: 800; }
.meter { height: 9px; margin-top: 7px; background: #e2e7ef; }
.meter span { display: block; height: 100%; background: var(--red); }
.comparison article:last-child .meter span { background: var(--green); }
.comparison-note { padding-top: 21px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.route-card { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.route-card:nth-child(3n) { border-right: 0; }
.route-card:nth-last-child(-n+3) { border-bottom: 0; }
.route-card:hover { background: #fff; box-shadow: var(--shadow); position: relative; z-index: 2; }
.route-card .num { display: block; color: var(--red); font-size: 12px; font-weight: 900; margin-bottom: 34px; }
.route-card h3 { margin-bottom: 12px; }
.route-card p { color: var(--muted); font-size: 14px; }
.route-card .arrow { display: block; margin-top: 21px; color: var(--red); font-weight: 900; }

.filter-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.filter-list { border-top: 1px solid rgba(255,255,255,.2); }
.filter-row { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.filter-row b { color: #f39ca0; }
.filter-row strong { display: block; margin-bottom: 5px; }
.filter-row span { color: #cbd5e5; font-size: 14px; }

.page-hero { padding: 88px 0 72px; background: var(--mist); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 930px; font-size: 58px; }
.page-hero .lede { margin: 24px 0 0; }
.breadcrumb { margin-bottom: 35px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--navy); font-weight: 800; }

.statement { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 28px; font-weight: 800; }
.statement em { color: var(--red); font-style: normal; }
.numbered-list { counter-reset: item; border-top: 1px solid var(--line); }
.numbered-list article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.numbered-list article::before { counter-increment: item; content: counter(item, decimal-leading-zero); color: var(--red); font-weight: 900; }
.numbered-list h3 { margin-bottom: 8px; }
.numbered-list p { margin: 0; color: var(--muted); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar { padding: 28px; border-left: 5px solid var(--red); background: #fff; box-shadow: 0 10px 30px rgba(13,25,48,.08); }
.pillar h3 { margin-bottom: 9px; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; }

.source-box { padding: 24px; border: 1px solid var(--line); background: #fff; }
.source-box h3 { margin-bottom: 11px; }
.source-box a { color: var(--red); font-weight: 800; }

.timeline { position: relative; margin-top: 40px; }
.timeline::before { content: ""; position: absolute; left: 24px; top: 18px; bottom: 18px; width: 2px; background: var(--line); }
.timeline article { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 28px; padding: 0 0 38px; }
.timeline article:last-child { padding-bottom: 0; }
.timeline b { position: relative; z-index: 1; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff; }
.timeline h3 { margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }

.approval-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.approval-grid article { padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approval-grid article:nth-child(2n) { border-right: 0; }
.approval-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.approval-grid span { color: var(--red); font-size: 12px; font-weight: 900; }
.approval-grid h3 { margin: 12px 0; }
.approval-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.data-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.data-table th, .data-table td { padding: 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--navy-deep); color: #fff; font-size: 13px; }
.data-table td { font-size: 14px; }

.check-panel { padding: 34px; border: 1px solid var(--line); background: #fff; }
.check-panel label { display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.check-panel label:last-child { border-bottom: 0; }
.check-panel input { width: 20px; height: 20px; accent-color: var(--red); }
.score-panel { position: sticky; top: 150px; padding: 34px; background: var(--navy-deep); color: #fff; }
.score-number { display: block; font-size: 70px; font-weight: 900; line-height: 1; }
.score-panel p { color: #cbd5e5; }

.calculator { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.calc-inputs, .calc-output { padding: 32px; border: 1px solid var(--line); }
.calc-output { background: var(--navy-deep); color: #fff; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #bfc8d6;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.result-row { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.result-row span { color: #b8c4d8; font-size: 13px; }
.result-row strong { font-size: 20px; }
.result-total { padding-top: 30px; }
.result-total span { display: block; color: #b8c4d8; font-size: 12px; text-transform: uppercase; font-weight: 900; }
.result-total strong { display: block; margin-top: 6px; font-size: 43px; }

.pipeline-demo { padding: 34px; border: 1px solid var(--line); background: #fff; }
.cohort { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: center; margin: 19px 0; }
.cohort strong { font-size: 13px; }
.cohort-track { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; min-height: 44px; }
.cohort-track span { display: grid; place-items: center; border: 1px solid #fff; background: #dfe6f0; color: var(--ink); font-size: 10px; font-weight: 800; text-align: center; }
.cohort-track span:nth-child(3) { background: #aab9cf; }
.cohort-track span:nth-child(4) { background: var(--gold); }
.cohort-track span:nth-child(5) { background: var(--green); color: #fff; }

.pilot-steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.pilot-steps article { min-height: 230px; padding: 26px; border-right: 1px solid var(--line); }
.pilot-steps article:last-child { border-right: 0; }
.pilot-steps b { color: var(--red); font-size: 12px; }
.pilot-steps h3 { margin: 25px 0 10px; }
.pilot-steps p { color: var(--muted); font-size: 14px; }

.readiness-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.readiness-form .full { grid-column: 1 / -1; }
.summary-output { margin-top: 28px; padding: 30px; border-left: 5px solid var(--red); background: var(--mist); }
.summary-output[hidden] { display: none; }

.quote-band { padding: 58px 0; background: var(--red); color: #fff; }
.quote-band blockquote { margin: 0; max-width: 1050px; font-size: 34px; line-height: 1.32; font-weight: 900; }

.cta-band { padding: 62px 0; background: var(--navy); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 760px; }

.footer { padding: 52px 0 24px; background: #0a1427; color: #d8e0eb; }
.footer-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 55px; }
.footer img { width: 185px; margin-bottom: 22px; padding: 7px; background: #fff; }
.footer h3 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer a { display: block; margin: 8px 0; color: #d8e0eb; font-size: 13px; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer p { font-size: 12px; }
.copyright { width: min(var(--max), calc(100% - 40px)); margin: 38px auto 0; padding-top: 18px; border-top: 1px solid #2b3850; font-size: 11px; }

@media (max-width: 1050px) {
  h1 { font-size: 52px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 40px; justify-content: center; }
  .hero-board { min-height: 560px; }
  .nav-links { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 24px; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .route-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .route-card:nth-child(2n) { border-right: 0; }
  .route-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .route-card:nth-last-child(-n+2) { border-bottom: 0; }
  .pilot-steps { grid-template-columns: repeat(2, 1fr); }
  .pilot-steps article { border-bottom: 1px solid var(--line); }
  .pilot-steps article:nth-child(2n) { border-right: 0; }
  .pilot-steps article:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 760px) {
  .nav { width: min(100% - 28px, var(--max)); }
  .brand img { width: 174px; }
  .micro-nav-inner, .container, .narrow { width: min(100% - 28px, var(--max)); }
  h1, .page-hero h1 { font-size: 40px; }
  h2 { font-size: 33px; }
  .lede { font-size: 18px; }
  .hero-copy { padding: 58px 24px; }
  .hero-board { min-height: auto; padding: 56px 24px; }
  .board-row { grid-template-columns: 92px 1fr; }
  .truth-strip, .split, .filter-section, .comparison, .calculator, .readiness-form, .footer-grid { grid-template-columns: 1fr; }
  .truth-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .truth-strip article:last-child { border-bottom: 0; }
  .comparison > article + article { border-left: 0; border-top: 1px solid var(--line); }
  .route-grid { grid-template-columns: 1fr; }
  .route-card, .route-card:nth-child(2n), .route-card:nth-child(3n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .route-card:last-child { border-bottom: 0; }
  .pillars, .approval-grid, .pilot-steps { grid-template-columns: 1fr; }
  .pillar { min-height: 0; }
  .approval-grid article, .approval-grid article:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .approval-grid article:last-child { border-bottom: 0; }
  .pilot-steps article, .pilot-steps article:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .pilot-steps article:last-child { border-bottom: 0; }
  .data-table { display: block; overflow-x: auto; }
  .readiness-form .full { grid-column: auto; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .quote-band blockquote { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.footer-legal{width:min(var(--max),calc(100% - 40px));margin:30px auto 0;max-width:920px;color:#d8e0eb;}
