:root {
  --ink: #171a1d;
  --paper: #f2f2ee;
  --orange: #f47a00;
  --blue: #265b8e;
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.6 'Segoe UI', Arial, sans-serif; }
header { height: 76px; background: var(--ink); color: #fff; padding: 0 clamp(20px, 6vw, 90px); display: flex; align-items: center; justify-content: space-between; font: 700 12px Consolas, monospace; text-transform: uppercase; }
header a, .cta > a { color: var(--orange); }
main > section { padding: clamp(60px, 9vw, 140px) clamp(20px, 8vw, 140px); border-bottom: 1px solid #c7c9c7; }
.cover { min-height: 78vh; position: relative; background: linear-gradient(112deg, transparent 66%, #dde7ea 66%); }
.cover p, .story span, .findings > span, .cta > span { font: 700 12px Consolas, monospace; text-transform: uppercase; color: var(--blue); }
h1, h2, h3, .score strong, .metrics b { font-family: 'Arial Narrow', 'Segoe UI', sans-serif; text-transform: uppercase; line-height: .9; }
h1, h2, h3 { overflow-wrap: anywhere; }
h1 { font-size: clamp(58px, 9vw, 150px); letter-spacing: -.055em; margin: 5vh 0; max-width: 10ch; }
h1 em { font-style: normal; color: var(--blue); }
.score { position: absolute; right: 8vw; bottom: 10%; display: flex; align-items: end; }
.score strong { font-size: clamp(70px, 10vw, 160px); color: var(--orange); }
.score span { font: 700 12px Consolas, monospace; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 0 !important; }
.metrics article { min-width: 0; padding: 50px 20px; border-right: 1px solid #c7c9c7; }
.metrics b { display: block; font-size: 58px; }
.metrics span { font-size: 13px; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.story > div { min-width: 0; }
.story h2, .cta h2 { font-size: clamp(44px, 6vw, 94px); letter-spacing: -.04em; }
.story p, .story li { max-width: 60ch; font-size: 18px; }
.inverse { background: var(--ink); color: #fff; }
.inverse span { color: #9cc8ed; }
.findings > div { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border: 1px solid #c7c9c7; }
.findings article { min-width: 0; padding: 36px; border-right: 1px solid #c7c9c7; }
.findings b { font: 700 12px Consolas, monospace; color: #9b4100; }
.findings h3 { font-size: 30px; }
.cta { text-align: center; background: #dde7ea; }
.cta > a { display: inline-block; background: var(--orange); color: var(--ink); padding: 18px 26px; font: 800 13px Consolas, monospace; text-transform: uppercase; }
.cta p a { color: var(--blue); }
footer { padding: 30px; background: var(--ink); color: #aaa; text-align: center; font: 11px Consolas, monospace; text-transform: uppercase; }
.comparison > span { font: 700 12px Consolas, monospace; text-transform: uppercase; color: var(--blue); }
.comparison h2 { font-size: clamp(44px, 6vw, 94px); letter-spacing: -.04em; }
.comparison > div { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison figure { min-width: 0; margin: 0; border: 1px solid #c7c9c7; background: #fff; }
.comparison img { display: block; width: 100%; height: 520px; object-fit: cover; object-position: top; }
.comparison figcaption { padding: 14px; font: 700 11px Consolas, monospace; text-transform: uppercase; }

@media (max-width: 900px) {
  header { height: auto; min-height: 76px; gap: 20px; flex-wrap: wrap; }
  .cover { min-height: 700px; }
  .score { position: static; margin-top: 60px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .findings > div, .comparison > div { grid-template-columns: 1fr; }
  .findings article { border-bottom: 1px solid #c7c9c7; }
  .comparison img { height: 360px; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(44px, 16vw, 70px); }
  .metrics { grid-template-columns: 1fr; }
  .metrics b { font-size: 48px; }
}













