/* =========================
   SKD GLOBAL — PREMIUM CSS
   ========================= */

:root {
  /* Brand */
  --blue-500: #016BFF;
  --blue-400: #3D8BFF;
  --blue-300: #69B0FF;
  --blue-600: #0357CE;
  --blue-700: #0454C8;
  --blue-900: #0C1939;
  --navy-950: #060B1F;
  --navy-900: #0A1230;
  --navy-800: #111B3F;
  --ink: #E7ECF7;
  --ink-dim: #A2ADC8;
  --ink-mute: #6B7799;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --white: #FFFFFF;

  /* Type */
  --f-mega: "Big Shoulders Display", "Inter", system-ui, sans-serif;
  --f-display: "Big Shoulders Display", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --container: 1240px;
  --radius: 18px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  background: var(--navy-950);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Background grid + noise ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at top, #000 0%, transparent 70%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(6, 11, 31, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(105, 176, 255, 0.4));
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--blue-500);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.pill:hover { border-color: var(--blue-500); color: var(--blue-300); }
.pill-icon {
  flex-shrink: 0;
  color: var(--blue-300);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.pill:hover .pill-icon { color: var(--white); transform: rotate(-12deg); }

/* Beefier nav CTA button so it earns the eye */
.nav-cta-btn {
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 10px 28px -10px rgba(1,107,255,0.7),
    0 0 24px rgba(1,107,255,0.25);
  animation: navCtaPulse 3.4s ease-in-out infinite;
}
.nav-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18) inset,
    0 18px 40px -10px rgba(1,107,255,0.85),
    0 0 32px rgba(1,107,255,0.45);
}
.nav-cta-btn:hover::before {
  transform: translateX(100%);
}
.nav-cta-btn svg {
  transition: transform .25s var(--ease);
}
.nav-cta-btn:hover svg {
  transform: translateX(3px);
}
@keyframes navCtaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.10) inset,
      0 10px 28px -10px rgba(1,107,255,0.7),
      0 0 24px rgba(1,107,255,0.25);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.10) inset,
      0 10px 28px -10px rgba(1,107,255,0.85),
      0 0 38px rgba(1,107,255,0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-cta-btn { animation: none; }
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #19E27A;
  box-shadow: 0 0 10px #19E27A;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile slide-down menu — full styles live at the bottom of this file so
   they sit after the premium pass and always win the cascade on small screens. */
@media (max-width: 1024px) {
  /* Placeholder kept for legibility. See bottom of file for active rules. */
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600) 60%, #0846A8);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(1,107,255,.6), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  box-shadow: 0 14px 36px -10px rgba(1,107,255,.8), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.btn-white {
  background: var(--white);
  color: var(--navy-950);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(255,255,255,.4); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1) brightness(1.05);
  will-change: transform;
}
.hero-video {
  display: block;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(1,107,255,0.22) 0%, transparent 55%),
    linear-gradient(180deg,
      rgba(6,11,31,0.68) 0%,
      rgba(6,11,31,0.78) 40%,
      rgba(6,11,31,0.90) 80%,
      var(--navy-950) 100%);
}
/* legibility lift on hero copy without darkening the video */
.hero-title,
.hero-sub,
.hero-stats {
  text-shadow: 0 2px 18px rgba(6,11,31,0.5);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 10px var(--blue-500);
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 28px 0 28px;
  color: var(--white);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
  will-change: transform;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-500) 50%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: baseline;
}
.stat-num .suffix {
  color: var(--blue-500);
}
.stat-label {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Marquee ===== */
.hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6,11,31,0.6);
  overflow: hidden;
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.marquee-track .dot-sep {
  color: var(--blue-500);
  font-size: 8px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CREDS strip ===== */
.creds {
  background: var(--navy-900);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 28px;
  gap: 24px;
}
.creds-block {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.creds-block:first-child { border-left: 0; padding-left: 0; }
.creds-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.creds-value {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 130px 0;
  z-index: 1;
}
.section-head { margin-bottom: 64px; max-width: 800px; }
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  max-width: none;
}
.section-head--row > div { flex: 1 1 60%; min-width: 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 24px;
}
.kicker span {
  width: 32px; height: 1px; background: var(--blue-500);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.6vw, 84px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-500);
}
.section-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-dim);
  max-width: 580px;
}
.section-sub--narrow { max-width: 380px; margin-top: 0; }

/* word reveal helper for split text */
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.18em;
}
.split-text .word > span {
  display: inline-block;
  will-change: transform;
}

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: linear-gradient(145deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(1,107,255,.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1,107,255,.4);
  box-shadow: 0 20px 60px -20px rgba(1,107,255,.3);
}
.service-card:hover::before { opacity: 1; }
.service-card--lg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card--accent {
  background: linear-gradient(145deg, #0a3a8c 0%, var(--blue-900) 100%);
  border-color: rgba(1,107,255,.45);
}
.service-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.service-card--lg .service-num { font-size: 13px; }
.service-icon {
  color: var(--blue-500);
  margin-bottom: 20px;
}
.service-card--accent .service-icon { color: var(--blue-300); }
.service-card h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--white);
}
.service-card p {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0 0 20px;
}
.tag-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.tag-row li {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===== PROCESS ===== */
.process {
  background:
    linear-gradient(180deg, transparent 0%, rgba(1,107,255,0.04) 50%, transparent 100%);
}
.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-line {
  position: absolute;
  left: 8%; right: 8%;
  top: 36px;
  height: 2px;
  background: var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
}
.process-line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: 2px;
  transform-origin: left center;
}
.process-step {
  position: relative;
  padding: 0 8px;
  text-align: left;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2px solid var(--blue-500);
  box-shadow: 0 0 0 6px rgba(1,107,255,0.08);
  z-index: 2;
}
.process-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--blue-500);
  margin-bottom: 80px;
}
.process-step h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0;
  max-width: 240px;
}

/* ===== INDUSTRIES ===== */
.industry-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.industry-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: padding .35s var(--ease), background .35s var(--ease);
  position: relative;
}
.industry-row::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), transparent);
  transition: right .5s var(--ease);
}
.industry-row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(1,107,255,0.05), transparent);
}
.industry-row:hover::after { right: 0; }
.ind-num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--blue-500);
}
.ind-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}
.ind-desc {
  color: var(--ink-dim);
  font-size: 15px;
}
.ind-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== Amazon Relay Feature ===== */
.amazon-feature {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(1,107,255,0.10) 0%, transparent 55%),
    transparent;
}
.amazon-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.amazon-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.amazon-content .section-sub { margin-top: 0; max-width: 480px; }

.amazon-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.amazon-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.amazon-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(1,107,255,0.14);
  border: 1px solid rgba(1,107,255,0.42);
  color: var(--blue-300);
  flex-shrink: 0;
  margin-top: 2px;
}
.amazon-points strong {
  display: block;
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.amazon-points li > div > span {
  display: block;
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
  line-height: 1.5;
}

.amazon-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.amazon-image {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(1,107,255,0.18) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  aspect-ratio: 5 / 4;
  isolation: isolate;
  padding: 20px;
}
.amazon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: contrast(1.05) saturate(0.95);
}
.amazon-image:hover img {
  transform: scale(1.02);
  filter: contrast(1.1) saturate(1.05);
}
.amazon-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 65%, rgba(1,107,255,0.16) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.amazon-image-tag {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6,11,31,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(1,107,255,0.45);
  color: var(--blue-300);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.amazon-image-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 10px var(--blue-300);
}

/* ===== Why / Fleet ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.01);
  transition: background .3s var(--ease);
}
.why-item:hover { background: rgba(1,107,255,.05); }
.why-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--blue-500);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.why-item h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.why-item p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ===== LANES (Major Metros) ===== */
.lanes {
  background:
    radial-gradient(ellipse at top right, rgba(1,107,255,0.06) 0%, transparent 55%),
    transparent;
}

.metro-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metro-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.metro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(1,107,255,0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.metro-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1,107,255,0.45);
  box-shadow: 0 18px 44px -22px rgba(1,107,255,0.4);
}
.metro-card:hover::before { opacity: 1; }

.metro-pin {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(1,107,255,0.10);
  border: 1px solid rgba(1,107,255,0.28);
  color: var(--blue-300);
  margin-bottom: 14px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.metro-card:hover .metro-pin {
  background: var(--blue-500);
  color: #fff;
}

.metro-name {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.metro-state {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0;
  text-transform: none;
}
.metro-region {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
}

/* ===== Driver Form ===== */
.drive {
  background:
    radial-gradient(ellipse at top right, rgba(1,107,255,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}
.form-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate; /* Stop the page-wide noise overlay (mix-blend-mode)
                         from bleeding into native form controls. */
}
.form-shell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}
.step-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  background: rgba(0,0,0,0.2);
  transition: all .3s var(--ease);
}
.step-item span {
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 600;
}
.step-item.active {
  border-color: var(--blue-500);
  color: var(--white);
  background: rgba(1,107,255,.12);
}
.step-item.active span {
  background: var(--blue-500);
  color: var(--white);
}
.step-item.done { color: var(--ink); }
.step-item.done span {
  background: rgba(1,107,255,.4);
  color: var(--white);
}

.form-step { display: none; animation: fadeUp .45s var(--ease); }
.form-step.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-row { margin-bottom: 18px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span,
.field-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: rgba(1,107,255,.06);
  box-shadow: 0 0 0 4px rgba(1,107,255,.08);
}
.field select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23A2ADC8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23A2ADC8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
}
.field select::-ms-expand { display: none; }

.check-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.check input { accent-color: var(--blue-500); width: 16px; height: 16px; }
.check:hover { border-color: var(--blue-500); }
.check input:checked + span { color: var(--white); font-weight: 600; }
.check--block {
  margin-top: 24px;
  background: rgba(255,255,255,.02);
  font-size: 13px;
  line-height: 1.5;
}

.review-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.review-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.review-card > p {
  color: var(--ink-dim);
  margin: 0 0 20px;
  font-size: 14px;
}
.review-list {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}
.review-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.review-row:first-child { border-top: 0; }
.review-row strong {
  font-family: var(--f-mono);
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}
.review-row span { color: var(--white); }

.form-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-progress {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 12px;
}
.form-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: 999px;
  transition: width .4s var(--ease);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-mark {
  display: inline-flex;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(25,226,122,.12);
  border: 1px solid rgba(25,226,122,.4);
  color: #19E27A;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.form-success p { color: var(--ink-dim); }
.form-success a { color: var(--blue-300); }

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-300); }
.faq-toggle {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 300;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue-300);
  transition: transform .35s var(--ease), background .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}
.faq-item p {
  margin: 0;
  padding: 0 8px 28px 8px;
  color: var(--ink-dim);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
  animation: faqOpen .35s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ===== CTA Band ===== */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 50%, var(--blue-900) 100%);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.15) 0%, transparent 40%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin: 0 0 18px;
}
.cta-inner h2 em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.85;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 38px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 18px rgba(105,176,255,0.4));
}
.footer-brand p {
  color: var(--ink-dim);
  max-width: 380px;
  margin: 0 0 20px;
  font-size: 14px;
}
.footer-creds {
  display: flex;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.footer-creds span {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col li, .footer-col a {
  color: var(--ink-dim);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--blue-300); }

.footer-mega {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(60px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(1,107,255,0.18) 0%, rgba(1,107,255,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 30px 0 -20px;
  text-align: center;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; grid-column: 3; justify-self: end; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .creds-block:nth-child(3) { border-left: 0; padding-left: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card--lg { min-height: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-rail { display: none; }
  .check-row { grid-template-columns: 1fr 1fr; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .process-num { margin-bottom: 40px; }
  .industry-row { grid-template-columns: 50px 1fr auto; gap: 16px; }
  .industry-row .ind-desc { grid-column: 2 / -1; grid-row: 2; }
  .metro-grid { grid-template-columns: repeat(3, 1fr); }
  .amazon-grid { grid-template-columns: 1fr; gap: 40px; }
  .amazon-image { aspect-ratio: 16 / 9; max-height: 480px; }
}
@media (max-width: 640px) {
  .container, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 40px 0 0; }
  .hero-inner { padding: 60px 20px 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: 1fr; }
  .industry-row { grid-template-columns: auto 1fr; }
  .industry-row .ind-num { font-size: 11px; }
  .industry-row .ind-desc { grid-column: 1 / -1; }
  .industry-row .ind-tag { display: none; }
  .metro-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-shell { padding: 24px; border-radius: 18px; }
  .form-row.two { grid-template-columns: 1fr; }
  .check-row { grid-template-columns: 1fr; }
  .form-controls {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  .form-controls .btn {
    width: 100%;
    justify-content: center;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  #prevBtn { padding-left: 14px; padding-right: 14px; }
  .form-progress { grid-column: 1 / -1; order: -1; margin: 0 0 8px; }
  .review-row { grid-template-columns: 1fr; gap: 4px; }
  .creds-grid { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
}


/* =========================
   LIGHT THEME SECTIONS
   ========================= */
.theme-light {
  /* Token overrides — keep brand blue, flip everything else */
  --ink: #0A1230;
  --ink-dim: #4A5680;
  --ink-mute: #8593B2;
  --line: rgba(10, 18, 48, 0.10);
  --line-strong: rgba(10, 18, 48, 0.18);
  --surface: #FFFFFF;
  --surface-elev: #F8FAFE;

  background:
    radial-gradient(ellipse at top right, rgba(1,107,255,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(1,107,255,0.04) 0%, transparent 50%),
    #F4F6FB;
  color: var(--ink);
  isolation: isolate;
}

/* subtle grid pattern on light sections so they don't feel flat */
.theme-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,18,48,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,18,48,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.theme-light > .container { position: relative; z-index: 1; }

/* clean knife-edge transitions between themes */
.theme-light + .section,
.section + .theme-light {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---- Headings & copy ---- */
.theme-light .section-title { color: var(--ink); }
.theme-light .section-title em {
  color: var(--blue-500);
  font-weight: 900;
}
.theme-light .section-sub { color: var(--ink-dim); }
.theme-light .kicker { color: var(--blue-500); }
.theme-light .kicker span { background: var(--blue-500); }

/* ---- SERVICES on light ---- */
.theme-light .service-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(10,18,48,0.04), 0 24px 48px -32px rgba(10,18,48,0.18);
}
.theme-light .service-card::before {
  background: radial-gradient(circle at 100% 0%, rgba(1,107,255,0.10) 0%, transparent 55%);
}
.theme-light .service-card:hover {
  border-color: rgba(1,107,255,0.45);
  box-shadow: 0 1px 0 rgba(10,18,48,0.04), 0 28px 56px -28px rgba(1,107,255,0.32);
}
.theme-light .service-card h3 { color: var(--ink); }
.theme-light .service-card p { color: var(--ink-dim); }
.theme-light .service-num { color: var(--ink-mute); }
.theme-light .service-icon { color: var(--blue-500); }
.theme-light .tag-row li {
  color: var(--ink-dim);
  border-color: var(--line-strong);
  background: rgba(10,18,48,0.02);
}

/* The brand-accent card stays bold inside light sections */
.theme-light .service-card--accent {
  background: linear-gradient(145deg, var(--blue-500) 0%, var(--blue-700) 100%);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 24px 60px -24px rgba(1,107,255,0.55);
}
.theme-light .service-card--accent h3,
.theme-light .service-card--accent p { color: #fff; }
.theme-light .service-card--accent .service-num { color: rgba(255,255,255,0.7); }
.theme-light .service-card--accent .service-icon { color: #fff; }
.theme-light .service-card--accent .tag-row li {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

/* ---- INDUSTRIES on light ---- */
.theme-light .industry-list { border-top-color: var(--line-strong); }
.theme-light .industry-row {
  border-bottom-color: var(--line-strong);
}
.theme-light .industry-row:hover {
  background: linear-gradient(90deg, rgba(1,107,255,0.06), rgba(1,107,255,0));
}
.theme-light .ind-num { color: var(--blue-500); }
.theme-light .ind-name { color: var(--ink); }
.theme-light .ind-desc { color: var(--ink-dim); }
.theme-light .ind-tag {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}

/* ---- WHY GRID on light ---- */
.theme-light .why-grid {
  border-top-color: var(--line-strong);
  border-left-color: var(--line-strong);
}
.theme-light .why-item {
  border-right-color: var(--line-strong);
  border-bottom-color: var(--line-strong);
  background: var(--surface);
}
.theme-light .why-item:hover {
  background: rgba(1,107,255,0.04);
}
.theme-light .why-item h3 { color: var(--ink); }
.theme-light .why-item p { color: var(--ink-dim); }

/* ---- DRIVER FORM on light ---- */
.theme-light.drive {
  /* override the dark-only gradient that was on .drive */
  background:
    radial-gradient(ellipse at top right, rgba(1,107,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(1,107,255,0.04) 0%, transparent 50%),
    #F4F6FB;
}
.theme-light .form-shell {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -40px rgba(10,18,48,0.20);
}
.theme-light .form-shell::before {
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  opacity: 0.6;
}
.theme-light .step-item {
  background: var(--surface);
  color: var(--ink-mute);
  border-color: var(--line-strong);
}
.theme-light .step-item span {
  background: rgba(10,18,48,0.05);
  color: var(--ink-mute);
}
.theme-light .step-item.active {
  background: rgba(1,107,255,0.08);
  color: var(--ink);
  border-color: var(--blue-500);
}
.theme-light .step-item.active span {
  background: var(--blue-500);
  color: #fff;
}
.theme-light .step-item.done { color: var(--ink); }
.theme-light .step-item.done span { background: rgba(1,107,255,0.5); color: #fff; }

.theme-light .field > span,
.theme-light .field-label {
  color: var(--ink-mute);
}
.theme-light .field input,
.theme-light .field select {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
}
.theme-light .field input::placeholder { color: var(--ink-mute); }
.theme-light .field input:focus,
.theme-light .field select:focus {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(1,107,255,0.10);
}
.theme-light .field select {
  background-color: var(--surface);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238593B2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.theme-light .field select:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.theme-light .check {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
}
.theme-light .check:hover { border-color: var(--blue-500); }
.theme-light .check input:checked + span { color: var(--ink); font-weight: 600; }
.theme-light .check:has(input:checked) {
  border-color: var(--blue-500);
  background: rgba(1,107,255,0.06);
}

.theme-light .review-card {
  background: var(--surface);
  border-color: var(--line-strong);
}
.theme-light .review-card h3 { color: var(--ink); }
.theme-light .review-card > p { color: var(--ink-dim); }
.theme-light .review-row { border-top-color: var(--line); }
.theme-light .review-row strong { color: var(--ink-mute); }
.theme-light .review-row span { color: var(--ink); }

.theme-light .form-controls { border-top-color: var(--line-strong); }
.theme-light .form-progress {
  background: rgba(10,18,48,0.06);
}

.theme-light .form-success h3 { color: var(--ink); }
.theme-light .form-success p { color: var(--ink-dim); }

/* Buttons inside light sections */
.theme-light .btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
}
.theme-light .btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(10,18,48,0.04);
}


/* =========================
   TYPOGRAPHY — SOLID BOLD PASS
   Big Shoulders Display (heavy condensed) + Instrument Serif (italic accents)
   ========================= */

/* Hero title — billboard scale */
.hero-title {
  font-family: var(--f-mega);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  /* keep the gradient highlight */
}

/* Section titles */
.section-title {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.section-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* CTA band */
.cta-inner h2 {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.cta-inner h2 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

/* Marquee — bigger, bolder */
.marquee-track {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Hero stats */
.stat-num {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(44px, 5.6vw, 64px);
  letter-spacing: -0.02em;
}

/* Creds */
.creds-value {
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Service cards */
.service-card h3 {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Process */
.process-step h3 {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Industries */
.ind-name {
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Why grid */
.why-item h3 {
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Testimonial typography handled in main testimonials block above */

/* Driver form */
.review-card h3 {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.form-success h3 {
  font-family: var(--f-mega);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* FAQ summaries */
.faq-item summary {
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Footer */
.footer-col h4 {
  font-family: var(--f-mega);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-mega {
  font-family: var(--f-mega);
  font-weight: 900;
  font-size: clamp(80px, 22vw, 290px);
  letter-spacing: -0.04em;
  line-height: 1.1 !important;
  text-transform: uppercase;
  color: var(--blue-500);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--blue-500);
  -webkit-text-stroke: 0;
}

/* Body weight nudge — Inter feels best at 400 with slightly tighter letter-spacing */
body { letter-spacing: -0.005em; }

/* Buttons feel more punchy with semi-condensed display */
.btn {
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-size: 13px;
}
.btn-lg { font-size: 14px; }

/* Hero eyebrow + kicker keep mono — already correct */


/* =========================
   NO-ITALIC EM STYLING
   Use a lighter Big Shoulders weight as the visual contrast for em accents,
   instead of an italic typeface.
   ========================= */
.hero-title em,
.section-title em,
.cta-inner h2 em {
  font-family: var(--f-mega);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Hero em — solid brand blue */
.hero-title em {
  color: var(--blue-500);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--blue-500);
}

/* Section em — solid brand blue */
.section-title em {
  color: var(--blue-500);
}
.theme-light .section-title em {
  color: var(--blue-500);
}

/* CTA em — translucent white for tone-on-tone */
.cta-inner h2 em {
  color: rgba(255,255,255,0.7);
  opacity: 1;
}

/* Testimonials styled in main testimonials block above (no-italic, Inter body) */

/* ============================================================
   PREMIUM ELEVATION PASS
   Refined typography, surfaces, lighting & micro-interactions.
   Brand palette unchanged: #016BFF blue family on deep navy.
   ============================================================ */

:root {
  --blue-glow: rgba(1, 107, 255, 0.45);
}

/* ---- Global refinement ---- */
::selection { background: rgba(1,107,255,.4); color: #fff; }

html {
  scrollbar-width: thin;
  scrollbar-color: #1B2A55 var(--navy-950);
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
  background: #1B2A55;
  border-radius: 999px;
  border: 2px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-600); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Headings keep the original Big Shoulders treatment — no italics (em accents
   styled by the NO-ITALIC pass above). */

/* ---- NAV: lighter glass, scroll-aware ---- */
.nav {
  background: rgba(6, 11, 31, 0.52);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav-inner { transition: padding .4s var(--ease); }
.nav.is-scrolled {
  background: rgba(6, 11, 31, 0.86);
  box-shadow: 0 16px 48px -24px rgba(0,0,0,.7);
}
.nav.is-scrolled .nav-inner { padding-top: 11px; padding-bottom: 11px; }
.nav-logo img { filter: drop-shadow(0 0 12px rgba(105,176,255,0.22)); }
.nav-links { gap: 32px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.02em;
}
/* retire the pulsing CTA — premium is quiet confidence */
.nav-cta-btn { animation: none; }

/* ---- BUTTONS: glassier, calmer, finer ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #2E80FF 0%, var(--blue-500) 38%, var(--blue-600) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 10px 30px -12px var(--blue-glow);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.22) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 0 0 1px rgba(255,255,255,.1),
    0 18px 44px -14px rgba(1,107,255,.85);
}
.btn-ghost {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.03);
}

/* ---- HERO: cinematic vignette + refined stats ---- */
.hero-bg-overlay {
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 30%, rgba(6,11,31,.42) 100%),
    radial-gradient(ellipse at 22% 32%, rgba(1,107,255,0.2) 0%, transparent 52%),
    linear-gradient(180deg,
      rgba(6,11,31,0.66) 0%,
      rgba(6,11,31,0.74) 40%,
      rgba(6,11,31,0.9) 80%,
      var(--navy-950) 100%);
}
.hero-stats { gap: 0; border-top-color: rgba(255,255,255,0.1); }
.hero-stats .stat {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 24px;
  margin-right: 24px;
}
.hero-stats .stat:first-child { border-left: 0; padding-left: 0; }
.stat-num { font-weight: 800; gap: 2px; }
.stat-num .suffix { color: var(--blue-400); }
.stat-label { color: var(--ink-dim); margin-top: 10px; }

/* Marquee — thin precision ticker instead of a shout */
.hero-marquee {
  padding: 18px 0;
  background: rgba(6,11,31,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.marquee-track {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  gap: 48px;
}
.marquee-track .dot-sep { color: var(--blue-500); font-size: 6px; }

/* ---- Cursor-tracked spotlight on cards ---- */
.service-card::before,
.metro-card::before {
  background: radial-gradient(360px circle at var(--mx, 85%) var(--my, 10%), rgba(1,107,255,.16) 0%, transparent 65%);
}
.why-item {
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(1,107,255,.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.why-item:hover::before { opacity: 1; }

/* Finer card chrome */
.service-card,
.metro-card {
  border-color: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.service-card:hover,
.metro-card:hover {
  border-color: rgba(1,107,255,.5);
}
.tag-row li { background: rgba(255,255,255,.03); }

/* ---- Section rhythm: more air ---- */
.section { padding: 144px 0; }
.section-head { margin-bottom: 76px; }
.kicker { letter-spacing: 0.24em; }
.kicker span {
  width: 40px;
  background: linear-gradient(90deg, var(--blue-500), transparent);
}

/* ---- Creds strip ---- */
.creds { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%); }
.creds-value { font-weight: 800; }

/* ---- Amazon image: gallery treatment ---- */
.amazon-image {
  border-color: rgba(1,107,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 50px 120px -50px rgba(1,107,255,.35);
}

/* ---- FAQ ---- */
.faq-item summary { padding: 30px 8px; }
.faq-toggle {
  width: 42px; height: 42px;
  font-size: 22px;
  border-color: rgba(255,255,255,0.14);
}

/* ---- CTA band: hairlines + depth ---- */
.cta-band {
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(255,255,255,.12) 0%, transparent 50%),
    linear-gradient(135deg, #1F7BFF 0%, var(--blue-600) 45%, #06337C 100%);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* ---- FOOTER: outlined wordmark ---- */
.footer-mega {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(1,107,255,0.34);
  background: none;
  transition: -webkit-text-stroke-color .5s var(--ease);
}
.footer-mega:hover { -webkit-text-stroke-color: rgba(1,107,255,0.6); }
.footer { padding-top: 96px; }
.footer-logo { filter: drop-shadow(0 0 12px rgba(105,176,255,0.22)); }

/* ---- LIGHT SECTIONS: cleaner paper ---- */
.theme-light {
  background:
    radial-gradient(ellipse at top right, rgba(1,107,255,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(1,107,255,0.03) 0%, transparent 50%),
    #F6F8FC;
}
.theme-light::before {
  background-image:
    linear-gradient(to right, rgba(10,18,48,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,18,48,0.03) 1px, transparent 1px);
}
.theme-light ::selection { background: rgba(1,107,255,.22); color: var(--navy-950); }
.theme-light .service-card {
  box-shadow:
    0 1px 2px rgba(10,18,48,0.04),
    0 32px 64px -44px rgba(10,18,48,0.3);
}
.theme-light .service-card::before {
  background: radial-gradient(360px circle at var(--mx, 85%) var(--my, 10%), rgba(1,107,255,.08) 0%, transparent 65%);
}
.theme-light .service-card--accent {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 32px 72px -32px rgba(1,107,255,.6);
}
.theme-light .why-item::before {
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(1,107,255,.06) 0%, transparent 65%);
}
.theme-light .form-shell {
  box-shadow:
    0 1px 2px rgba(10,18,48,0.04),
    0 44px 96px -48px rgba(10,18,48,0.28);
}

/* ---- Responsive guards (premium pass overrides above) ---- */
@media (max-width: 1024px) {
  .hero-stats { gap: 32px 16px; }
  .hero-stats .stat { border-left: 0; padding-left: 0; margin-right: 0; }
}
@media (max-width: 640px) {
  .section { padding: 88px 0; }
  .section-head { margin-bottom: 52px; }
}

/* ============================================================
   PREMIUM PASS II — CINEMATIC LAYER
   Intro curtain, smooth-scroll, statement band, custom cursor,
   gradient ring cards. Brand palette unchanged.
   ============================================================ */

/* ---- Intro curtain (pure CSS — exits even without JS) ---- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  animation: introOut .8s var(--ease) 1.15s forwards;
  pointer-events: none;
}
.intro img {
  height: 52px;
  width: auto;
  opacity: 0;
  animation: introLogo .9s var(--ease) .12s forwards;
  filter: drop-shadow(0 0 24px rgba(105,176,255,0.35));
}
.intro-line {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.intro-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: translateX(-100%);
  animation: introLine .95s var(--ease) .2s forwards;
}
@keyframes introLogo {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@keyframes introLine {
  to { transform: translateX(0); }
}
@keyframes introOut {
  to { transform: translateY(-100%); visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* ---- Lenis smooth scroll ---- */
html.lenis { height: auto; scroll-behavior: auto !important; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ---- Custom cursor (added by JS on fine pointers only) ---- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 1000;
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease);
  opacity: 0;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-active { width: 44px; height: 44px; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none; }
}

/* ---- Gradient ring on card hover ---- */
.service-card::after,
.metro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(105,176,255,.6) 0%, rgba(1,107,255,.18) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.service-card:hover::after,
.metro-card:hover::after { opacity: 1; }

/* ---- Statement band ---- */
.statement {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.statement-bg {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
}
.statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(.92) contrast(1.1) brightness(.92);
  will-change: transform;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(110% 100% at 50% 50%, transparent 30%, rgba(6,11,31,.55) 100%),
    linear-gradient(180deg, var(--navy-950) 0%, rgba(6,11,31,.62) 18%, rgba(6,11,31,.58) 82%, var(--navy-950) 100%);
}
.statement-inner { text-align: center; }
.statement-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 30px;
}
.statement-kicker::before,
.statement-kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,176,255,.6));
}
.statement-kicker::after {
  background: linear-gradient(90deg, rgba(105,176,255,.6), transparent);
}
.statement-title {
  font-size: clamp(52px, 9vw, 138px);
  line-height: 0.92;
  margin: 0;
  text-shadow: 0 4px 40px rgba(6,11,31,.6);
}
.statement-meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(6,11,31,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}
.statement-meta .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 8px var(--blue-500);
}
@media (max-width: 640px) {
  .statement { padding: 120px 0; }
  .statement-title { font-size: clamp(40px, 12vw, 64px); }
  .statement-meta { gap: 12px; padding: 10px 18px; font-size: 9px; }
}

/* Magnetic buttons */
.btn-primary, .btn-white { will-change: transform; }

/* ---- Motion restraint ---- */
@media (prefers-reduced-motion: reduce) {
  .pill-dot { animation: none; }
  .marquee-track { animation-duration: 80s; }
}


/* ============================================================
   MOBILE NAV — final overrides (placed last to win the cascade)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    background: rgba(6, 11, 31, 0.98);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-bottom: 1px solid var(--line);
    padding: 0 28px;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform .35s var(--ease),
      opacity .3s var(--ease),
      visibility 0s linear .35s,
      padding .35s var(--ease);
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 18px 28px 28px;
    transition:
      transform .4s var(--ease),
      opacity .3s var(--ease),
      visibility 0s linear 0s,
      padding .4s var(--ease);
  }
  .nav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.01em;
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links a::after { display: none; }

  .nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .nav-mobile-ctas .btn,
  .nav-mobile-ctas .pill {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
  }
  .nav-mobile-ctas .pill { color: var(--ink); }

  body.nav-open { overflow: hidden; }
}

@media (min-width: 1025px) {
  .nav-mobile-ctas { display: none !important; }
}


/* ============================================================
   FIX — make [hidden] beat display rules on .btn / form steps.
   Without this, the Submit button stays visible because
   `.btn { display: inline-flex }` overrides the UA `[hidden]` rule.
   ============================================================ */
[hidden] { display: none !important; }

/* Driver-application inline error */
.form-error {
  margin: 14px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 94, 122, 0.35);
  background: rgba(255, 94, 122, 0.08);
  color: #ff8a9b;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.theme-light .form-error {
  background: rgba(255, 94, 122, 0.10);
  color: #c11a3a;
  border-color: rgba(255, 94, 122, 0.45);
}


/* Inline anchor used inside .section-sub copy */
.section-sub .inline-link,
.inline-link {
  color: var(--blue-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 176, 255, 0.4);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.inline-link:hover {
  color: #fff;
  border-bottom-color: var(--blue-300);
}
.theme-light .inline-link {
  color: var(--blue-500);
  border-bottom-color: rgba(1, 107, 255, 0.35);
}
.theme-light .inline-link:hover {
  color: var(--blue-600);
  border-bottom-color: var(--blue-500);
}


/* ============================================================
   PARTNERS — light, premium logo carousel
   ============================================================ */
.partners {
  position: relative;
  padding: 64px 0 72px;
  background: #FFFFFF;
  border-top: 1px solid rgba(10, 18, 48, 0.08);
  border-bottom: 1px solid rgba(10, 18, 48, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.partners::before,
.partners::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1,107,255,0.35), transparent);
  z-index: 1;
}
.partners::before { top: 0; }
.partners::after  { bottom: 0; }

.partners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.partners-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 18, 48, 0.55);
}
.partners-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 10px rgba(1,107,255,0.55);
}

.partners-marquee {
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: partnersScroll 22s linear infinite;
  will-change: transform;
}
.partners:hover .partners-track,
.partners:focus-within .partners-track {
  animation-play-state: paused;
}

/* Each logo lives in a uniform "slot" so wordmarks (FedEx / Amazon /
   J.B. Hunt) and the vertical UPS shield read as the same visual weight. */
.partner {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 96px;
  cursor: default;
}
.partner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.15);
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.partner:hover img,
.partner:focus-visible img {
  filter: saturate(1.25);
  transform: scale(1.05);
}

/* UPS shield is square-ish; let it size by height so it reads big enough.
   Wordmarks size by width inside the slot. */
.partner img[src*="ups"]    { max-height: 88px; max-width: 100px; }
.partner img[src*="jbhunt"] { max-width: 200px; }
.partner img[src*="fedex"]  { max-width: 200px; }
.partner img[src*="amazon"] { max-width: 200px; }

@keyframes partnersScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 820px) {
  .partners { padding: 52px 0 56px; }
  .partners-track { gap: 48px; animation-duration: 18s; }
  .partner { width: 160px; height: 72px; }
  .partner img[src*="ups"] { max-height: 64px; max-width: 76px; }
  .partner img[src*="jbhunt"],
  .partner img[src*="fedex"],
  .partner img[src*="amazon"] { max-width: 150px; }
}

@media (max-width: 480px) {
  .partner { width: 130px; height: 64px; }
  .partner img[src*="ups"] { max-height: 56px; max-width: 64px; }
  .partner img[src*="jbhunt"],
  .partner img[src*="fedex"],
  .partner img[src*="amazon"] { max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}



/* Footer legal links (privacy, etc.) */
.footer-legal {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--ink-mute);
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: var(--blue-300); }
