/* Safe & Secure — design tokens + base (v2) */

:root {
  /* paper / ink — midnight navy + warm cream + brass signal */
  --paper:    #EDE6D2;
  --paper-2:  #E2D9BF;
  --paper-3:  #D2C7A6;
  --ink:      #0A1525;
  --ink-2:    #1E3052;
  --mute:     #6F6B5C;
  --mute-2:   #ADA48B;
  --rule:     #2a2d33;
  --rule-soft:#C9BFA1;

  /* accent system */
  --steel:    #0F2240;
  --steel-2:  #1B3458;
  --signal:   #C9A04A;     /* brass — energy */
  --signal-2: #A47F2E;
  --highway:  #E8B43A;
  --safe:     #2F6A48;     /* trust green for badges */
  --safe-2:   #1f4e36;
  --ember:    #D6533F;     /* used sparingly as warm accent */

  /* fonts — simple, readable system fonts */
  --f-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono:    'Monaco', 'Menlo', monospace;

  /* metrics */
  --pad-x: clamp(20px, 4vw, 80px);
  --max-w: 1640px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  overscroll-behavior-y: none;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
/* Smooth out scroll-driven elements with GPU compositing */
.hero-cine-bg,
.reveal, .reveal-x, .reveal-scale,
.field-cell, .service, .desk-card, .run-step,
.case-img, .road-img, .bh-img,
img, image-slot {
  will-change: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── grain texture ─────────────────────────────────────── */
.grain::before {
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: .85;
  z-index: 1000;
}

/* ── ambient motion (always-on) ────────────────────────── */

/* live status bar above the nav */
.status-bar {
  background: var(--ink); color: var(--mute-2);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, var(--ink));
  position: sticky; top: 0; z-index: 51;
}
.status-row {
  display: flex; gap: 24px; height: 30px; align-items: center;
  overflow: hidden; white-space: nowrap;
}
.sb-item { display: inline-flex; align-items: center; gap: 8px; flex: none; }
.sb-item .blip {
  width: 6px; height: 6px; background: var(--signal); border-radius: 50%;
  animation: blip 1.4s infinite;
}
.sb-item.live { color: var(--signal); }
.sb-item .sep { color: color-mix(in srgb, var(--mute-2) 50%, transparent); margin: 0 4px; }
.sb-spacer { flex: 1; }
.sb-tick {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--paper);
}
.sb-tick .badge {
  background: color-mix(in srgb, var(--safe) 70%, transparent);
  color: var(--paper); padding: 2px 6px;
  letter-spacing: .12em;
}

@media (max-width: 900px) { .status-bar { display: none; } }

/* nav is no longer top-of-page */
.nav { top: 30px; }

/* pulsing dot for mile markers */
.mm-dot {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--signal) 60%, transparent);
  animation: mmpulse 1.8s ease-out infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes mmpulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--signal) 60%, transparent); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0   transparent; }
}

/* CTA arrows — loop a slide-out shadow arrow */
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--signal .arrow {
  animation: arrowSlide 2.6s ease-in-out infinite;
}
@keyframes arrowSlide {
  0%, 60%, 100% { transform: translateX(0); }
  75% { transform: translateX(4px); }
  90% { transform: translateX(0); }
}

/* progress sweep in live desk feed header */
.ld-feed-head { position: relative; overflow: hidden; }
.ld-feed-head::after {
  content:""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 30%;
  background: var(--signal);
  animation: ldSweep 3.2s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes ldSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* annotation arrow gentle bob */
.annot { animation: bob 3s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}

/* radar sweep over the road photo */
.road-img::after {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, color-mix(in srgb, var(--signal) 22%, transparent) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: roadSweep 7s ease-in-out infinite;
  z-index: 3;
  mix-blend-mode: screen;
}
@keyframes roadSweep {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* drifting accent dots between sections */
.tick-rail {
  position: relative;
  height: 28px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
  background: var(--paper);
}
.tick-rail::before {
  content:""; position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; margin-top: -1px;
  background: repeating-linear-gradient(90deg, transparent 0 16px, var(--ink-2) 16px 17px, transparent 17px 60px);
  animation: tickDrift 24s linear infinite;
  opacity: .35;
}
@keyframes tickDrift {
  from { background-position: 0 0; }
  to   { background-position: -600px 0; }
}
.tick-rail .blip {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--signal); border-radius: 50%;
  animation: tickBlip 12s linear infinite;
}
.tick-rail .blip:nth-child(1) { animation-delay: 0s; }
.tick-rail .blip:nth-child(2) { animation-delay: -4s; }
.tick-rail .blip:nth-child(3) { animation-delay: -8s; }
@keyframes tickBlip {
  from { left: -10px; opacity: 1; }
  to   { left: 110%;  opacity: 1; }
}

/* second marquee at footer */
.foot-ticker {
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  margin: 0 calc(var(--pad-x) * -1) 56px;
  overflow: hidden;
  padding: 18px 0;
}
.foot-ticker-track {
  display: flex; gap: 48px; white-space: nowrap; align-items: center;
  animation: scroll 50s linear infinite;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute-2);
}
.foot-ticker-track .route {
  display: inline-flex; gap: 12px; align-items: center; padding-right: 48px;
}
.foot-ticker-track .route .city { color: var(--paper); }
.foot-ticker-track .route .arrow-r { color: var(--signal); }
.foot-ticker-track .route .miles { color: var(--mute-2); }

/* scorecard label pulse */
.sc-bar.warn .fill {
  background: var(--ember);
  position: relative;
}
.in .sc-bar.warn .fill::after {
  content:""; position: absolute; top:0; right:0; bottom:0; width:6px;
  background: color-mix(in srgb, var(--ember) 50%, white);
  animation: pulseSpot 1.6s ease-in-out infinite;
}
@keyframes pulseSpot { 0%,100%{opacity:1} 50%{opacity:.3} }

/* number-card subtle hover lift to feel responsive */
.num-card { transition: transform .3s ease; }
.num-card:hover { transform: translateY(-2px); }

/* ── Field — imagery grid ──────────────────────────────── */
.field-sec {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.field-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 0;
  border: 1px solid var(--ink);
}
.field-cell {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--steel);
}
.field-cell:nth-child(3),
.field-cell:nth-child(5) { border-right: 0; }
.field-cell:nth-child(4),
.field-cell:nth-child(5) { border-bottom: 0; }
.field-cell.tall { grid-row: span 2; }

.field-cell image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0d1929; --slot-fg: #c6cbd1;
}
.field-cell .fc-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 10px; background: var(--signal); color: var(--ink);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
}
.field-cell .fc-tag.dark { background: var(--ink); color: var(--signal); }
.field-cell .fc-cap {
  position: absolute; left: 18px; right: 18px; bottom: 14px; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--paper);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  pointer-events: none;
}
.field-cell .fc-cap-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,21,37,.35) 0%, rgba(10,21,37,0) 30%, rgba(10,21,37,0) 55%, rgba(10,21,37,.85) 100%);
  pointer-events: none;
}
.field-cell .fc-title {
  position: absolute; left: 18px; right: 18px; bottom: 40px; z-index: 2;
  color: var(--paper);
  font-family: var(--f-sans); font-weight: 500;
  font-size: 22px; letter-spacing: -0.018em; line-height: 1.1;
  max-width: 22ch; pointer-events: none;
}

@media (max-width: 1100px) {
  .field-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .field-cell.tall { grid-row: auto; }
  .field-cell:nth-child(3) { border-right: 1px solid var(--ink); }
  .field-cell:nth-child(4) { border-right: 0; }
  .field-cell:nth-child(5) { display: none; }
}
@media (max-width: 700px) {
  .field-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 240px); }
  .field-cell { border-right: 0 !important; }
}

/* ── scroll reveals ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]  { transition-delay: .06s; }
.reveal[data-d="2"]  { transition-delay: .12s; }
.reveal[data-d="3"]  { transition-delay: .18s; }
.reveal[data-d="4"]  { transition-delay: .24s; }
.reveal[data-d="5"]  { transition-delay: .30s; }
.reveal[data-d="6"]  { transition-delay: .36s; }
.reveal[data-d="7"]  { transition-delay: .42s; }
.reveal[data-d="8"]  { transition-delay: .48s; }
.reveal[data-d="9"]  { transition-delay: .54s; }
.reveal[data-d="10"] { transition-delay: .60s; }

.reveal-x { opacity: 0; transform: translateX(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal-x.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.96); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); transform-origin: center; }
.reveal-scale.in { opacity: 1; transform: none; }

/* ── creative reveals ──────────────────────────────────── */

/* line-up: each <span> child slides up from behind an invisible mask.
   Use on <h1><span>line 1</span><span>line 2</span></h1> */
.line-up { overflow: hidden; display: block; }
.line-up > span,
.line-up > .ln {
  display: block; overflow: hidden;
  transform: translateY(0);
}
.line-up > span > i,
.line-up > .ln > i {
  display: block; transform: translateY(102%);
  transition: transform 1.1s cubic-bezier(.7,0,.2,1);
  font-style: inherit; will-change: transform;
}
.line-up.in > span:nth-child(1) > i,
.line-up.in > .ln:nth-child(1) > i { transition-delay: .05s; transform: none; }
.line-up.in > span:nth-child(2) > i,
.line-up.in > .ln:nth-child(2) > i { transition-delay: .18s; transform: none; }
.line-up.in > span:nth-child(3) > i,
.line-up.in > .ln:nth-child(3) > i { transition-delay: .31s; transform: none; }
.line-up.in > span:nth-child(4) > i,
.line-up.in > .ln:nth-child(4) > i { transition-delay: .44s; transform: none; }
.line-up.in > span:nth-child(5) > i,
.line-up.in > .ln:nth-child(5) > i { transition-delay: .57s; transform: none; }

/* mask-wipe: a coloured bar slides across, leaves the text behind */
.wipe {
  position: relative;
  display: inline-block;
  color: var(--ink);
}
.wipe::after {
  content:""; position: absolute; inset: 0;
  background: var(--signal);
  transform: scaleX(1); transform-origin: left;
  transition: transform 1.2s cubic-bezier(.7,0,.15,1);
}
.wipe.in::after { transform: scaleX(0); transform-origin: right; }

/* clip-reveal: image clips in from a direction. Default to fully open
   so anything that misses the observer is still visible. */
.clip-r { clip-path: inset(0 0 0 0); transition: clip-path 1.4s cubic-bezier(.7,0,.2,1); }
.clip-r.armed { clip-path: inset(0 100% 0 0); }
.clip-r.armed.in { clip-path: inset(0 0 0 0); }
.clip-l { clip-path: inset(0 0 0 0); transition: clip-path 1.4s cubic-bezier(.7,0,.2,1); }
.clip-l.armed { clip-path: inset(0 0 0 100%); }
.clip-l.armed.in { clip-path: inset(0 0 0 0); }
.clip-b { clip-path: inset(0 0 0 0); transition: clip-path 1.4s cubic-bezier(.7,0,.2,1); }
.clip-b.armed { clip-path: inset(100% 0 0 0); }
.clip-b.armed.in { clip-path: inset(0 0 0 0); }

/* label-line: a thin line under the eyebrow draws across */
.label-line {
  position: relative; display: inline-block; padding-bottom: 8px;
}
.label-line::after {
  content:""; position: absolute; left:0; right:0; bottom: 0;
  height: 1px; background: var(--ink-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s cubic-bezier(.7,0,.2,1) .1s;
}
.in .label-line::after,
.label-line.in::after { transform: scaleX(1); }

/* shimmer underline for service cards on hover */
.svc-arrow-line {
  position: absolute; left: 24px; right: 24px; bottom: 30px;
  height: 1px; background: currentColor; opacity: .2;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.7,0,.2,1), opacity .2s;
}
.service:hover .svc-arrow-line { transform: scaleX(1); opacity: .4; }

/* connecting line that draws across The Run mile markers */
.run-grid { position: relative; }
.run-line {
  position: absolute; left: 0; right: 0; top: -1px;
  height: 2px; background: var(--signal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.8s cubic-bezier(.7,0,.2,1) .2s;
  z-index: 2;
}
.run-grid.in .run-line { transform: scaleX(1); }

/* tickets on the case-numbers — flick like a split-flap */
.flick > b {
  display: inline-block;
  animation: flick .5s steps(2, end);
}
@keyframes flick { from { transform: translateY(-10%); opacity: 0; } to { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .line-up > span > i, .line-up > .ln > i { transform: none !important; transition: none !important; }
  .wipe::after { transform: scaleX(0) !important; }
  .clip-r, .clip-l, .clip-b { clip-path: none !important; }
  .label-line::after, .run-line { transform: scaleX(1) !important; }
}

/* ── typography ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.italic-serif {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 500;
  color: var(--signal);
}
.display {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-wrap: pretty;
}
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.mono { font-family: var(--f-mono); }

/* ── containers ────────────────────────────────────────── */
.shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

hr.rule { border:0; height:1px; background: var(--ink); opacity:.85; margin:0; }
hr.rule-soft { border:0; height:1px; background: var(--rule-soft); margin:0; }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 0;
  font-family: var(--f-sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--steel); }
.btn--signal { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.btn--signal:hover { background: var(--signal-2); border-color: var(--signal-2); color: var(--paper); }
.btn--ghost  { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.arrow { width:16px; height:9px; flex:none; }

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-brand {
  display:flex; align-items:center; gap: 10px;
  font-weight: 500; letter-spacing: -0.01em; font-size: 16px;
}
.nav-logo {
  height: 72px; width: auto; max-height: 90px;
  object-fit: contain;
}
.brand-mark {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--f-mono); font-weight: 600; font-size: 14px;
  letter-spacing: -0.02em;
  position: relative;
}
.brand-mark::after {
  content:""; position: absolute; right:-2px; bottom:-2px;
  width: 8px; height: 8px; background: var(--signal);
}
.nav-links { display:flex; gap: 28px; }
.nav-links a {
  font-size: 13.5px; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content:""; position: absolute; left:0; right:0; bottom:-22px;
  height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display:flex; align-items:center; gap: 14px; }
.usdot-chip {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  border: 1px solid var(--rule-soft);
  padding: 4px 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.usdot-chip .dot { width:6px;height:6px;background:var(--safe);border-radius:50%; box-shadow:0 0 0 3px color-mix(in srgb, var(--safe) 20%, transparent); }

/* ── hero ──────────────────────────────────────────────── */
.hero { padding-top: 40px; padding-bottom: 30px; position: relative; }
.hero-eyebrow-row {
  display:flex; align-items:center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
}
.hero-eyebrow-row .sep { flex:1; height:1px; background: var(--ink); opacity:.4; }

.hero-2up {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.hero-left { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.hero-right {
  position: relative; overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--steel);
  min-height: 560px;
}
.hero-right image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0d1929; --slot-fg: #c6cbd1;
}
.hero-right .corner-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 10px; background: var(--signal); color: var(--ink);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
}
.hero-right .corner-foot {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--paper);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  pointer-events: none;
}
.hero-right .hr-grad {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,21,37,.25) 0%, rgba(10,21,37,0) 25%, rgba(10,21,37,0) 60%, rgba(10,21,37,.85) 100%);
}
.hero-right .hr-pip {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: grid; gap: 6px;
}
.hero-right .hr-pip .pp {
  width: 4px; height: 18px; background: var(--signal); opacity: .35;
}
.hero-right .hr-pip .pp:nth-child(2) { opacity: .6; }
.hero-right .hr-pip .pp:nth-child(3) { opacity: 1; }

.hero h1 {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-wrap: balance;
}
.hero h1 em, .hero h1 .em {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--signal);
}
.hero h1 .sig { color: var(--signal); }

.hero-sub {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
.hero-sub p {
  font-size: 17px; line-height: 1.45; color: var(--ink-2);
  max-width: 50ch; margin: 0;
}
.hero-cta { display:flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1100px) {
  .hero-2up { grid-template-columns: 1fr; }
  .hero-right { min-height: 380px; }
}

/* ── cinematic hero ─────────────────────────────────────── */
.hero-cine {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background: #060d18;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-cine-bg {
  position: absolute; inset: 0; z-index: 0;
  animation: heroZoom 22s ease-out forwards;
}
.hero-cine-bg image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0d1929; --slot-fg: #c6cbd1;
}
.hero-cine-bg image-slot img,
.hero-cine-bg image-slot { display: block; width: 100%; height: 100%; object-fit: cover; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

.hero-cine-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(6,13,24,0.95) 0%,
      rgba(6,13,24,0.86) 26%,
      rgba(6,13,24,0.55) 50%,
      rgba(6,13,24,0.22) 72%,
      rgba(6,13,24,0.05) 100%);
}
.hero-cine-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% 50%, transparent 35%, rgba(6,13,24,0.55) 100%),
    linear-gradient(180deg, rgba(6,13,24,0.35) 0%, transparent 18%, transparent 72%, rgba(6,13,24,0.75) 100%);
}

.hero-cine-inner {
  position: relative; z-index: 3;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--pad-x) 110px;
  display: flex; flex-direction: column;
  gap: 28px;
}

.hero-cine-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(237, 230, 210, 0.85);
  width: fit-content;
}
.hero-cine-eyebrow .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(201, 160, 74, 0.20);
  animation: pulseLive 2.6s ease-in-out infinite;
}
@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 160, 74, 0.20); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 160, 74, 0.05); }
}
.hero-cine-eyebrow .sep {
  width: 32px; height: 1px;
  background: rgba(237, 230, 210, 0.35);
}

.hero-cine-title {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(52px, 7.2vw, 128px);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 0.92;
  color: #fbf6e6;
  text-wrap: balance;
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}
.hero-cine-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--signal);
  background: linear-gradient(180deg, #E8C067 0%, var(--signal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cine-sub {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
  color: rgba(237, 230, 210, 0.82);
  max-width: 56ch;
  margin: 8px 0 0;
  font-weight: 400;
}
.hero-cine-accent {
  display: inline;
  color: #fbf6e6;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 62%, rgba(201, 160, 74, 0.35) 62%, rgba(201, 160, 74, 0.35) 88%, transparent 88%);
}

.hero-cine-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 16px;
}
.btn--ghost-light {
  background: transparent;
  color: rgba(237, 230, 210, 0.95);
  border-color: rgba(237, 230, 210, 0.35);
}
.btn--ghost-light:hover {
  background: rgba(237, 230, 210, 0.10);
  border-color: rgba(237, 230, 210, 0.60);
  color: #fbf6e6;
}

.hero-cine-foot {
  display: flex; align-items: center; gap: 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(237, 230, 210, 0.18);
  max-width: 640px;
}
.hcf-item { display: flex; flex-direction: column; gap: 6px; }
.hcf-num {
  font-family: var(--f-sans);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.02em;
  color: #fbf6e6;
}
.hcf-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237, 230, 210, 0.6);
}
.hcf-divider {
  width: 1px; height: 36px;
  background: rgba(237, 230, 210, 0.18);
}

.hero-cine-tag {
  position: absolute; z-index: 3;
  right: var(--pad-x); top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(237, 230, 210, 0.25);
  background: rgba(6, 13, 24, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(237, 230, 210, 0.85);
}
.hct-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6ECF8A;
  box-shadow: 0 0 8px rgba(110, 207, 138, 0.7);
}

@media (max-width: 900px) {
  .hero-cine { min-height: 88vh; }
  .hero-cine-inner { padding: 90px var(--pad-x) 80px; }
  .hero-cine-foot { gap: 18px; }
  .hcf-num { font-size: 22px; }
  .hero-cine-tag { right: 16px; top: 16px; }
}
@media (max-width: 600px) {
  .hero-cine-foot { flex-wrap: wrap; }
  .hcf-divider { display: none; }
}

/* annotation arrow + scribble */
.annot {
  position: absolute;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--signal-2);
  display:flex; align-items:center; gap: 8px;
  pointer-events: none;
}
.annot svg { width: 60px; height: 28px; flex: none; }

/* ── strip below hero ──────────────────────────────────── */
.belowhero {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.belowhero > * {
  padding: 22px 24px;
  border-right: 1px solid var(--ink);
  min-height: 400px;
  display: flex; flex-direction: column;
}
.belowhero > *:last-child { border-right: 0; }

.bh-img {
  padding: 0 !important;
  border-right: 1px solid var(--ink);
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.bh-img image-slot {
  width: 100%; height: 100%; min-height: 400px;
  --slot-bg: #0d1929;
  --slot-fg: #c6cbd1;
}
.bh-img .img-overlay {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: #f4ede0;
  z-index: 2; pointer-events: none;
}
.bh-img .img-overlay .cap { font-family: var(--f-mono); font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase; opacity:.85; }
.bh-img .img-overlay .num { font-family: var(--f-mono); font-size: 10.5px; letter-spacing:.14em;}
.bh-img .corner-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 10px; background: var(--signal); color: var(--ink);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
}

/* scorecard */
.scorecard { background: var(--paper); position: relative; }
.sc-head {
  display:flex; justify-content:space-between; align-items: center;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.sc-head .live {
  display:inline-flex; align-items:center; gap: 6px;
  color: var(--safe);
}
.sc-head .live .blip { width:6px; height:6px; background: var(--safe); border-radius: 50%; animation: blip 1.4s infinite; }
@keyframes blip { 0%,100%{opacity:1} 50%{opacity:.25} }

.sc-score {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 22px;
}
.sc-score .big {
  font-size: 96px; font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  font-family: var(--f-sans);
}
.sc-score .small { font-size: 22px; color: var(--mute); }
.sc-label { margin-top: 4px; font-size: 12.5px; color: var(--ink-2); }

.sc-bars { margin-top: 18px; display: grid; gap: 9px; }
.sc-bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; font-size: 12px; }
.sc-bar .name { color: var(--ink-2); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;}
.sc-bar .val { font-family: var(--f-mono); font-size: 11px; color: var(--ink); }
.sc-bar .track { grid-column: 1/-1; height: 4px; background: var(--paper-3); position: relative; overflow: hidden; }
.sc-bar .fill { position: absolute; left:0; top:0; bottom:0; background: var(--ink); transition: width 1.4s cubic-bezier(.2,.7,.2,1); width: 0; }
.sc-bar.warn .fill { background: var(--ember); }
.sc-bar.good .fill { background: var(--safe); }
.in .sc-bar .fill { width: var(--w, 0%); }

/* stats column */
.stats { background: var(--ink); color: var(--paper); justify-content: space-between; }
.stats .group { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.stats .group:last-child { border-bottom: 0; padding-bottom: 0; }
.stats .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute-2);
}
.stats .num {
  font-size: 64px; font-weight: 500; letter-spacing: -0.04em;
  margin-top: 6px; line-height: 1;
}
.stats .num em { font-family: var(--f-sans); font-style: normal; font-weight: 500; color: var(--signal); }
.stats .sub { font-size: 12.5px; color: var(--mute-2); margin-top: 4px; }

/* ── trust marquee ─────────────────────────────────────── */
.marquee {
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  align-items: center;
}
.marquee-row { display: inline-flex; gap: 64px; align-items: center; padding-right: 64px; }
.marquee .item {
  font-family: var(--f-sans); font-weight: 500; font-size: 30px;
  color: var(--ink-2); letter-spacing: -0.025em;
}
.marquee .item small {
  font-family: var(--f-mono); font-style: normal; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute); display:block; margin-top: -4px;
}
.marquee .star { color: var(--signal); font-size: 22px; font-family: var(--f-sans); font-style: normal; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── section heading ───────────────────────────────────── */
.sec { padding-top: 96px; padding-bottom: 100px; }
.sec-head {
  display:grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 56px;
}
.sec-head .label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2);
}
.sec-head h2 {
  margin: 14px 0 0; font-family: var(--f-sans); font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em; line-height: 1.1;
}
.sec-head h2 em { font-family: var(--f-sans); font-style: normal; font-weight: 500; }
.sec-head .lede { color: var(--ink-2); font-size: 18px; line-height: 1.7; max-width: 50ch; }

/* ── services grid ─────────────────────────────────────── */
.services { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--ink); }
.service {
  grid-column: span 2;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 26px 24px 30px;
  position: relative; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper);
  transition: background .6s ease, transform .6s cubic-bezier(.22,.61,.36,1), box-shadow .6s ease;
}
.service::before {
  content:""; position: absolute; inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
  pointer-events: none;
}
.service:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -16px rgba(10, 21, 37, 0.18); background: #F5EFDB; }
.service > * { position: relative; z-index: 1; }
.service:hover .svc-arrow { transform: translateX(4px); color: var(--signal); transition: transform .5s ease, color .5s ease; }
.service:nth-child(3n) { border-right: 0; }
.service.span3 { grid-column: span 3; }

.svc-num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--mute);
  transition: color .35s ease;
}
.svc-title {
  font-family: var(--f-sans); font-weight: 700;
  font-size: 24px; letter-spacing: -0.01em; line-height: 1.2;
  margin: 4px 0 0;
}
.svc-title em { font-family: var(--f-sans); font-style: normal; font-weight: 700; }
.svc-blurb { margin-top: 12px; font-size: 16px; line-height: 1.6; color: inherit; opacity: 0.9; }
.svc-meta {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2);
  display:flex; align-items:center; justify-content: space-between;
  transition: color .35s ease;
}
.svc-arrow { transition: transform .35s ease, color .35s ease; }

/* ── Live desk widget ──────────────────────────────────── */
.live-desk {
  background: var(--ink); color: var(--paper);
  padding: 56px 0; border-bottom: 1px solid var(--ink);
}
.ld-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.ld-lede {
  font-family: var(--f-sans); font-weight: 700;
  font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.01em; line-height: 1.2; margin: 12px 0 18px;
}
.ld-lede em { font-family: var(--f-sans); font-style: normal; font-weight: 700; color: var(--signal); }
.ld-sub { color: var(--mute-2); font-size: 16px; line-height: 1.6; max-width: 45ch; }

.ld-feed {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
}
.ld-feed-head {
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.18);
  display:flex; justify-content:space-between; align-items: center;
  font-family: var(--f-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--mute-2);
}
.ld-feed-head .live { color: var(--signal); display:flex; align-items:center; gap: 6px; }
.ld-feed-head .live .blip { width:6px; height:6px; background: var(--signal); border-radius: 50%; animation: blip 1.4s infinite; }
.ld-items {
  height: 348px; overflow: hidden; position: relative;
}
.ld-items-roll {
  list-style: none; margin: 0; padding: 0;
  animation: roll 24s linear infinite;
  position: absolute; left: 0; right: 0; top: 0;
}
.ld-items-roll li {
  display: grid; grid-template-columns: 56px 1fr auto 80px;
  gap: 12px; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}
.ld-items li .t { font-family: var(--f-sans); font-size: 13px; color: var(--mute-2); }
.ld-items li .kind {
  font-family: var(--f-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--paper); background: var(--mute); padding: 4px 8px; border-radius: 3px;
}
.ld-items li .kind.done { background: var(--mute); color: var(--paper); }
.ld-items li .kind.work { background: var(--mute); color: var(--paper); }
.ld-items li .kind.win  { background: var(--mute); color: var(--paper); }
.ld-items li .what { color: var(--paper); font-weight: 500; }
.ld-items li .who  { font-family: var(--f-sans); font-size: 13px; color: var(--mute-2); text-align: right; }

.ld-items-roll {
  animation: roll 24s linear infinite;
  position: absolute; left: 0; right: 0; top: 0;
}
@keyframes roll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ── process / The Run ─────────────────────────────────── */
.run { background: var(--ink); color: var(--paper); padding: 96px 0 110px; }
.run .eyebrow { color: var(--mute-2); }
.run h2 { color: var(--paper); }
.run .lede { color: var(--mute-2); }
.run-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.run-step {
  padding: 24px 24px 28px;
  border-right: 1px solid rgba(255,255,255,.18);
  display:flex; flex-direction: column; gap: 14px;
  min-height: 300px;
  position: relative;
}
.run-step:last-child { border-right: 0; }
.run-marker {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute-2);
}
.run-marker .mm { color: var(--signal); font-weight: 500; }
.run-step h3 {
  margin: 0;
  font-family: var(--f-sans); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; line-height: 1.2;
}
.run-step h3 em { font-family: var(--f-sans); font-style: normal; font-weight: 700; }
.run-step p { margin: 0; color: var(--mute-2); font-size: 15px; line-height: 1.6; }
.run-step ul { padding: 0; margin: 0; list-style: none; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; color: var(--paper); }
.run-step ul li { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; }
.run-step ul li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.run-step ul li span { color: var(--mute-2); }

/* highway band */
.highway-band {
  height: 14px; position: relative; margin: 48px 0 0;
  background: var(--steel-2);
  overflow: hidden;
}
.highway-band::before {
  content:""; position: absolute; top:50%; left:0; right:0; transform: translateY(-50%);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--signal) 0 28px, transparent 28px 60px);
  animation: dash 1.4s linear infinite;
}
@keyframes dash { from { background-position: 0 0; } to { background-position: 60px 0; } }

/* ── Meet the desk ─────────────────────────────────────── */
.desk { padding: 96px 0 100px; background: var(--paper-2); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.desk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.desk-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex; flex-direction: column;
}
.desk-card .portrait {
  aspect-ratio: 4/5;
  background: var(--steel);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--ink);
}
.desk-card image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0d1929;
  --slot-fg: #c6cbd1;
}
.desk-card .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--signal); color: var(--ink);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 8px;
}
.desk-card .meta { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; }
.desk-card .role { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.desk-card h4 { margin: 4px 0 0; font-family: var(--f-sans); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.desk-card h4 em { font-family: var(--f-sans); font-style: normal; font-weight: 700; }
.desk-card .bio { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-top: 8px; }
.desk-card .stats-row {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule-soft);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute);
}
.desk-card .stats-row b { display: block; font-family: var(--f-sans); font-weight: 500; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; text-transform: none; margin-top: 4px; }

/* ── On the road full-bleed ────────────────────────────── */
.road {
  position: relative;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.road-img {
  height: clamp(380px, 56vh, 620px);
  position: relative; overflow: hidden;
}
.road-img image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0d1929;
  --slot-fg: #c6cbd1;
}
.road-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; grid-template-rows: auto 1fr auto; padding: 40px var(--pad-x) 32px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,21,37,.6) 0%, rgba(10,21,37,.1) 30%, rgba(10,21,37,.1) 70%, rgba(10,21,37,.85) 100%);
}
.road-tag {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute-2);
}
.road-tag .live { color: var(--signal); display:flex; align-items:center; gap: 6px; }
.road-tag .live .blip { width:7px; height:7px; background: var(--signal); border-radius: 50%; animation: blip 1.4s infinite; }
.road-title {
  align-self: end;
  font-family: var(--f-sans); font-weight: 700;
  font-size: clamp(40px, 5.6vw, 84px); letter-spacing: -0.03em; line-height: 0.95;
  max-width: 18ch;
}
.road-title em { font-family: var(--f-sans); font-style: normal; font-weight: 500; color: var(--signal); }
.road-bottom {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-self: end;
}
.road-stat .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-2); }
.road-stat .v { font-family: var(--f-sans); font-weight: 500; font-size: 32px; letter-spacing: -0.025em; margin-top: 4px; }

/* ── Case study ────────────────────────────────────────── */
.case { padding: 96px 0; background: var(--paper); }
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: stretch;
  border-top: 1px solid var(--ink);
  padding-top: 32px;
}
.case-img {
  aspect-ratio: 5/6;
  background: var(--steel);
  position: relative; overflow: hidden;
  border: 1px solid var(--ink);
}
.case-img image-slot { width: 100%; height: 100%; --slot-bg: #0d1929; --slot-fg: #c6cbd1; }
.case-img .corner-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 10px; background: var(--signal); color: var(--ink);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
}
.case-img .corner-foot {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper);
}
.case-body { display: flex; flex-direction: column; justify-content: space-between; }
.case-body .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.case-body .quote {
  font-family: var(--f-sans); font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px); line-height: 1.4; letter-spacing: -0.01em;
  margin: 22px 0;
}
.case-body .quote::before { content: "“"; color: var(--signal); margin-right: 4px; }
.case-body .quote::after { content: "”"; color: var(--signal); margin-left: 2px; }
.case-byline { display: grid; gap: 4px; }
.case-byline .who { font-weight: 500; font-size: 16px; }
.case-byline .role { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }

.case-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); margin-top: 32px; }
.case-numbers > div { padding: 22px 16px 22px 0; border-right: 1px solid var(--rule-soft); }
.case-numbers > div:last-child { border-right: 0; padding-left: 16px; padding-right: 0; }
.case-numbers .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.case-numbers .v { font-family: var(--f-sans); font-weight: 500; font-size: 44px; letter-spacing: -0.03em; line-height: 1; margin-top: 8px; }
.case-numbers .v em { font-family: var(--f-sans); font-style: normal; font-weight: 500; color: var(--signal); }

/* ── values ────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.value {
  padding: 28px 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper-2);
}
.value:last-child { border-right: 0; }
.value .glyph {
  font-family: var(--f-sans); font-weight: 300;
  font-size: 96px; line-height: 1; color: var(--signal);
  letter-spacing: -0.06em;
}
.value h4 {
  margin: 0; font-family: var(--f-sans); font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
}
.value p { margin: 6px 0 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ── numbers band ──────────────────────────────────────── */
.numbers {
  background: var(--signal); color: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.numbers-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; align-items: end;
}
.numbers .lede {
  font-family: var(--f-sans); font-weight: 500;
  font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1; margin: 0;
}
.numbers .lede em { font-family: var(--f-sans); font-style: normal; font-weight: 500; }
.num-card { border-left: 1px solid rgba(10,21,37,.25); padding-left: 18px; }
.num-card .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.num-card .v { font-size: 64px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin-top: 6px; }
.num-card .s { font-size: 12.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.4; }

/* ── contact ───────────────────────────────────────────── */
.contact { padding-top: 96px; padding-bottom: 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; border-top: 1px solid var(--ink); padding-top: 36px; }
.contact h2 { margin: 0; font-family: var(--f-sans); font-weight: 500; font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -0.035em; line-height: .95; }
.contact h2 em { font-family: var(--f-sans); font-style: normal; font-weight: 500; }
.contact .lede { color: var(--ink-2); font-size: 17px; line-height: 1.5; max-width: 42ch; margin: 18px 0 0; }
.contact-meta { margin-top: 36px; display: grid; gap: 18px; border-top: 1px solid var(--rule-soft); padding-top: 24px; }
.cm-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: baseline; font-size: 14px; }
.cm-row .k { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.cm-row .v { font-weight: 500; }
.cm-row .x { font-family: var(--f-mono); font-size: 11px; color: var(--mute); }

.form { background: var(--paper-2); padding: 28px; border: 1px solid var(--ink); }
.form h3 { margin: 0 0 22px; font-family: var(--f-sans); font-weight: 500; font-size: 22px; letter-spacing: -0.015em; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); display:flex; justify-content:space-between; }
.field input, .field textarea, .field select {
  font-family: var(--f-sans); font-size: 15px;
  border: 0; border-bottom: 1px solid var(--ink);
  background: transparent; padding: 8px 0 10px; outline: 0;
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--signal); }
.field .req { color: var(--signal-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── footer ────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--paper); padding: 64px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.16); }
.foot-brand h3 {
  font-family: var(--f-sans); font-weight: 500; font-size: clamp(48px, 6vw, 96px);
  letter-spacing: -0.04em; line-height: 0.9; margin: 0;
}
.foot-brand h3 em { font-family: var(--f-sans); font-style: normal; font-weight: 500; color: var(--signal); }
.foot-brand p { color: var(--mute-2); font-size: 14px; margin: 18px 0 0; max-width: 36ch; }
.foot-col h5 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-2); margin: 0 0 16px; font-weight: 500; }
.foot-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--paper); }
.foot-col a:hover { color: var(--signal); }
.foot-bot { display: flex; justify-content: space-between; padding-top: 28px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--mute-2); }

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .belowhero { grid-template-columns: 1fr 1fr; }
  .bh-img { grid-column: 1/-1; min-height: 320px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service { grid-column: span 1 !important; border-right: 1px solid var(--ink); }
  .service:nth-child(2n) { border-right: 0; }
  .run-grid { grid-template-columns: 1fr 1fr; }
  .run-step { border-bottom: 1px solid rgba(255,255,255,.18); }
  .run-step:nth-child(2n) { border-right: 0; }
  .desk-grid { grid-template-columns: 1fr 1fr; }
  .desk-card:nth-child(3) { grid-column: 1/-1; }
  .values { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2n) { border-right: 0; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .ld-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .road-bottom { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero-sub { grid-template-columns: 1fr; }
  .hero-cta { justify-content: flex-start; }
  .belowhero { grid-template-columns: 1fr; }
  .belowhero > * { border-right: 0; border-bottom: 1px solid var(--ink); }
  .services { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; }
  .run-grid { grid-template-columns: 1fr; }
  .run-step { border-right: 0; }
  .desk-grid { grid-template-columns: 1fr; }
  .desk-card:nth-child(3) { grid-column: auto; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; }
  .numbers-grid { grid-template-columns: 1fr; }
  .road-bottom { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .usdot-chip { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .cm-row { grid-template-columns: 1fr; gap: 2px; }
  .ld-items li { grid-template-columns: 50px 1fr; }
  .ld-items li .who, .ld-items li .kind { display: none; }
  .case-numbers { grid-template-columns: 1fr; }
  .case-numbers > div { border-right: 0; border-bottom: 1px solid var(--rule-soft); padding: 18px 0; }
  .case-numbers > div:last-child { border-bottom: 0; padding-left: 0; }
}
