:root {
  --asphalt: #102534;
  --asphalt-2: #1c3b4d;
  --fog: #e7eef0;
  --paper: #f9fbfa;
  --white: #ffffff;
  --lane: #f5ca4b;
  --signal: #f05c45;
  --sky: #80c8df;
  --ink-soft: #49616d;
  --line: rgba(16, 37, 52, 0.22);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --utility: "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--asphalt);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}
h1 { margin-bottom: 26px; font-size: clamp(64px, 10vw, 150px); }
h2 { margin-bottom: 22px; font-size: clamp(43px, 6vw, 84px); }
h3 { margin-bottom: 13px; font-size: clamp(27px, 3vw, 39px); }
.shell { width: min(1220px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 10;
  color: var(--white);
  background: var(--asphalt);
  border-bottom: 5px solid var(--lane);
}
.nav-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 850; letter-spacing: -0.02em; }
.brand-mark {
  width: 62px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--asphalt);
  background: var(--lane);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 900;
  clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%, 10% 50%);
}
.nav-links { display: flex; justify-content: center; gap: clamp(15px, 2.5vw, 35px); font-size: 14px; font-weight: 700; }
.nav-links a { color: #c4d1d6; }
.nav-links a:hover { color: var(--lane); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 2px solid var(--asphalt);
  color: var(--asphalt);
  background: var(--white);
  font-weight: 850;
  box-shadow: 6px 6px 0 var(--asphalt);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--asphalt); }
.button.primary { color: var(--asphalt); background: var(--lane); }
.site-header .button { min-height: 42px; border-color: var(--lane); box-shadow: none; }
.site-header .button:hover { color: var(--white); background: transparent; transform: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--signal);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 5px; background: var(--lane); }

.hero {
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0 80px;
  background:
    linear-gradient(rgba(16, 37, 52, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 52, 0.06) 1px, transparent 1px),
    var(--fog);
  background-size: 40px 40px;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr); gap: 70px; align-items: center; }
.hero-copy > p, .lead { max-width: 690px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.micro { margin-top: 18px; color: var(--ink-soft); font-family: var(--utility); font-size: 11px; }

.route-map {
  position: relative;
  min-height: 620px;
  padding: 36px;
  color: var(--white);
  background: var(--asphalt);
  box-shadow: 22px 22px 0 var(--signal);
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}
.route-map::after { content: ""; position: absolute; right: 0; top: 0; border-top: 36px solid var(--fog); border-left: 36px solid var(--asphalt-2); }
.map-head { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.2); font-family: var(--utility); font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase; }
.route-map svg { width: 100%; height: 380px; display: block; margin: 14px 0 4px; }
.route-path { fill: none; stroke: var(--lane); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 17 15; }
.route-alt { fill: none; stroke: var(--sky); stroke-width: 2; opacity: 0.45; }
.stop { fill: var(--paper); stroke: var(--signal); stroke-width: 7; }
.map-labels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; font-family: var(--utility); font-size: 11px; text-transform: uppercase; }
.map-labels b { color: var(--lane); display: block; margin-bottom: 5px; }
.map-labels span { color: #bdd0d7; }

.scope-strip { color: var(--white); background: var(--asphalt-2); border-block: 1px solid rgba(255,255,255,0.16); }
.scope-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.scope-item { min-height: 120px; padding: 28px; border-right: 1px solid rgba(255,255,255,0.16); }
.scope-item:last-child { border-right: 0; }
.scope-item strong { display: block; color: var(--lane); font-family: var(--display); font-size: 30px; letter-spacing: 0.02em; text-transform: uppercase; }
.scope-item span { color: #bfd0d6; font-size: 13px; }

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section.fog { background: var(--fog); border-block: 1px solid var(--line); }
.section.dark { color: var(--white); background: var(--asphalt); }
.section.dark .lead, .section.dark p { color: #c1d0d6; }
.section-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 0; }

.process-road { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 8px solid var(--lane); background: var(--white); }
.road-step { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 2px solid var(--asphalt); }
.road-step:first-child { border-left: 2px solid var(--asphalt); }
.road-step:last-child { border-right: 2px solid var(--asphalt); }
.road-step b { display: inline-block; margin-bottom: 48px; color: var(--signal); font-family: var(--utility); font-size: 12px; text-transform: uppercase; }
.road-step p { color: var(--ink-soft); }

.record-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.record-card { min-height: 210px; padding: 25px; border: 2px solid var(--asphalt); background: var(--white); }
.record-card:nth-child(3n + 2) { background: #d9f0f7; }
.record-card .code { display: block; margin-bottom: 34px; color: var(--signal); font-family: var(--utility); font-size: 11px; font-weight: 900; }
.record-card h3 { font-size: 29px; }
.record-card p { color: var(--ink-soft); font-size: 14px; }

.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 2px solid var(--asphalt); }
.role { min-height: 220px; padding: 27px; background: var(--paper); border-right: 1px solid var(--line); }
.role:last-child { border-right: 0; }
.role span { color: var(--signal); font-family: var(--utility); font-size: 11px; font-weight: 900; }
.role p { color: var(--ink-soft); }

.subhero { padding: clamp(66px, 9vw, 120px) 0 74px; background: var(--fog); }
.subhero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr); gap: 70px; align-items: end; }
.subhero h1 { max-width: 920px; font-size: clamp(58px, 8vw, 116px); }
.dispatch-note { padding: 29px; color: var(--white); background: var(--asphalt); border-left: 10px solid var(--lane); }
.dispatch-note .label { font-family: var(--utility); color: var(--lane); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.dispatch-note strong { display: block; margin: 25px 0 12px; font-family: var(--display); font-size: 39px; line-height: .95; text-transform: uppercase; }
.dispatch-note p { color: #c6d5da; }

.feature-table { width: 100%; border-collapse: collapse; border: 2px solid var(--asphalt); background: var(--white); }
.feature-table th, .feature-table td { padding: 21px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.feature-table th { color: var(--signal); font-family: var(--utility); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.feature-table tr:last-child td { border-bottom: 0; }
.feature-table td:first-child { font-weight: 850; }

.sequence { border-left: 9px solid var(--lane); margin-left: 10px; }
.sequence-row { position: relative; display: grid; grid-template-columns: 190px 1fr; gap: 45px; padding: 0 0 55px 42px; }
.sequence-row:last-child { padding-bottom: 0; }
.sequence-row::before { content: ""; position: absolute; left: -17px; top: 0; width: 18px; height: 18px; border: 4px solid var(--paper); background: var(--signal); box-shadow: 0 0 0 2px var(--asphalt); }
.sequence-row .phase { color: var(--signal); font-family: var(--utility); font-weight: 900; text-transform: uppercase; }
.sequence-row p { color: var(--ink-soft); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { min-height: 410px; display: flex; flex-direction: column; padding: 30px; border: 2px solid var(--asphalt); background: var(--white); }
.price-card.featured { color: var(--white); background: var(--asphalt-2); border-top: 10px solid var(--lane); }
.price-card .kicker { color: var(--signal); font-family: var(--utility); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.price-card h3 { margin-top: 44px; }
.price-card ul { padding-left: 20px; color: var(--ink-soft); }
.price-card.featured ul { color: #c4d3d8; }
.price-card .button { margin-top: auto; }

.faq { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--asphalt); }
.faq article { padding: 30px 34px 30px 0; border-bottom: 1px solid var(--line); }
.faq article:nth-child(2n) { padding-left: 34px; border-left: 1px solid var(--line); }
.faq p { color: var(--ink-soft); }

.cta-band { padding: 65px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; color: var(--asphalt); background: var(--lane); border: 2px solid var(--asphalt); box-shadow: 14px 14px 0 var(--signal); }
.cta-band h2 { max-width: 800px; margin-bottom: 0; }

.site-footer { padding: 68px 0 34px; color: var(--white); background: var(--asphalt); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .6fr); gap: 42px; }
.footer-grid h2 { max-width: 520px; font-size: clamp(38px, 5vw, 66px); }
.footer-col strong { display: block; margin-bottom: 18px; color: var(--lane); font-family: var(--utility); font-size: 11px; text-transform: uppercase; }
.footer-col a { display: block; margin-bottom: 10px; color: #c2d1d6; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: #8fa6af; font-family: var(--utility); font-size: 10px; }

@media (max-width: 960px) {
  .nav-row { grid-template-columns: auto auto; }
  .nav-links { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; padding-bottom: 18px; overflow-x: auto; }
  .nav-row > .button { justify-self: end; }
  .hero-grid, .subhero-grid, .section-heading { grid-template-columns: 1fr; }
  .route-map { min-height: 560px; }
  .scope-row, .process-road, .record-grid, .roles { grid-template-columns: 1fr 1fr; }
  .scope-item:nth-child(2) { border-right: 0; }
  .scope-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .road-step:nth-child(2) { border-right: 2px solid var(--asphalt); }
  .roles .role:nth-child(2) { border-right: 0; }
  .roles .role:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1220px); }
  .brand > span:last-child { display: none; }
  .site-header .button { padding: 0 14px; }
  h1 { font-size: clamp(58px, 21vw, 90px); }
  .hero { padding-top: 54px; }
  .route-map { min-height: 480px; padding: 25px 19px; box-shadow: 10px 10px 0 var(--signal); }
  .route-map svg { height: 310px; }
  .map-labels { grid-template-columns: 1fr; }
  .scope-row, .process-road, .record-grid, .roles, .faq { grid-template-columns: 1fr; }
  .scope-item, .road-step, .role { border-right: 0; border-bottom: 1px solid var(--line); }
  .road-step:first-child { border-left: 0; }
  .sequence-row { grid-template-columns: 1fr; gap: 8px; }
  .cta-band { grid-template-columns: 1fr; padding: 36px 25px; box-shadow: 8px 8px 0 var(--signal); }
  .faq article:nth-child(2n) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.proto-attribution {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-sizing: border-box;
  min-height: 46px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(20, 29, 35, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 29, 35, 0.16);
  color: #343239;
  font: 600 14px/1.1 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.proto-attribution strong {
  color: #6d43ea;
  font-weight: 750;
}
.proto-attribution-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: #161b1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}
.proto-attribution:hover,
.proto-attribution:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 29, 35, 0.22);
}
.proto-attribution:focus-visible {
  outline: 3px solid #6d43ea;
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .proto-attribution {
    right: 8px;
    bottom: 8px;
    min-height: 42px;
    padding: 7px 11px 7px 7px;
    font-size: 13px;
  }
  .proto-attribution-mark {
    width: 26px;
    height: 26px;
  }
}
