/* ==========================================================================
   Nature Dispatch — Design System
   Premium logistics-technology aesthetic. Navy + lime on off-white.
   Plain CSS, no build step. Works uploaded as-is.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:        #1E3A8A;
  --navy-dark:   #16296B;
  --navy-deep:   #0F1E4D;   /* hero / footer base */
  --navy-950:    #0A1436;   /* deepest */
  --lime:        #C2E212;
  --lime-bright: #D4F52A;

  /* Neutrals */
  --ink:         #0E1424;   /* headings */
  --body:        #3B4457;   /* body text */
  --muted:       #6A7488;   /* secondary text */
  --line:        #E4E8F0;   /* hairline borders */
  --line-strong: #D2D9E6;
  --surface:     #FFFFFF;
  --off-white:   #F6F8FB;
  --off-white-2: #EEF2F8;

  /* On-dark */
  --on-dark:        #EAF0FB;
  --on-dark-muted:  #A7B2CC;
  --line-dark:      rgba(255,255,255,.12);

  /* Semantic */
  --primary:        var(--navy);
  --primary-hover:  var(--navy-dark);
  --accent:         var(--lime);

  /* Typography */
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: .78rem;
  --fs-sm:      .9rem;
  --fs-base:    1.0625rem;
  --fs-lead:    clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-h3:      clamp(1.3rem, 2vw, 1.6rem);
  --fs-h2:      clamp(1.9rem, 3.4vw, 2.75rem);
  --fs-h1:      clamp(2.4rem, 4.6vw, 3.6rem);
  --fs-hero:    clamp(2.8rem, 6.2vw, 5rem);
  --fs-display: clamp(3rem, 8vw, 6rem);

  /* Spacing */
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --section:  clamp(4.5rem, 9vw, 8rem);

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,30,77,.06), 0 1px 3px rgba(15,30,77,.05);
  --shadow:    0 6px 20px rgba(15,30,77,.08), 0 2px 6px rgba(15,30,77,.05);
  --shadow-lg: 0 24px 60px rgba(15,30,77,.14), 0 8px 24px rgba(15,30,77,.08);
  --shadow-navy: 0 22px 48px rgba(15,30,77,.28);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--lime); color: var(--navy-deep); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-white { background: var(--surface); }
.bg-off { background: var(--off-white); }
.bg-off-2 { background: var(--off-white-2); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--lime); border-radius: 2px;
}
.eyebrow--center::before { display: none; }
.eyebrow--on-dark { color: var(--lime); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: .8rem; }
.section-head p { margin-top: 1rem; font-size: var(--fs-lead); color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .92rem 1.55rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 8px 22px rgba(30,58,138,.28); }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30,58,138,.34); }
.btn--accent { background: var(--lime); color: var(--navy-deep); box-shadow: 0 8px 22px rgba(194,226,18,.35); }
.btn--accent:hover { background: var(--lime-bright); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(194,226,18,.45); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: #fff; transform: translateY(-2px); }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.textlink svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.textlink:hover { color: var(--navy-dark); }
.textlink:hover svg { transform: translateX(4px); }
.textlink--on-dark { color: var(--lime); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(246,248,251,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(15,30,77,.05);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -.02em; color: var(--navy-deep); line-height: 1; }
.brand__text i { color: var(--navy); font-style: normal; }
.brand__sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* Nav */
.nav { display: flex; align-items: center; gap: .3rem; }
.nav__link {
  font-family: var(--font-display); font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: .55rem .85rem; border-radius: var(--r-pill); position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--navy); background: rgba(30,58,138,.06); }
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--lime);
}

.header-cta { display: flex; align-items: center; gap: .7rem; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 12px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; background: var(--navy-deep);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 50%; transform: translate(-50%,-50%); }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.is-open span::after { transform: rotate(-45deg) translate(5px,-5px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 82% 8%, #24429B 0%, var(--navy-deep) 46%, var(--navy-950) 100%);
  color: var(--on-dark);
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__eyebrow { color: var(--lime); }
.hero h1 {
  color: #fff; font-size: var(--fs-hero); margin-top: 1.1rem; font-weight: 600;
  letter-spacing: -.025em;
}
.hero h1 .accent { color: var(--lime); }
.hero__lead { margin-top: 1.4rem; font-size: var(--fs-lead); color: var(--on-dark-muted); max-width: 40ch; }
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-item b { font-family: var(--font-display); font-size: 1.5rem; color: #fff; letter-spacing: -.02em; }
.hero__trust-item span { font-size: .82rem; color: var(--on-dark-muted); }

/* decorative grid + glow behind hero */
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 70% 20%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 20%, #000 30%, transparent 78%);
}
.hero__glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(30px); opacity: .5; }
.hero__glow--lime { background: radial-gradient(circle, rgba(194,226,18,.28), transparent 62%); top: -120px; right: -60px; }
.hero__glow--blue { background: radial-gradient(circle, rgba(64,110,220,.4), transparent 62%); bottom: -160px; left: -120px; }

/* Hero visual card (route/map motif) */
.hero__visual { position: relative; }

/* ==========================================================================
   STAT BAR
   ========================================================================== */
.statbar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.statbar--float { margin-top: calc(-1 * clamp(2.5rem, 5vw, 4rem)); position: relative; z-index: 5; }
.stat { padding: 1.7rem 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.6rem); color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.stat span { display: block; margin-top: .5rem; font-size: .84rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }

/* ==========================================================================
   AUDIENCE CARDS (3 doors)
   ========================================================================== */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.door {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.9rem 1.8rem; display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.door::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--lime)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.door:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.door:hover::after { transform: scaleX(1); }
.door__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(30,58,138,.08); color: var(--navy); margin-bottom: 1.3rem;
}
.door__icon svg { width: 27px; height: 27px; }
.door h3 { font-size: var(--fs-h3); }
.door p { margin-top: .7rem; color: var(--muted); font-size: .98rem; flex: 1; }
.door .textlink { margin-top: 1.4rem; }

/* ==========================================================================
   FEATURE / BENEFIT CARDS
   ========================================================================== */
.card-grid { display: grid; gap: 1.3rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(30,58,138,.07); color: var(--navy); margin-bottom: 1.1rem;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.16rem; letter-spacing: -.01em; }
.feature p { margin-top: .55rem; font-size: .95rem; color: var(--muted); }

/* Benefit chip card (named benefits, driver page) */
.benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.35rem 1.4rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.benefit__ico { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(194,226,18,.18); color: var(--navy); }
.benefit__ico svg { width: 21px; height: 21px; }
.benefit h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.benefit p { margin-top: .25rem; font-size: .9rem; color: var(--muted); }

/* ==========================================================================
   SPLIT / MEDIA SECTIONS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__body h2 { font-size: var(--fs-h2); margin-top: .8rem; }
.split__body > p { margin-top: 1.1rem; font-size: var(--fs-lead); color: var(--muted); }
.checklist { margin-top: 1.6rem; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--body); font-size: 1rem; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--navy); margin-top: 1px; }
.checklist li b { color: var(--ink); font-weight: 600; }

/* Framed panel used for SVG visuals */
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: clamp(1.3rem, 2.5vw, 2rem); position: relative; overflow: hidden;
}
.panel--navy {
  background: radial-gradient(120% 120% at 80% 0%, #24429B, var(--navy-deep) 60%, var(--navy-950));
  border-color: transparent; color: var(--on-dark);
}
.panel__label {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.1rem; font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.panel--navy .panel__label { color: var(--on-dark-muted); }
.pill-live { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy); font-weight: 600; }
.panel--navy .pill-live { color: var(--lime); }
.pill-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(194,226,18,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(194,226,18,.55);} 70%{ box-shadow: 0 0 0 9px rgba(194,226,18,0);} 100%{ box-shadow: 0 0 0 0 rgba(194,226,18,0);} }
@media (prefers-reduced-motion: reduce){ .pill-live::before { animation: none; } }

/* ==========================================================================
   TECH FEATURE (DriveTrack) — dark band with dashboard mock
   ========================================================================== */
.techband {
  background: radial-gradient(130% 120% at 15% 10%, #21409A, var(--navy-deep) 55%, var(--navy-950));
  color: var(--on-dark); border-radius: var(--r-xl); overflow: hidden; position: relative;
}
.techband__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; padding: clamp(2rem, 5vw, 4rem); }
.techband h2 { color: #fff; font-size: var(--fs-h2); }
.techband p { color: var(--on-dark-muted); margin-top: 1rem; font-size: var(--fs-lead); }
.techband .checklist li { color: var(--on-dark); }
.techband .checklist li svg { color: var(--lime); }
.techband .checklist li b { color: #fff; }

/* mini dashboard mock */
.dash {
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: 1.2rem; backdrop-filter: blur(6px);
}
.dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dash__title { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: .95rem; }
.dash__rows { display: grid; gap: .7rem; }
.dash__row { display: grid; grid-template-columns: 1fr auto; gap: .5rem; align-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 10px; padding: .7rem .85rem; }
.dash__lane { font-size: .86rem; color: var(--on-dark); font-weight: 500; }
.dash__meta { font-size: .72rem; color: var(--on-dark-muted); }
.dash__badge { font-family: var(--font-display); font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; }
.dash__badge--live { background: rgba(194,226,18,.16); color: var(--lime); }
.dash__badge--ontime { background: rgba(120,190,255,.16); color: #9CC7FF; }

/* ==========================================================================
   PROCESS (numbered steps)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.3rem; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.5rem; position: relative;
}
.step__n {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy);
  width: 40px; height: 40px; border-radius: 11px; background: rgba(30,58,138,.08);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.12rem; }
.step p { margin-top: .5rem; font-size: .93rem; color: var(--muted); }

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.2rem); box-shadow: var(--shadow-sm); position: relative;
}
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--lime); height: 34px; }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.25rem,2.4vw,1.7rem); color: var(--ink); letter-spacing: -.01em; line-height: 1.4; }
.quote__by { margin-top: 1.6rem; display: flex; align-items: center; gap: .9rem; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote__by b { display: block; color: var(--ink); font-family: var(--font-display); }
.quote__by span { font-size: .88rem; color: var(--muted); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta {
  background: radial-gradient(120% 140% at 50% -20%, #24429B, var(--navy-deep) 55%, var(--navy-950));
  color: #fff; border-radius: var(--r-xl); text-align: center; position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 75%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: var(--fs-h2); max-width: 18ch; margin-inline: auto; }
.cta p { color: var(--on-dark-muted); margin-top: 1rem; font-size: var(--fs-lead); max-width: 52ch; margin-inline: auto; }
.cta__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta__note { margin-top: 1.4rem; font-size: .86rem; color: var(--on-dark-muted); display: inline-flex; align-items: center; gap: .5rem; }
.cta__note svg { width: 16px; height: 16px; color: var(--lime); }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 85% 0%, #22409A, var(--navy-deep) 55%, var(--navy-950));
  color: var(--on-dark);
  padding-top: calc(var(--header-h) + clamp(2.6rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(110% 90% at 80% 10%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(110% 90% at 80% 10%, #000 20%, transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__inner { max-width: 760px; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); margin-top: 1rem; }
.page-hero p { margin-top: 1.2rem; font-size: var(--fs-lead); color: var(--on-dark-muted); max-width: 56ch; }
.page-hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.crumbs { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--on-dark-muted); }
.crumbs a { color: var(--on-dark-muted); transition: color .2s var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }

/* ==========================================================================
   LANE MAP / mileage rings (index + shippers)
   ========================================================================== */
.lanewrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.lane-list { display: grid; gap: .7rem; }
.lane-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: .8rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1.1rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.lane-row:hover { border-color: var(--navy); transform: translateX(4px); }
.lane-row__name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .98rem; }
.lane-row__mi { font-size: .82rem; color: var(--muted); }
.lane-row__time { font-family: var(--font-display); font-weight: 600; font-size: .84rem; color: var(--navy); background: rgba(30,58,138,.07); padding: .25rem .6rem; border-radius: 999px; }

/* ==========================================================================
   VALUES / ABOUT
   ========================================================================== */
.value { padding: 1.7rem 1.6rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface); }
.value__n { font-family: var(--font-display); color: var(--lime); font-weight: 700; font-size: .8rem; letter-spacing: .12em; }
.value h3 { margin-top: .8rem; font-size: 1.2rem; }
.value p { margin-top: .5rem; color: var(--muted); font-size: .96rem; }

.timeline { display: grid; gap: 0; position: relative; }
.tl { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.tl:first-child { border-top: 0; }
.tl__year { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); letter-spacing: -.02em; }
.tl__body h3 { font-size: 1.16rem; }
.tl__body p { margin-top: .4rem; color: var(--muted); font-size: .98rem; }

/* ==========================================================================
   FORMS (contact + apply)
   ========================================================================== */
.formcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form-row { display: grid; gap: 1.1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--ink); }
.field label .req { color: var(--navy); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: 11px;
  background: var(--off-white); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(30,58,138,.12);
}
.field__hint { font-size: .8rem; color: var(--muted); }
.form-aside { display: grid; gap: 1.1rem; align-content: start; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; }
.contact-line__ico { width: 44px; height: 44px; flex: none; border-radius: 11px; background: rgba(30,58,138,.08); color: var(--navy); display: grid; place-items: center; }
.contact-line__ico svg { width: 21px; height: 21px; }
.contact-line b { display: block; font-family: var(--font-display); color: var(--ink); font-size: .95rem; }
.contact-line a, .contact-line span { color: var(--muted); font-size: .95rem; }
.contact-line a:hover { color: var(--navy); }
.form-note { display: flex; gap: .6rem; align-items: flex-start; font-size: .84rem; color: var(--muted); margin-top: .4rem; }
.form-note svg { width: 17px; height: 17px; flex: none; color: var(--navy); margin-top: 1px; }
.form-success {
  display: none; align-items: center; gap: .8rem; background: rgba(194,226,18,.14);
  border: 1px solid rgba(120,150,10,.3); color: var(--navy-deep); padding: 1rem 1.2rem; border-radius: 12px;
  font-weight: 500;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--navy); flex: none; }

/* Apply band (drivers) */
.applybar { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.applybar .feature { text-align: left; }

/* Pay cards */
.pay {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 2rem 1.8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.pay:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pay--featured { border-color: var(--navy); box-shadow: var(--shadow); position: relative; }
.pay--featured::before { content: "Most popular"; position: absolute; top: -12px; left: 1.8rem; background: var(--lime); color: var(--navy-deep); font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; }
.pay__type { font-family: var(--font-display); font-weight: 600; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.pay__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.5vw,2.7rem); color: var(--ink); letter-spacing: -.02em; margin-top: .7rem; line-height: 1; }
.pay__num small { font-size: .95rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pay__desc { margin-top: .6rem; color: var(--muted); font-size: .95rem; }
.pay ul { margin-top: 1.4rem; display: grid; gap: .75rem; }
.pay ul li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; color: var(--body); }
.pay ul li svg { width: 19px; height: 19px; color: var(--navy); flex: none; margin-top: 2px; }
.pay .btn { margin-top: 1.7rem; }

/* Logo/trust strip */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.6rem; }
.trust-badge { display: inline-flex; align-items: center; gap: .6rem; color: var(--muted); font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.trust-badge svg { width: 26px; height: 26px; color: var(--navy); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 30px; height: 30px; flex: none; border-radius: 8px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.faq summary .ico svg { width: 16px; height: 16px; }
.faq details[open] summary .ico { transform: rotate(45deg); background: var(--navy); color: #fff; border-color: var(--navy); }
.faq details p { padding: 0 0 1.4rem; color: var(--muted); max-width: 68ch; margin-top: -.3rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--on-dark-muted); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand__text { color: #fff; }
.footer-brand .brand__text i { color: var(--lime); }
.footer-brand p { margin-top: 1.1rem; max-width: 34ch; font-size: .95rem; color: var(--on-dark-muted); }
.footer-badges { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.fbadge { font-family: var(--font-display); font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--on-dark); border: 1px solid var(--line-dark); border-radius: 999px; padding: .35rem .8rem; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .95rem; color: var(--on-dark-muted); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--lime); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--lime); margin-top: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.6rem 0; font-size: .85rem; }
.footer-bottom .compliance { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.footer-bottom .compliance b { color: var(--on-dark); font-family: var(--font-display); font-weight: 600; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .door:hover, .feature:hover, .pay:hover { transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 520px; }
  .split, .split--reverse .split__media, .techband__inner, .lanewrap { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .doors { grid-template-columns: 1fr; }
  .applybar { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
    padding: 1rem clamp(1.15rem,4vw,2.5rem) 1.4rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: .9rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: rgba(30,58,138,.07); }
  .header-cta .btn--ghost { display: none; }
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 70px 1fr; gap: 1rem; }
  .hero__trust { gap: 1.2rem 1.8rem; }
}
@media (max-width: 420px) {
  .statbar { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .brand__sub { display: none; }
}
