/* =========================================================================
   SUKHU TRUCKS LTD. — "The 49th Parallel"
   Cross-border dry van carrier · static marketing site
   Design system: dispatch-board / telemetry. One stylesheet, token-driven.
   ========================================================================= */

/* ---- 1. Design tokens --------------------------------------------------- */
:root {
  /* Brand palette */
  --asphalt:   #0E1620;   /* primary dark ground / ink on light */
  --asphalt-2: #0B121B;   /* deeper black for footer */
  --steel:     #18293E;   /* dark surfaces / cards */
  --steel-2:   #213750;   /* raised dark surface / hairlines on dark */
  --gold:      #F4B43A;   /* primary accent, CTAs (the logo arrow) */
  --gold-deep: #E09A12;   /* gold pressed / gradient end (backgrounds) */
  --gold-ink:  #8C6000;   /* deep amber for GOLD TEXT on light (AA: 5.07:1 on fog) */
  --signal:    #34D08A;   /* on-time / telemetry green */
  --transit:   #6FB2F2;   /* rolling / in-transit blue */
  --border-amber: #F4B43A;/* "at border" reuses gold */
  --delay:     #F06A5A;   /* delayed (used sparingly) */
  --fog:       #F4F5F2;   /* light section ground */
  --fog-2:     #EAECE7;   /* alt light band */
  --paper:     #FFFFFF;   /* cards on light */
  --slate:     #5C6B7A;   /* muted text / hairlines on light */

  /* Semantic text */
  --ink:        #0E1620;  /* headings on light */
  --ink-body:   #2A3947;  /* body on light */
  --ink-muted:  #5C6B7A;  /* secondary on light */
  --on-dark:        #F3F6FA; /* text on dark */
  --on-dark-muted:  #9DB0C2; /* secondary on dark (>=4.5:1 on asphalt) */
  --hairline:       #DFE3DC; /* dividers on light */
  --hairline-dark:  #2A3D55; /* dividers on dark */

  /* Type */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --fs-xs: 0.75rem;     /* 12 */
  --fs-sm: 0.8125rem;   /* 13 */
  --fs-cap: 0.875rem;   /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md: 1.125rem;    /* 18 */
  --fs-lg: 1.3125rem;   /* 21 */
  --step-h3: clamp(1.25rem, 1rem + 1.1vw, 1.6rem);
  --step-h2: clamp(1.9rem, 1.3rem + 2.6vw, 2.9rem);
  --step-display: clamp(2.4rem, 1.55rem + 3.9vw, 4.25rem);

  /* Spacing (8pt) */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem; --s7: 3rem; --s8: 4rem;
  --s9: 6rem; --s10: 8rem;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 22px; --r-pill: 999px;

  /* Elevation (light) */
  --shadow-sm: 0 1px 2px rgba(14,22,32,.06), 0 1px 1px rgba(14,22,32,.04);
  --shadow-md: 0 6px 18px rgba(14,22,32,.08), 0 2px 6px rgba(14,22,32,.05);
  --shadow-lg: 0 24px 60px rgba(14,22,32,.16), 0 8px 20px rgba(14,22,32,.08);
  --shadow-gold: 0 12px 34px rgba(224,154,18,.30);

  /* Motion */
  --t-fast: 140ms;
  --t: 220ms;
  --t-slow: 420ms;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  /* Z-index scale */
  --z-base: 1; --z-board: 5; --z-header: 40; --z-overlay: 60; --z-modal: 100;
}

/* ---- 2. Reset & base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* sticky header offset for anchors */
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-body);
  background: var(--fog);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* guard against accidental horizontal scroll */
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[role="list"] { list-style: none; padding: 0; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 3px solid #11324F;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: var(--s4); top: -120px;
  z-index: var(--z-modal);
  background: var(--gold); color: var(--asphalt);
  padding: .7rem 1.1rem; border-radius: var(--r-md);
  font-family: var(--font-mono); font-weight: 600; font-size: var(--fs-sm);
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: var(--s4); }

/* ---- 3. Typography ----------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;            /* expanded width axis */
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--step-display); letter-spacing: -0.02em; }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); font-weight: 700; }
h4 { font-size: var(--fs-lg); font-weight: 700; font-stretch: 112%; }
p { max-width: 64ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold);
  display: inline-block;
}
.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.aside-card .eyebrow { color: var(--gold); }
.lead { font-size: var(--fs-md); color: var(--ink-muted); max-width: 56ch; }
.section--dark .lead { color: var(--on-dark-muted); }
.mono { font-family: var(--font-mono); }
.nowrap { white-space: nowrap; }

/* ---- 4. Layout --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1340px; }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section--dark { background: var(--asphalt); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }
.section--alt { background: var(--fog-2); }
.section-head { max-width: 60ch; margin-bottom: var(--s7); }
.section-head .lead { margin-top: var(--s4); }

.grid { display: grid; gap: var(--s5); }
.stack > * + * { margin-top: var(--s4); }

/* Focus ring color flips on dark grounds */
.section--dark :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.cta-band :focus-visible,
.strip :focus-visible,
.band :focus-visible,
.site-header.is-dark :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold); }

/* ---- 5. Buttons -------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--asphalt);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: var(--r-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease),
              background-color var(--t) var(--ease),
              border-color var(--t) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--gold { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); color: var(--asphalt); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(224,154,18,.42); }
.btn--gold:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--asphalt); transform: translateY(-2px); }
.section--dark .btn--ghost,
.hero .btn--ghost,
.page-hero .btn--ghost,
.cta-band .btn--ghost,
.band .btn--ghost { color: var(--on-dark); border-color: var(--hairline-dark); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.band .btn--ghost:hover { border-color: var(--gold); color: #fff; }
.btn--dark { background: var(--asphalt); color: var(--on-dark); }
.btn--dark:hover { background: var(--steel); transform: translateY(-2px); }
.btn--sm { min-height: 40px; font-size: var(--fs-sm); padding: 0 1rem; }
.btn--lg { min-height: 56px; font-size: var(--fs-md); padding: 0 1.8rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; box-shadow: none; transform: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--gold-ink);
  font-family: var(--font-mono); font-size: var(--fs-cap);
  letter-spacing: .02em;
}
.section--dark .link-arrow { color: var(--gold); }
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---- 6. Header / nav --------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--fog) 86%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.site-header.is-dark {
  background: color-mix(in srgb, var(--asphalt) 82%, transparent);
  border-bottom-color: var(--hairline-dark);
  color: var(--on-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__logo { height: 38px; width: auto; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-stretch: 125%;
  font-size: 1.15rem; letter-spacing: .02em; color: var(--ink); line-height: 1; }
.brand__name small { display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: .58rem; letter-spacing: .28em; color: var(--ink-muted); margin-top: 3px; }
.is-dark .brand__name { color: var(--on-dark); }
.is-dark .brand__name small { color: var(--on-dark-muted); }

.nav__links { display: flex; align-items: center; gap: clamp(.5rem, 1.4vw, 1.5rem); }
.nav__links a {
  font-size: var(--fs-cap); font-weight: 600; color: var(--ink-body);
  padding: .5rem .3rem; position: relative; transition: color var(--t) var(--ease);
}
.is-dark .nav__links a { color: var(--on-dark-muted); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.is-dark .nav__links a:hover, .is-dark .nav__links a[aria-current="page"] { color: var(--on-dark); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .3rem; right: .3rem; bottom: -2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__phone {
  font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: 600;
  color: var(--ink); display: inline-flex; align-items: center; gap: .4rem;
}
.is-dark .nav__phone { color: var(--on-dark); }
.nav__phone svg { width: 15px; height: 15px; color: var(--gold-deep); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-md);
  border: 1px solid var(--hairline); align-items: center; justify-content: center; }
.is-dark .nav__toggle { border-color: var(--hairline-dark); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor;
  position: relative; transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---- 7. Hero + Dispatch board (SIGNATURE) ------------------------------ */
.hero {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(244,180,58,.10), transparent 55%),
    radial-gradient(80% 70% at 0% 0%, rgba(111,178,242,.08), transparent 60%),
    var(--asphalt);
  color: var(--on-dark);
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}
.hero::after { /* faint datum line echoing the 49th parallel */
  content: ""; position: absolute; left: 0; right: 0; top: 64%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline-dark) 0 14px, transparent 14px 28px);
  opacity: .5; pointer-events: none;
}
.hero__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  grid-template-columns: 1fr;
}
.hero__copy { max-width: 36rem; }
.hero h1 { color: #fff; margin-top: var(--s4); }
.hero h1 .accent { color: var(--gold); }
.hero__sub { margin-top: var(--s5); font-size: var(--fs-md); color: var(--on-dark-muted); max-width: 48ch; }
.hero__actions { margin-top: var(--s6); display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__trust { margin-top: var(--s6); display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
  font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--on-dark-muted); }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px rgba(52,208,138,.18); }

/* Dispatch board */
.board {
  background: linear-gradient(180deg, var(--steel), #12203250);
  background-color: var(--steel);
  border: 1px solid var(--steel-2);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  overflow: hidden;
  position: relative;
}
.board__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3);
  padding: .85rem 1.1rem;
  background: var(--asphalt-2);
  border-bottom: 1px solid var(--steel-2);
}
.board__title { font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark);
  display: inline-flex; align-items: center; gap: .55rem; }
.board__live { display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--on-dark-muted);
  letter-spacing: .1em; text-transform: uppercase; }
.board__live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); position: relative; }
.board__live .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--signal); animation: pulse 2.2s var(--ease-out) infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

.board__map { position: relative; height: 132px; background:
  linear-gradient(180deg, rgba(11,18,27,.2), rgba(11,18,27,.55)); border-bottom: 1px solid var(--steel-2); }
.board__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.board__lanes { padding: .35rem .4rem .6rem; }
.lane {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center; gap: .5rem;
  padding: .7rem .75rem;
  border-radius: var(--r-md);
  transition: background var(--t) var(--ease);
}
.lane:hover, .lane.is-active { background: rgba(111,178,242,.07); }
.lane__route { display: flex; align-items: baseline; gap: .55rem; min-width: 0; }
.lane__code { font-family: var(--font-mono); font-weight: 600; font-size: var(--fs-cap);
  color: var(--on-dark); letter-spacing: .04em; white-space: nowrap; }
.lane__arrow { color: var(--gold); font-size: var(--fs-cap); }
.lane__meta { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--on-dark-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lane__status { justify-self: end; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: var(--r-pill);
  border: 1px solid var(--steel-2); color: var(--on-dark);
  background: rgba(255,255,255,.03); white-space: nowrap;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate); flex-shrink: 0; }
.chip[data-state="ontime"]  { border-color: rgba(52,208,138,.4); }
.chip[data-state="ontime"] .dot, .chip[data-state="delivered"] .dot { background: var(--signal); box-shadow: 0 0 0 3px rgba(52,208,138,.18); }
.chip[data-state="rolling"] .dot { background: var(--transit); box-shadow: 0 0 0 3px rgba(111,178,242,.18); }
.chip[data-state="border"]  .dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(244,180,58,.2); }
.chip[data-state="booked"]  .dot { background: var(--on-dark-muted); }
.chip[data-state="delayed"] .dot { background: var(--delay); box-shadow: 0 0 0 3px rgba(240,106,90,.2); }

.board__foot { padding: .55rem 1.1rem; border-top: 1px solid var(--steel-2);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--on-dark-muted); }
.board__legend { display: inline-flex; gap: .9rem; flex-wrap: wrap; }
.board__legend span { display: inline-flex; align-items: center; gap: .35rem; }
.board__note { font-style: normal; opacity: .85; }

/* ---- 8. Trust strip ---------------------------------------------------- */
.strip { border-block: 1px solid var(--hairline-dark); background: var(--asphalt-2); }
.strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.strip__item { padding: 1.3rem var(--gutter); border-top: 1px solid var(--hairline-dark);
  display: flex; flex-direction: column; gap: .25rem; }
.strip__item:nth-child(odd) { border-right: 1px solid var(--hairline-dark); }
.strip__num { font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 1.7rem; color: #fff; line-height: 1; }
.strip__num .unit { color: var(--gold); }
.strip__label { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em;
  text-transform: uppercase; color: var(--on-dark-muted); }

/* ---- 9. Cards / services ---------------------------------------------- */
.cards { display: grid; gap: var(--s5); grid-template-columns: 1fr; }
.card {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: var(--s6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfd6cd; }
.card__icon { width: 48px; height: 48px; border-radius: var(--r-md);
  display: grid; place-items: center; background: var(--asphalt); color: var(--gold);
  margin-bottom: var(--s4); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--s2); }
.card p { color: var(--ink-muted); font-size: var(--fs-cap); }
.card__tag { position: absolute; top: var(--s5); right: var(--s5);
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--slate);
  letter-spacing: .08em; }

/* ---- 10. Border / process steps (numbered = real sequence) ------------ */
.steps { display: grid; gap: var(--s5); grid-template-columns: 1fr; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s4);
  padding: var(--s5) 0; border-top: 1px solid var(--hairline-dark);
}
.step__no { counter-increment: step; font-family: var(--font-mono); font-weight: 600;
  font-size: var(--fs-cap); color: var(--gold);
  width: 44px; height: 44px; border: 1px solid var(--hairline-dark); border-radius: var(--r-md);
  display: grid; place-items: center; }
.step__no::before { content: counter(step, decimal-leading-zero); }
.step h4 { color: var(--on-dark); margin-bottom: .3rem; }
.step p { color: var(--on-dark-muted); font-size: var(--fs-cap); }
.step__tag { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase; }

/* ---- 11. Split media (fleet / about) ---------------------------------- */
.split { display: grid; gap: clamp(2rem,4vw,4rem); align-items: center; grid-template-columns: 1fr; }
.split--flip .split__media { order: -1; }
.media-frame {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  border: 1px solid var(--hairline); background: var(--steel);
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame__tag {
  position: absolute; left: var(--s4); bottom: var(--s4);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em;
  background: color-mix(in srgb, var(--asphalt) 80%, transparent); color: var(--on-dark);
  padding: .4rem .7rem; border-radius: var(--r-sm);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  text-transform: uppercase;
}
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s5); margin-top: var(--s5); }
.spec { border-top: 1px solid var(--hairline); padding-top: var(--s3); }
.section--dark .spec { border-top-color: var(--hairline-dark); }
.spec dt { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-muted); }
.section--dark .spec dt { color: var(--on-dark-muted); }
.spec dd { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-top: .2rem; }
.section--dark .spec dd { color: var(--on-dark); }

/* ---- 12. Feature list -------------------------------------------------- */
.checklist { display: grid; gap: var(--s3); }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--signal); margin-top: 2px; flex-shrink: 0; }
.checklist b { font-weight: 700; color: inherit; }

/* ---- 13. Careers band (small, deliberately not hero) ------------------ */
.band {
  border-radius: var(--r-xl); padding: clamp(2rem,4vw,3.5rem);
  background:
    linear-gradient(120deg, var(--steel), var(--asphalt));
  border: 1px solid var(--steel-2); color: var(--on-dark);
  display: grid; gap: var(--s5); align-items: center; grid-template-columns: 1fr;
}
.band .eyebrow { color: var(--gold); }
.band h2 { color: #fff; }
.band p { color: var(--on-dark-muted); }

/* ---- 14. Testimonials -------------------------------------------------- */
.quote-card { background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: var(--s6); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--s4); }
.quote-card blockquote { font-size: var(--fs-md); color: var(--ink); line-height: 1.5; }
.quote-card cite { font-style: normal; font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--ink-muted); display: flex; flex-direction: column; gap: .15rem; }
.quote-card cite b { color: var(--ink); font-style: normal; }
.placeholder-flag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .04em;
  color: var(--gold-ink); background: rgba(244,180,58,.14);
  border: 1px dashed var(--gold-ink); border-radius: var(--r-sm); padding: .15rem .5rem;
}

/* ---- 15. CTA band ------------------------------------------------------ */
.cta-band { background: var(--asphalt); color: var(--on-dark); border-radius: var(--r-xl);
  padding: clamp(2.2rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 50% -20%, rgba(244,180,58,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-muted); margin: var(--s4) auto var(--s6); }
.cta-band .hero__actions { justify-content: center; }

/* ---- 16. Forms (quote) ------------------------------------------------- */
.form-shell { display: grid; gap: clamp(2rem,4vw,3.5rem); grid-template-columns: 1fr; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.4rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: var(--s4); grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: var(--fs-cap); color: var(--ink); }
.field label .req { color: var(--delay); margin-left: 2px; }
.field .hint { font-size: var(--fs-xs); color: var(--ink-muted); font-family: var(--font-mono); }
.input, .select, .textarea {
  width: 100%; min-height: 48px; padding: .7rem .9rem;
  background: var(--fog); border: 1.5px solid var(--hairline); border-radius: var(--r-md);
  color: var(--ink); transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.input:hover, .select:hover, .textarea:hover { border-color: #c6cdc4; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold-ink);
  box-shadow: 0 0 0 3px rgba(140,96,0,.30); background: var(--paper);
}
.input::placeholder, .textarea::placeholder { color: #9aa6b0; }
.field[data-invalid="true"] .input,
.field[data-invalid="true"] .select,
.field[data-invalid="true"] .textarea { border-color: var(--delay); box-shadow: 0 0 0 3px rgba(240,106,90,.16); }
.field .error { font-size: var(--fs-xs); color: #c23b2c; font-weight: 600; min-height: 1em; }
.lane-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: .7rem; align-items: end; }
.lane-pair__arrow { padding-bottom: .85rem; color: var(--gold-deep); }

.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start;
  font-size: var(--fs-sm); color: var(--ink-muted); }
.consent input { width: 22px; height: 22px; margin-top: 1px; accent-color: var(--gold-deep); flex-shrink: 0; }
.consent a { color: var(--gold-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.form-status { border-radius: var(--r-md); padding: var(--s4); font-size: var(--fs-cap);
  display: none; gap: .7rem; align-items: start; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-status.is-shown { display: flex; }
.form-status--ok { background: rgba(52,208,138,.12); border: 1px solid rgba(52,208,138,.4); color: #0f6e44; }
.form-status--err { background: rgba(240,106,90,.1); border: 1px solid rgba(240,106,90,.4); color: #b23121; }
.form-status__text { font-weight: 500; }

/* Honeypot: hidden from people, visible to bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-aside { position: relative; }
.aside-card { background: var(--asphalt); color: var(--on-dark); border-radius: var(--r-lg);
  padding: clamp(1.4rem,3vw,2rem); border: 1px solid var(--steel-2); }
.aside-card h3 { color: #fff; margin-bottom: var(--s3); }
.aside-card .checklist li { color: var(--on-dark-muted); font-size: var(--fs-cap); }
.aside-card .checklist b { color: var(--on-dark); }

/* ---- 17. Footer -------------------------------------------------------- */
.site-footer { background: var(--asphalt-2); color: var(--on-dark-muted); padding-block: var(--s8) var(--s6); }
.footer__grid { display: grid; gap: var(--s7); grid-template-columns: 1fr; }
.footer__brand p { font-size: var(--fs-cap); max-width: 34ch; margin-top: var(--s3); }
.footer__col h4 { color: var(--on-dark); font-size: var(--fs-cap); font-stretch: 112%;
  letter-spacing: .04em; margin-bottom: var(--s3); }
.footer__col a { display: block; padding: .3rem 0; font-size: var(--fs-cap); color: var(--on-dark-muted);
  transition: color var(--t) var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__reg { font-family: var(--font-mono); font-size: var(--fs-xs); line-height: 1.7; }
.footer__reg .flag { color: var(--gold); }
.footer__bottom { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--hairline-dark);
  display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: space-between; align-items: center;
  font-size: var(--fs-xs); font-family: var(--font-mono); }
.footer__bottom a:hover { color: var(--gold); }

/* ---- 18. Page hero (interior pages) ----------------------------------- */
.page-hero { background:
    radial-gradient(110% 120% at 90% -20%, rgba(244,180,58,.10), transparent 55%),
    var(--asphalt); color: var(--on-dark); padding-block: clamp(3rem,6vw,5.5rem) clamp(2.5rem,4vw,4rem);
  position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 38%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline-dark) 0 14px, transparent 14px 28px); opacity: .5; }
.page-hero h1 { color: #fff; margin-top: var(--s3); max-width: 18ch; }
.page-hero p { color: var(--on-dark-muted); margin-top: var(--s4); font-size: var(--fs-md); }
.breadcrumb { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em;
  text-transform: uppercase; color: var(--on-dark-muted); display: flex; gap: .5rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---- 18b. Legal / long-form prose ------------------------------------- */
.legal { max-width: 760px; }
.legal h2 { font-size: var(--step-h3); margin-top: var(--s7); }
.legal > h2:first-child { margin-top: 0; }
.legal h3 { font-size: var(--fs-lg); margin-top: var(--s5); margin-bottom: var(--s2); }
.legal p { color: var(--ink-body); }
.legal p + p { margin-top: var(--s3); }
.legal ul { margin: var(--s3) 0 0; padding-left: 1.2rem; display: grid; gap: .45rem; }
.legal li { color: var(--ink-body); }
.legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal .note { background: var(--fog-2); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: var(--s4) var(--s5); margin-bottom: var(--s6); }
.legal .note p { color: var(--ink-muted); font-size: var(--fs-cap); }
.legal dl dt { font-weight: 700; margin-top: var(--s4); }

/* ---- 19. Reveal animation --------------------------------------------- */
/* Hidden only when JS is active (so no-JS users still see all content) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 80ms; }
.js .reveal[data-delay="2"] { transition-delay: 160ms; }
.js .reveal[data-delay="3"] { transition-delay: 240ms; }

/* Route draw (hero board) */
.route-line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.route-line.is-drawn { animation: draw 2.4s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.route-truck { opacity: 0; }
.route-truck.is-drawn { animation: rollIn 2.4s var(--ease-out) forwards; }
@keyframes rollIn { 0% { opacity: 0; } 12% { opacity: 1; } 100% { opacity: 1; } }

/* ---- 20. Responsive ---------------------------------------------------- */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .strip__grid { grid-template-columns: repeat(4, 1fr); }
  .strip__item { border-top: none; }
  .strip__item:nth-child(odd) { border-right: 1px solid var(--hairline-dark); }
  .strip__item:not(:last-child) { border-right: 1px solid var(--hairline-dark); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide { grid-template-columns: 1.1fr .9fr; }
  .band { grid-template-columns: 1.5fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; column-gap: var(--s7); }
  .form-shell { grid-template-columns: 1.6fr 1fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}
@media (min-width: 1024px) {
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav */
@media (max-width: 879px) {
  .nav__toggle { display: inline-flex; }
  .nav { gap: var(--s2); min-height: 64px; }
  .nav__cta { gap: .5rem; }
}
.cta-short { display: none; }
@media (max-width: 480px) {
  .brand__logo { height: 32px; }
  .brand__name { font-size: .95rem; }
  .brand__name small { display: none; }
  .nav__cta .btn--gold { padding: 0 .85rem; min-height: 42px; }
  .nav__toggle { width: 42px; height: 42px; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
}
@media (max-width: 879px) {
  .nav__panel {
    position: fixed; inset: 72px 0 auto 0; z-index: var(--z-overlay);
    background: var(--asphalt); border-bottom: 1px solid var(--steel-2);
    padding: var(--s5) var(--gutter) var(--s6);
    transform: translateY(-130%); visibility: hidden;
    transition: transform var(--t-slow) var(--ease-out), visibility var(--t-slow) step-end;
    display: flex; flex-direction: column; gap: var(--s2);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav.is-open .nav__panel { transform: translateY(0); visibility: visible; transition-timing-function: var(--ease-out), step-start; }
  .nav__panel .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__panel .nav__links a {
    color: var(--on-dark); font-size: var(--fs-lg); font-weight: 600;
    padding: .9rem .2rem; border-bottom: 1px solid var(--steel-2);
  }
  .nav__panel .nav__links a[aria-current="page"] { color: var(--gold); }
  .nav__panel .nav__links a[aria-current="page"]::after { display: none; }
  .nav__panel .nav__phone { display: inline-flex; color: var(--on-dark); margin-top: var(--s4); font-size: var(--fs-md); }
}
@media (min-width: 880px) {
  .nav__panel { display: contents; }
}

/* ---- 21. Reduced motion ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
  .route-line { stroke-dashoffset: 0; }
  .route-truck { opacity: 1; }
  .board__live .pulse::after { display: none; }
}

/* ---- 22. Print --------------------------------------------------------- */
@media print {
  .site-header, .nav__toggle, .board, .cta-band, .site-footer { display: none !important; }
  body { color: #000; background: #fff; }
}
