:root {
  --ink: #17262c;
  --muted: #65747a;
  --paper: #f3f6f5;
  --panel: #ffffff;
  --line: #d5dddf;
  --green: #168267;
  --cyan: #168aa5;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 15px/1.55 Inter, "Segoe UI", sans-serif; letter-spacing: 0; }
.hero { min-height: 510px; display: flex; align-items: end; color: white; background: #15262d; border-bottom: 6px solid var(--green); }
.hero-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 64px; }
.eyebrow { margin: 0 0 18px; color: #8cd2c0; font-size: 12px; font-weight: 800; }
.eyebrow.dark { color: var(--green); }
h1 { max-width: 900px; margin: 0; font-size: clamp(48px, 7vw, 92px); line-height: .98; }
.intro { max-width: 720px; margin: 28px 0; color: #cbd6d9; font-size: 18px; }
.hero-status { display: flex; align-items: center; gap: 10px; color: #b9c7ca; }
.pulse { width: 9px; height: 9px; background: #71d7b8; border-radius: 50%; box-shadow: 0 0 0 6px rgba(113,215,184,.12); }
main { width: min(1240px, calc(100% - 48px)); margin: 0 auto 64px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--panel); border: 1px solid var(--line); border-top: 0; }
.metrics div { min-height: 136px; padding: 25px; border-right: 1px solid var(--line); }
.metrics div:last-child { border-right: 0; }
.metrics span, .metrics small { display: block; color: var(--muted); }
.metrics span { font-size: 12px; text-transform: uppercase; }
.metrics strong { display: block; margin: 14px 0 4px; font-size: 23px; }
.section { margin-top: 32px; padding: 34px; background: var(--panel); border: 1px solid var(--line); }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
h2 { margin: 0; font-size: 30px; line-height: 1.15; }
.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.scale-head { display: flex; justify-content: space-between; gap: 20px; }
.scale-head span { color: var(--muted); }
.bar { height: 14px; margin: 12px 0 17px; background: #e3e9e9; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--green); }
.bar.cyan span { background: var(--cyan); }
.scale p { margin: 0; color: var(--muted); }
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.pipeline div { min-height: 170px; padding: 22px; border-right: 1px solid var(--line); }
.pipeline div:last-child { border-right: 0; }
.pipeline b, .pipeline strong, .pipeline span { display: block; }
.pipeline b { color: var(--green); font-size: 12px; }
.pipeline strong { margin: 32px 0 8px; font-size: 21px; }
.pipeline span { color: var(--muted); }
.two-column { display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; }
ul { margin: 26px 0 0; padding-left: 20px; }
li { margin: 12px 0; }
aside { padding: 28px; color: white; background: #1b3038; }
aside span { color: #8cd2c0; font-size: 12px; text-transform: uppercase; }
aside strong { display: block; margin: 18px 0; font-size: 25px; }
aside p { color: #c9d5d8; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px max(24px, calc((100% - 1240px) / 2)); color: #cbd6d9; background: #15262d; }
footer a { color: #8cd2c0; }
@media (max-width: 800px) {
  .hero { min-height: 430px; }
  .hero-inner, main { width: min(100% - 32px, 1240px); }
  h1 { font-size: 48px; }
  .metrics, .boundary-grid, .pipeline, .two-column { grid-template-columns: 1fr; }
  .metrics div, .pipeline div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 24px; }
  .section-title, footer { align-items: start; flex-direction: column; }
}

