/* ============================================================
   VEXIS LOGISTICS — Design System v2
   Dark-first, layered ink palette, amber + signal accents
   ============================================================ */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Ink layers — depth via three background steps */
  --ink-900: #050b14;
  --ink-800: #071627;
  --ink-700: #0b2038;
  --ink-600: #12304f;

  /* Brand accent */
  --amber-400: #f5a755;
  --amber-500: #f0902f;
  --amber-600: #c96f18;

  /* Data / signal accent */
  --signal-400: #4cc9f0;
  --signal-500: #1fa7d4;

  /* Status */
  --ok: #3dd68c;

  /* Text — AA on ink backgrounds */
  --text-hi: #f4f7fa;
  --text-md: #b7c4d2;
  --text-lo: #8595a6;

  --line: rgba(183, 196, 210, 0.14);
  --max-w: 1160px;
  --radius: 10px;
  --radius-sm: 7px;

  --font-display: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0325rem;
  line-height: 1.65;
  color: var(--text-md);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-hi); }
.num, .stat .num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px;
  max-width: var(--max-w); margin: 0 auto;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo .vexis-mark { width: 34px; height: 34px; }
.logo .word {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.14rem; letter-spacing: 0.06em;
  color: var(--text-hi);
}
.logo .word small {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.56rem; letter-spacing: 0.24em; color: var(--text-lo);
  margin-top: 1px;
}

/* logo lane animation */
.vexis-mark .lane { transition: stroke-dashoffset 0.9s cubic-bezier(.22,.61,.36,1); }
a:hover .vexis-mark .lane { stroke-dashoffset: -44; }

nav.primary-nav ul { list-style: none; display: flex; gap: 26px; align-items: center; }
nav.primary-nav a {
  color: var(--text-md); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.15s ease;
}
nav.primary-nav a:hover { color: var(--text-hi); }
nav.primary-nav a[aria-current="page"] { color: var(--text-hi); }
nav.primary-nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--amber-500); border-radius: 2px;
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text-hi); font-size: 1.6rem; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.94rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber-500); color: var(--ink-900);
  box-shadow: 0 4px 18px rgba(240, 144, 47, 0.28);
}
.btn-primary:hover { background: var(--amber-400); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(183,196,210,0.25); color: var(--text-hi);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }

.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: clip;
  background: var(--ink-900);
  padding: 108px 24px 96px;
}

/* drifting corridor lights */
.hero::before {
  content: ""; position: absolute; inset: -30%; z-index: -2;
  background:
    radial-gradient(38% 44% at 22% 28%, rgba(240,144,47,0.16), transparent 65%),
    radial-gradient(42% 48% at 78% 66%, rgba(31,167,212,0.13), transparent 68%);
  filter: blur(20px);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

/* fine grid overlay */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(183,196,210,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,196,210,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 90% at 50% 10%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 90% at 50% 10%, #000 40%, transparent 100%);
}

.hero .container { display: grid; gap: 18px; max-width: 820px; }

.eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-400);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.04; font-weight: 800; letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--amber-500); }

.hero p.lead {
  color: var(--text-md); font-size: 1.16rem; max-width: 640px;
}

/* ---------- Capability chips ---------- */
.chip-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-800);
  padding: 0 24px;
}
.chip-band .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.chip {
  padding: 26px 18px; text-align: center;
  border-left: 1px solid var(--line);
}
.chip:first-child { border-left: none; }
.chip .big {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; color: var(--text-hi); letter-spacing: 0.01em;
}
.chip .big .sig { color: var(--signal-400); }
.chip .label {
  color: var(--text-lo); font-size: 0.8rem; margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ---------- Sections ---------- */
section { padding: 88px 24px; }
section.alt { background: var(--ink-800); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800; letter-spacing: -0.015em; margin-top: 10px;
}
.section-head p { color: var(--text-md); margin-top: 12px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 144, 47, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.card .icon {
  width: 46px; height: 46px;
  background: rgba(240, 144, 47, 0.12);
  border: 1px solid rgba(240, 144, 47, 0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-400);
  font-family: var(--font-display); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.card .icon.sig {
  background: rgba(76, 201, 240, 0.1);
  border-color: rgba(76, 201, 240, 0.25);
  color: var(--signal-400);
}

.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-md); font-size: 0.95rem; }
.card .more {
  display: inline-block; margin-top: 16px;
  color: var(--amber-400); font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
}
.card .more:hover { color: var(--amber-500); }

/* ---------- Split feature ---------- */
.feature-panel {
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0; color: var(--text-md); font-size: 0.97rem;
}
.check-list li::before {
  content: "✓";
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61, 214, 140, 0.14);
  color: var(--ok); font-size: 0.72rem; font-weight: 800;
  border: 1px solid rgba(61, 214, 140, 0.3);
}

/* ---------- Network map ---------- */
.map-panel {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}
.map-panel svg { width: 100%; height: auto; }

.route-line {
  fill: none; stroke: rgba(76, 201, 240, 0.4);
  stroke-width: 1.6; stroke-dasharray: 6 7;
  animation: flow 3.2s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -26; } }

.node { fill: var(--signal-400); }
.node-hub { fill: var(--amber-500); }
.pulse {
  fill: none; stroke: var(--amber-500); stroke-width: 1.4;
  transform-origin: center; transform-box: fill-box;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.map-label {
  font-family: var(--font-body); font-size: 11px;
  fill: var(--text-lo); letter-spacing: 0.02em;
}
.map-label.hub { fill: var(--text-hi); font-weight: 600; }

/* ---------- Route table ---------- */
.route-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.route-table th {
  text-align: left; padding: 13px 16px;
  color: var(--text-lo); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-bottom: 1px solid var(--line);
}
.route-table td {
  padding: 15px 16px; border-bottom: 1px solid var(--line);
  color: var(--text-md);
}
.route-table td:first-child { color: var(--text-hi); font-weight: 600; }
.route-table .num { color: var(--signal-400); font-weight: 600; }
.table-note { color: var(--text-lo); font-size: 0.82rem; margin-top: 14px; }

/* ---------- Steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--ink-700); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px 26px;
}
.step .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.6rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 144, 47, 0.55);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: clip;
  background: var(--ink-800);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center; padding: 84px 24px;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background: radial-gradient(40% 55% at 50% 55%, rgba(240,144,47,0.13), transparent 70%);
  filter: blur(14px);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--text-md); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: clip;
  background: var(--ink-900);
  border-bottom: 1px solid var(--line);
  padding: 76px 24px 64px;
}
.page-hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(45% 60% at 78% 20%, rgba(31,167,212,0.1), transparent 70%);
  filter: blur(16px);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.02em; margin-top: 10px;
}
.page-hero p { color: var(--text-md); margin-top: 12px; max-width: 620px; font-size: 1.05rem; }

/* ---------- Prose ---------- */
.prose h2 { font-size: 1.32rem; margin: 30px 0 12px; }
.prose p, .prose li { color: var(--text-md); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--signal-400); }

/* ---------- Info list ---------- */
.info-list { list-style: none; }
.info-list li {
  display: flex; gap: 16px; padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.info-list .label {
  color: var(--text-lo); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  min-width: 130px; padding-top: 3px;
}
.info-list .value { color: var(--text-hi); font-weight: 600; }
.info-list .value a { color: var(--signal-400); text-decoration: none; }
.info-list .value a:hover { text-decoration: underline; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-lo); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  background: var(--ink-900);
  border: 1px solid rgba(183,196,210,0.22);
  border-radius: var(--radius-sm);
  color: var(--text-hi); font-family: var(--font-body); font-size: 0.96rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-lo); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--signal-500);
  box-shadow: 0 0 0 3px rgba(31, 167, 212, 0.18);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238595a6' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-note { color: var(--text-lo); font-size: 0.85rem; margin-top: 14px; }
.form-note strong { color: var(--text-md); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  color: var(--text-md);
  padding: 60px 24px 30px; font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--text-hi); font-family: var(--font-body);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text-md); text-decoration: none; }
.footer-grid a:hover { color: var(--text-hi); }
.footer-brand p { color: var(--text-lo); margin-top: 14px; max-width: 300px; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: var(--text-lo);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .step-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .chip-band .container { grid-template-columns: 1fr 1fr; }
  .chip { border-left: none; border-top: 1px solid var(--line); }
  .chip:nth-child(-n+2) { border-top: none; }
  .chip:nth-child(even) { border-left: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .grid-3, .step-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  nav.primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-800);
    border-bottom: 1px solid var(--line);
    display: none; padding: 10px 24px 22px;
  }
  nav.primary-nav.open { display: block; }
  nav.primary-nav ul { flex-direction: column; gap: 2px; align-items: stretch; }
  nav.primary-nav li { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  section { padding: 64px 24px; }
  .hero { padding: 80px 24px 68px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .route-line, .pulse { animation: none; }
  .vexis-mark .lane { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   v2.1 — competitive visual touches
   ============================================================ */

/* ---------- Hero road scene (animated truck) ---------- */
.hero { padding-bottom: 150px; }
.road-scene {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 120px; pointer-events: none; overflow: hidden;
}
.road-scene .road-line {
  position: absolute; left: 0; right: 0; bottom: 34px; height: 3px;
  background: repeating-linear-gradient(90deg,
    rgba(240,144,47,0.55) 0 26px, transparent 26px 52px);
  animation: road-flow 0.9s linear infinite;
  opacity: 0.55;
}
.road-scene .road-base {
  position: absolute; left: 0; right: 0; bottom: 20px; height: 1px;
  background: rgba(183,196,210,0.25);
}
@keyframes road-flow { to { background-position: -52px 0; } }

.road-scene .truck {
  position: absolute; bottom: 22px; width: 250px; height: auto;
  animation: drive 17s linear infinite;
  will-change: transform;
}
@keyframes drive {
  from { transform: translateX(-280px); }
  to   { transform: translateX(calc(100vw + 60px)); }
}

/* ---------- City ticker ---------- */
.ticker-band {
  background: var(--ink-800);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 13px 0;
}
.ticker {
  display: flex; width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
.ticker span {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-lo); white-space: nowrap; padding: 0 18px;
}
.ticker span::after {
  content: "◆"; color: var(--amber-600); font-size: 0.55rem;
  margin-left: 36px; vertical-align: 2px;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-band:hover .ticker { animation-play-state: paused; }

/* ---------- Count-up stats band ---------- */
.stat-band { text-align: center; }
.stat-band .grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  color: var(--text-hi); letter-spacing: -0.01em;
}
.stat-item .num .unit { color: var(--amber-500); font-size: 0.55em; font-weight: 700; margin-left: 2px; }
.stat-item .cap { color: var(--text-lo); font-size: 0.86rem; margin-top: 4px; letter-spacing: 0.03em; }

/* ---------- Cargo chips (what we move) ---------- */
.cargo-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.cargo-chips .chip-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  background: var(--ink-700); border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-md); font-size: 0.92rem; font-weight: 500;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cargo-chips .chip-pill:hover { border-color: rgba(240,144,47,0.4); transform: translateY(-2px); }
.cargo-chips .chip-pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber-500); flex-shrink: 0;
}

/* ---------- Compliance badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  background: rgba(61, 214, 140, 0.07);
  border: 1px solid rgba(61, 214, 140, 0.22);
  border-radius: var(--radius-sm);
  color: var(--text-md); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.badge::before {
  content: "✓"; color: var(--ok); font-size: 0.72rem; font-weight: 800;
}

/* ---------- Trailer mini profiles (fleet cards) ---------- */
.trailer-mini { margin-bottom: 16px; }
.trailer-mini svg { width: 100%; height: auto; opacity: 0.9; }

/* ---------- Route table hover ---------- */
.route-table tbody tr { transition: background 0.14s ease; }
.route-table tbody tr:hover { background: rgba(76, 201, 240, 0.05); }
.route-table tbody tr:hover td:first-child { color: var(--amber-400); }

/* ---------- Responsive / motion ---------- */
@media (max-width: 860px) {
  .stat-band .grid-4 { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
}
@media (max-width: 640px) {
  .road-scene .truck { width: 190px; }
}
@media (prefers-reduced-motion: reduce) {
  .road-scene .truck, .road-scene .road-line, .ticker { animation: none; }
  .road-scene .truck { transform: translateX(12vw); }
}

/* ---------- v2.2: X-crossing wordmark ---------- */
.logo .vexis-word { height: 46px; width: auto; display: block; }
.vexis-word .lane { transition: stroke-dashoffset 0.9s cubic-bezier(.22,.61,.36,1); }
a:hover .vexis-word .lane { stroke-dashoffset: -44; }
footer .logo .vexis-word { height: 52px; }
@media (max-width: 760px) { .logo .vexis-word { height: 40px; } }
@media (prefers-reduced-motion: reduce) { .vexis-word .lane { transition: none; } }

/* ---------- v2.3: brand X watermark + footer mark ---------- */
.page-hero::after, .cta-band::after {
  content: ""; position: absolute; z-index: -1;
  right: -70px; top: 50%;
  width: 360px; height: 360px;
  transform: translateY(-50%) rotate(8deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 6 L54 58' stroke='%23f0902f' stroke-width='9' stroke-linecap='round' fill='none'/%3E%3Cpath d='M54 6 L10 58' stroke='%23eaf2fb' stroke-width='9' stroke-linecap='round' fill='none' stroke-dasharray='12 9'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.055;
  pointer-events: none;
}
.footer-bottom .mini-x { flex-shrink: 0; }
.footer-bottom span { display: inline-flex; align-items: center; gap: 9px; }
@media (max-width: 760px) {
  .page-hero::after, .cta-band::after { width: 240px; height: 240px; right: -60px; }
}
