:root {
  --paper: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #262626;
  --ink-3: #555555;
  --soft: #f3f3f0;
  --accent: #ff4d1a;
  --accent-readable: #d9360b;
  --blue: #1c4cff;
  --yellow: #f4d35e;
  --green: #137a53;
  --rule: #0a0a0a;
  --pad: clamp(20px, 4vw, 48px);
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-menu-open] {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

.skip-link {
  background: var(--accent);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
  top: -80px;
  z-index: 40;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.top-strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}

.top-strip-track {
  animation: top-strip-scroll 150s linear infinite;
  align-items: center;
  display: flex;
  width: max-content;
  will-change: transform;
}

.top-strip-set {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding-right: 22px;
}

.top-strip strong {
  color: var(--accent);
}

.top-strip span,
.top-strip strong,
.top-strip b {
  align-items: center;
  display: inline-flex;
}

.top-strip i {
  background: rgba(255, 255, 255, 0.45);
  display: inline-block;
  flex: 0 0 auto;
  height: 4px;
  width: 4px;
}

.top-strip b {
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
}

.top-strip-phone {
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  padding: 4px 10px;
}

@keyframes top-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
  min-width: 0;
  padding: 0 var(--pad);
  position: relative;
  width: 100%;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  text-decoration: none;
}

.wordmark svg {
  flex: 0 0 auto;
  height: 26px;
  width: 26px;
}

.wordmark rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.wordmark circle {
  fill: var(--accent);
}

.wordmark path {
  fill: currentColor;
}

.wordmark--dark {
  color: var(--paper);
}

.site-nav {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 30px;
}

.nav-item {
  align-items: center;
  display: inline-flex;
}

.nav-item--mega {
  align-self: stretch;
  display: inline-flex;
}

.site-nav > .nav-link,
.nav-item > .nav-link {
  align-items: baseline;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  line-height: 1;
  padding: 10px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > .nav-link span,
.nav-item > .nav-link span {
  color: var(--accent-readable);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.site-nav > .nav-link:hover,
.site-nav > .nav-link:focus-visible,
.site-nav > .nav-link[aria-current="page"],
.nav-item > .nav-link:hover,
.nav-item > .nav-link:focus-visible,
.nav-item > .nav-link[aria-current="page"] {
  border-color: var(--accent);
}

.mega-menu {
  background: var(--paper);
  border: 2px solid var(--rule);
  box-shadow: 10px 10px 0 var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
  left: 50%;
  max-width: min(1240px, calc(100vw - (var(--pad) * 2)));
  opacity: 0;
  padding: 26px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 2px);
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
  width: 100%;
  z-index: 50;
}

.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.nav-item--mega[data-mega-open] .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-menu__intro {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
}

.mega-menu__intro > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu__intro strong {
  display: block;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 0.92;
  margin-top: 12px;
}

.mega-menu__intro p {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 22px;
}

.mega-menu__intro a {
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--paper);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  margin-top: auto;
  margin-left: -22px;
  margin-right: -22px;
  margin-bottom: -22px;
  min-height: 58px;
  padding: 16px 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.mega-menu__all {
  display: none;
}

.mega-menu__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-pillar {
  border-left: 2px solid var(--rule);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-left: 18px;
}

.mega-pillar__heading {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px;
}

.mega-pillar p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.mega-pillar a,
.footer-pillar a {
  text-decoration: none;
}

.mega-pillar a {
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  padding: 9px 0;
}

.mega-pillar a:hover,
.mega-pillar a:focus-visible,
.mega-menu__intro a:hover,
.mega-menu__intro a:focus-visible {
  color: var(--accent-readable);
  text-decoration: underline;
}

.nav-cta,
.button {
  align-items: center;
  border: 2px solid var(--rule);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 15px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
  word-spacing: 0.18em;
}

.nav-cta i {
  background: var(--accent);
  border-radius: 999px;
  height: 8px;
  transition: background-color 160ms ease, transform 160ms ease;
  width: 8px;
}

.button--accent {
  background: var(--accent);
  box-shadow: 8px 8px 0 var(--ink);
  color: var(--ink);
}

.button--plain {
  background: var(--paper);
  color: var(--ink);
}

.mobile-nav-cta {
  display: none;
}

.button span,
.nav-cta span {
  display: inline-block;
  transition: transform 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translate(-2px, -2px);
}

.button--accent:hover,
.button--accent:focus-visible,
.button--accent:active,
.button--plain:hover,
.button--plain:focus-visible,
.button--plain:active {
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  color: var(--paper);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta:active {
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--accent);
  color: var(--ink);
}

.button:hover span,
.button:focus-visible span,
.button:active span,
.nav-cta:hover span,
.nav-cta:focus-visible span,
.nav-cta:active span {
  transform: translateX(4px);
}

.nav-cta:hover i,
.nav-cta:focus-visible i,
.nav-cta:active i {
  background: var(--ink);
  transform: scale(1.18);
}

.nav-toggle {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--rule);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: var(--ink);
  content: "";
  display: block;
  height: 2px;
  width: 21px;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.spec-hero {
  border-bottom: 2px solid var(--rule);
  overflow: hidden;
  padding: 48px var(--pad) 64px;
}

.spec-meta {
  align-items: baseline;
  color: var(--ink-3);
  display: grid;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  gap: 24px;
  grid-template-columns: 190px 1fr 240px;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.spec-meta span:first-child {
  color: var(--accent-readable);
}

.spec-meta span:last-child {
  justify-self: end;
  text-align: right;
}

.hero-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr);
}

.spec-title {
  color: var(--ink);
  font-size: clamp(54px, 8.2vw, 136px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  max-width: 1160px;
  overflow-wrap: normal;
}

.spec-title span {
  display: block;
}

.spec-title mark {
  background: var(--accent);
  box-decoration-break: clone;
  color: var(--paper);
  padding: 0 0.06em;
  -webkit-box-decoration-break: clone;
}

.spec-title em {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.spec-title span:nth-child(2) {
  color: var(--ink-3);
}

.spec-hero--local .spec-title {
  font-size: clamp(46px, 5.8vw, 92px);
  line-height: 0.96;
  max-width: 980px;
}

.spec-hero--local {
  padding-bottom: 56px;
  padding-top: 48px;
}

.spec-hero--local .hero-grid {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.spec-hero--local .hero-lower {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.spec-hero--local .hero-side {
  align-self: end;
  grid-template-columns: 1fr;
}

.spec-hero--local .spec-title span:nth-child(2) {
  color: var(--ink);
}

.spec-hero--local .spec-title span:last-child {
  color: var(--ink-3);
}

.spec-hero--service {
  padding-bottom: 56px;
  padding-top: 48px;
}

.spec-hero--service .spec-title {
  font-size: clamp(46px, 5.8vw, 94px);
  line-height: 0.96;
  max-width: 1040px;
}

.spec-hero--service .hero-grid {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.spec-hero--service .hero-lower {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.spec-hero--service .hero-side {
  align-self: end;
  grid-template-columns: 1fr;
}

.spec-hero--rescue .spec-title span:last-child {
  color: var(--ink-2);
  font-size: clamp(34px, 5.4vw, 88px);
  line-height: 1;
  margin-top: 18px;
  max-width: 980px;
}

.hero-lower {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 680px) auto;
  margin-top: 40px;
}

.hero-lower p,
.lede {
  color: var(--ink-2);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.28;
  margin: 0;
}

.hero-actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-side {
  align-self: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 430px);
}

.sticker-stack {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticker {
  background: var(--paper);
  border: 2px solid var(--rule);
  box-shadow: 4px 4px 0 var(--accent);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  text-transform: uppercase;
  transform: rotate(-3deg);
  width: fit-content;
}

.sticker--blue {
  box-shadow: 4px 4px 0 var(--blue);
  transform: rotate(3deg);
}

.sticker--yellow {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.sticker--orange {
  box-shadow: 4px 4px 0 var(--accent);
}

.live-panel,
.index-card,
.dispatch-panel,
.note-card,
.included-panel {
  background: var(--soft);
  border: 2px solid var(--rule);
}

.live-panel--dark {
  background: var(--ink);
  color: var(--paper);
}

.live-panel__head {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 14px 18px;
  text-transform: uppercase;
}

.live-panel__head b {
  background: var(--accent);
  color: var(--ink);
  padding: 4px 8px;
}

.live-panel--dark .live-panel__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.live-row {
  align-items: center;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 12px;
  grid-template-columns: 76px 1fr auto;
  padding: 14px 18px;
}

.live-panel--dark .live-row {
  border-color: rgba(255, 255, 255, 0.2);
}

.live-row span,
.live-row em,
.card-top,
.spec-table dt,
.tier-grid span,
.process-grid span,
.symptom-grid span,
.panel-kicker,
.footer-links h3,
.channel-grid span,
label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-row strong {
  font-size: 14px;
  line-height: 1.15;
}

.live-row em {
  color: var(--accent-readable);
  font-style: normal;
  text-align: right;
}

.live-panel--dark .live-row em {
  color: var(--accent);
}

.marquee {
  border-bottom: 2px solid var(--rule);
  border-top: 2px solid var(--rule);
  contain: paint;
  min-height: calc(clamp(24px, 3vw, 36px) + 36px);
  overflow: hidden;
  overflow-x: clip;
  padding: 18px 0;
  position: relative;
  width: 100%;
}

.marquee--orange {
  background: var(--accent);
  color: var(--ink);
}

.marquee--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.marquee-track {
  animation: marquee 110s linear infinite;
  display: flex;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  gap: 46px;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  align-items: center;
  display: inline-flex;
  gap: 46px;
}

.marquee-track span::before {
  content: attr(data-label);
}

.marquee-track i {
  font-style: normal;
  font-weight: 500;
}

@keyframes marquee {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .top-strip-track {
    animation-duration: 220s;
  }

  .marquee-track {
    animation-duration: 180s;
  }

  .button:hover,
  .button:focus-visible,
  .nav-cta:hover,
  .nav-cta:focus-visible {
    transform: none;
  }

  .button:hover span,
  .button:focus-visible span,
  .button:active span,
  .nav-cta:hover span,
  .nav-cta:focus-visible span,
  .nav-cta:active span,
  .compact-link-grid a:hover,
  .compact-link-grid a:focus-visible,
  .compact-link-grid a:active,
  .service-tile:hover,
  .service-tile:focus-visible,
  .service-tile:active {
    transform: none;
  }
}

.page-section,
.service-detail {
  padding: 76px var(--pad);
}

.page-section--soft,
.service-detail:nth-of-type(even) {
  background: var(--soft);
}

.section-head {
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  border-top: 3px solid var(--rule);
  display: grid;
  gap: 24px;
  grid-template-columns: 140px 1fr minmax(240px, 380px);
  margin-bottom: 48px;
  padding: 20px 0;
}

.section-head > span {
  color: var(--accent-readable);
  font-size: 56px;
  font-weight: 900;
  line-height: 0.9;
}

.section-head h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
}

.section-head p {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

.catalogue-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-atlas-grid,
.compact-link-grid,
.service-tile-grid,
.proof-strip,
.comparison-grid,
.client-proof-grid {
  display: grid;
  gap: 22px;
}

.service-atlas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-tile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
}

.comparison-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalogue-card,
.service-atlas-card,
.compact-link-grid a,
.service-tile,
.comparison-grid article,
.client-proof-card {
  background: var(--paper);
  border: 2px solid var(--rule);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
}

.service-tile {
  border-left-width: 8px;
  color: var(--ink);
  min-height: 240px;
  padding: 24px;
}

.service-tile:nth-child(3n + 1) {
  border-left-color: var(--accent);
}

.service-tile:nth-child(3n + 2) {
  border-left-color: var(--blue);
}

.service-tile:nth-child(3n + 3) {
  border-left-color: var(--green);
}

.proof-strip article {
  background: var(--ink);
  color: var(--paper);
  padding: 20px;
}

.proof-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.comparison-grid article {
  padding: 24px;
}

.client-proof-card {
  min-height: 100%;
  padding: 28px;
}

.card-top {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
}

.card-top b {
  color: var(--accent);
}

.catalogue-card h3,
.service-atlas-card h3,
.compact-link-grid strong,
.service-tile strong,
.comparison-grid h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 0.98;
  margin: 22px 18px 16px;
  overflow-wrap: anywhere;
}

.service-tile strong,
.comparison-grid h3 {
  display: block;
  font-size: clamp(28px, 2.7vw, 38px);
  margin: 14px 0 16px;
}

.client-proof-card h3 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.92;
  margin: 16px 0 20px;
  overflow-wrap: anywhere;
}

.service-tile strong {
  font-size: clamp(24px, 2.1vw, 32px);
  overflow-wrap: break-word;
}

.catalogue-card p,
.service-atlas-card p,
.compact-link-grid p,
.service-tile p,
.comparison-grid p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 18px 22px;
}

.service-tile p,
.comparison-grid p {
  margin: 0;
}

.client-proof-card p {
  color: var(--ink-2);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 26px;
}

.client-proof-card dl {
  border-top: 1px solid var(--rule);
  margin: auto 0 0;
}

.client-proof-card dl div {
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  padding: 13px 0;
}

.client-proof-card dl div + div {
  border-top: 1px solid var(--rule);
}

.client-proof-card dt,
.client-proof-card dd {
  margin: 0;
}

.client-proof-card dd {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.service-atlas-card .mini-specs {
  border-top: 1px solid var(--rule);
  margin: auto 0 0;
}

.service-atlas-card .mini-specs div {
  display: grid;
  gap: 10px;
  grid-template-columns: 90px 1fr;
  padding: 12px 18px;
}

.service-atlas-card .mini-specs div + div {
  border-top: 1px solid var(--rule);
}

.service-atlas-card dt,
.service-atlas-card dd {
  margin: 0;
}

.service-atlas-card dt,
.compact-link-grid span,
.service-tile span,
.proof-strip span,
.comparison-grid span,
.client-proof-card > span,
.client-proof-card dt {
  color: var(--accent-readable);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--accent);
}

.proof-strip strong {
  display: block;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.service-atlas-card dd {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
}

.compact-link-grid a {
  padding-top: 18px;
}

.compact-link-grid span {
  display: block;
  margin: 0 18px;
}

.compact-link-grid strong {
  display: block;
}

.catalogue-card > a,
.service-atlas-card > a {
  align-items: center;
  border-top: 2px solid var(--rule);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.catalogue-card > a:hover,
.catalogue-card > a:focus-visible,
.catalogue-card > a:active,
.service-atlas-card > a:hover,
.service-atlas-card > a:focus-visible,
.service-atlas-card > a:active,
.note-card a:hover,
.note-card a:focus-visible,
.note-card a:active {
  background: var(--ink);
  color: var(--paper);
}

.compact-link-grid a,
.service-tile {
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.compact-link-grid a:hover,
.compact-link-grid a:focus-visible,
.compact-link-grid a:active,
.service-tile:hover,
.service-tile:focus-visible,
.service-tile:active {
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  color: var(--paper);
  transform: translate(-2px, -2px);
}

.compact-link-grid a:hover strong,
.compact-link-grid a:focus-visible strong,
.compact-link-grid a:active strong,
.service-tile:hover strong,
.service-tile:focus-visible strong,
.service-tile:active strong {
  color: var(--paper);
}

.compact-link-grid a:hover p,
.compact-link-grid a:focus-visible p,
.compact-link-grid a:active p,
.service-tile:hover p,
.service-tile:focus-visible p,
.service-tile:active p {
  color: rgba(255, 255, 255, 0.82);
}

.compact-link-grid a:hover span,
.compact-link-grid a:focus-visible span,
.compact-link-grid a:active span,
.service-tile:hover span,
.service-tile:focus-visible span,
.service-tile:active span {
  color: var(--yellow);
}

.spec-table {
  border-top: 1px solid var(--rule);
  margin: 0;
}

.spec-table div {
  display: grid;
  gap: 14px;
  grid-template-columns: 132px 1fr;
  padding: 12px 18px;
}

.spec-table div + div {
  border-top: 1px solid var(--rule);
}

.spec-table dt,
.spec-table dd {
  margin: 0;
}

.spec-table dt {
  color: var(--ink-3);
}

.spec-table dd {
  font-weight: 800;
  text-align: right;
}

.process-grid,
.tier-grid,
.faq-grid,
.outcome-grid,
.symptom-grid,
.channel-grid {
  display: grid;
  gap: 22px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article,
.tier-grid article,
.faq-grid article,
.outcome-grid article,
.symptom-grid article,
.channel-grid a {
  background: var(--paper);
  border: 2px solid var(--rule);
  padding: 24px;
}

.process-grid span,
.tier-grid span,
.symptom-grid span,
.channel-grid span {
  color: var(--accent-readable);
}

.process-grid h3,
.tier-grid h3,
.faq-grid h3,
.outcome-grid h3,
.included-panel h3,
.note-card h3,
.dispatch-panel h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin: 14px 0 12px;
}

.process-grid p,
.tier-grid p,
.faq-grid p,
.outcome-grid p,
.symptom-grid p,
.note-card p,
.included-panel li,
.dispatch-panel p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.works-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, 520px) 1fr;
}

.delivery-board {
  background: var(--paper);
  border: 2px solid var(--rule);
  display: grid;
  gap: 0;
  min-height: 360px;
}

.delivery-board__top {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 14px;
  grid-template-columns: 150px 1fr;
  padding: clamp(18px, 3vw, 28px);
}

.delivery-board__top span,
.delivery-board__stats dt,
.delivery-board__lanes article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-board__top strong {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.delivery-board__lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-board__lanes article {
  border-bottom: 2px solid var(--rule);
  border-right: 2px solid var(--rule);
  min-height: 180px;
  padding: clamp(18px, 3vw, 26px);
}

.delivery-board__lanes article:last-child {
  border-right: 0;
}

.delivery-board__lanes h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 18px 0 12px;
  text-transform: uppercase;
}

.delivery-board__lanes p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.delivery-board__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.delivery-board__stats div {
  border-right: 2px solid var(--rule);
  padding: 18px;
}

.delivery-board__stats div:last-child {
  border-right: 0;
}

.delivery-board__stats dd {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  line-height: 1;
  margin: 8px 0 0;
}

.index-card {
  padding: 22px;
}

.index-card p {
  color: var(--accent-readable);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.index-card a {
  align-items: baseline;
  border-top: 1px solid var(--rule);
  display: grid;
  font-weight: 900;
  gap: 12px;
  grid-template-columns: 74px 1fr;
  padding: 14px 0;
  text-decoration: none;
}

.index-card a span {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.service-detail {
  border-top: 2px solid var(--rule);
}

.service-detail__grid,
.story-grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.included-panel,
.note-card,
.dispatch-panel {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.note-card a {
  align-items: center;
  border-top: 2px solid var(--rule);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  margin: 22px -26px -26px;
  min-height: 62px;
  padding: 18px 26px;
  text-decoration: none;
  text-transform: uppercase;
}

.included-panel ul {
  display: grid;
  gap: 14px;
  list-style: square;
  margin: 18px 0 0;
  padding-left: 20px;
}

.tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.symptom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.symptom-grid article {
  display: grid;
  gap: 16px;
  grid-template-columns: 54px 1fr;
}

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-grid a {
  color: var(--ink);
  min-height: 150px;
  text-decoration: none;
}

.channel-grid strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-top: 18px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-wide {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}

input,
select,
textarea {
  background: var(--paper);
  border: 2px solid var(--rule);
  color: var(--ink);
  display: block;
  min-height: 54px;
  padding: 14px 16px;
  width: 100%;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(255, 77, 26, 0.28);
  outline-offset: 0;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.turnstile-field {
  background: var(--paper-soft);
  border: 2px solid var(--rule);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.turnstile-field[hidden] {
  display: none;
}

.turnstile-field p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.turnstile-widget {
  min-height: 65px;
}

.form-actions p {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 14px;
  margin: 0;
}

.site-footer {
  background: var(--ink);
  border-top: 2px solid var(--accent);
  color: var(--paper);
  padding: 72px var(--pad) 0;
}

.footer-top {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 64px;
  grid-template-columns: 1.4fr minmax(320px, 0.6fr);
  min-width: 0;
  padding-bottom: 56px;
}

.footer-top > *,
.footer-links > * {
  min-width: 0;
}

.footer-mega {
  font-size: clamp(72px, 11.4vw, 168px);
  font-weight: 900;
  line-height: 0.78;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 600px;
}

.dispatch-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--paper);
}

.panel-kicker {
  align-items: center;
  color: var(--accent);
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}

.panel-kicker i {
  background: var(--accent);
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.dispatch-panel h2,
.dispatch-panel p {
  color: var(--paper);
}

.dispatch-panel p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
}

.footer-links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 1.1fr) repeat(5, minmax(128px, 1fr)) repeat(2, minmax(150px, 0.95fr));
  padding: 46px 0;
}

.footer-links h3 {
  color: var(--accent);
  margin: 0 0 16px;
}

.footer-links p,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.footer-links a {
  margin-top: 7px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
}

.colophon {
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 20px 0;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    max-width: calc(100vw - (var(--pad) * 2));
  }

  .mega-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-cta {
    display: none;
  }

  .catalogue-grid,
  .service-atlas-grid,
  .compact-link-grid,
  .service-tile-grid,
  .proof-strip,
  .comparison-grid,
  .client-proof-grid,
  .process-grid,
  .outcome-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid,
  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 48px;
    margin-left: auto;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 2px solid var(--rule);
    border-top: 2px solid var(--rule);
    display: none;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 12px var(--pad);
    position: absolute;
    right: 0;
    top: 76px;
    z-index: 80;
  }

  .site-nav[data-open] {
    display: grid;
  }

  .mobile-nav-cta {
    display: inline-flex;
    margin: 20px 0 10px;
    width: 100%;
  }

  .site-nav > .nav-link,
  .nav-item > .nav-link {
    border-bottom: 1px solid var(--rule);
    font-size: 16px;
    padding: 18px 0;
  }

  .nav-item--mega > .nav-link {
    justify-content: space-between;
    width: 100%;
  }

  .nav-item--mega > .nav-link::after {
    content: "+";
    color: var(--accent-readable);
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin-left: auto;
    padding-left: 16px;
  }

  .nav-item--mega[data-mega-open] > .nav-link::after {
    content: "-";
  }

  .nav-item {
    align-items: stretch;
    display: block;
  }

  .mega-menu {
    border: 0;
    border-bottom: 1px solid var(--rule);
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr;
    left: auto;
    max-width: none;
    opacity: 1;
    padding: 0 0 16px;
    pointer-events: auto;
    position: static;
    top: auto;
    transform: none;
    transition: none;
    visibility: visible;
    width: 100%;
  }

  .nav-item--mega[data-mega-open] .mega-menu {
    display: grid;
    left: auto;
    transform: none;
  }

  .mega-menu__intro {
    display: none;
  }

  .mega-menu__grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .mega-pillar {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 14px 0;
  }

  .mega-pillar__heading {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .mega-pillar p {
    display: none;
  }

  .mega-pillar a {
    border-top: 0;
    font-size: 14px;
    padding: 7px 0;
  }

  .mega-menu__all {
    align-items: center;
    border-top: 1px solid var(--rule);
    display: flex;
    font-weight: 900;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 0;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hero-grid,
  .hero-lower,
  .hero-side,
  .spec-hero--local .hero-grid,
  .spec-hero--local .hero-lower,
  .spec-hero--local .hero-side,
  .spec-hero--service .hero-grid,
  .spec-hero--service .hero-lower,
  .spec-hero--service .hero-side,
  .works-grid,
  .service-detail__grid,
  .story-grid,
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .spec-meta,
  .section-head {
    grid-template-columns: 1fr;
  }

  .spec-meta span:last-child,
  .section-head p {
    justify-self: start;
    text-align: left;
  }

  .hero-side {
    align-self: stretch;
  }

  .delivery-board__top,
  .delivery-board__lanes {
    grid-template-columns: 1fr;
  }

  .delivery-board {
    min-height: 0;
  }

  .delivery-board__lanes article {
    border-right: 0;
    min-height: 0;
  }

  .delivery-board__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-board__stats div {
    border-right: 2px solid var(--rule);
    border-top: 2px solid var(--rule);
  }

  .delivery-board__stats div:nth-child(2n) {
    border-right: 0;
  }

  .spec-hero--local .hero-side {
    display: none;
  }

  .spec-hero--service .hero-side {
    display: none;
  }

  .spec-hero {
    padding-top: 42px;
  }

  .hero-lower {
    margin-top: 34px;
  }

  .sticker-stack {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tier-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .footer-links {
    gap: 26px;
  }

  .proof-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .top-strip {
    font-size: 10px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .top-strip-track {
    animation-duration: 150s;
  }

  .top-strip-set {
    gap: 14px;
    padding-right: 14px;
  }

  .wordmark {
    font-size: 22px;
    min-width: 0;
  }

  .spec-hero,
  .page-section,
  .service-detail {
    padding-bottom: 54px;
    padding-top: 48px;
  }

  .spec-title {
    font-size: clamp(36px, 10vw, 56px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .spec-hero--local .spec-title {
    font-size: clamp(34px, 9.4vw, 52px);
    line-height: 1;
  }

  .spec-hero--service .spec-title {
    font-size: clamp(34px, 9.4vw, 52px);
    line-height: 1;
  }

  .spec-meta {
    font-size: 10px;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-lower {
    gap: 20px;
    margin-top: 26px;
  }

  .hero-lower p,
  .lede {
    font-size: 20px;
  }

  .catalogue-grid,
  .service-atlas-grid,
  .compact-link-grid,
  .service-tile-grid,
  .proof-strip,
  .comparison-grid,
  .client-proof-grid,
  .process-grid,
  .faq-grid,
  .outcome-grid,
  .symptom-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    font-size: clamp(22px, 8vw, 34px);
    gap: 24px;
  }

  .marquee-track span {
    gap: 24px;
  }

  .footer-mega {
    font-size: clamp(54px, 17vw, 72px);
    overflow-wrap: anywhere;
  }

  .section-head > span {
    font-size: 42px;
  }

  .section-head h2 {
    font-size: 38px;
  }

  .service-tile {
    min-height: 0;
  }

  .live-row {
    grid-template-columns: 1fr;
  }

  .live-row em,
  .spec-table dd {
    text-align: left;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .form-actions .button {
    width: 100%;
  }

  .colophon {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
