/* ============================================================
   Turan Cargo, LLC — one-page site
   Brand: black / white / red (#d0242a)
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #101014;
  --surface:   #141419;
  --surface-2: #1b1b22;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  --red:       #d0242a;
  --red-bri:   #ff3b41;
  --red-deep:  #9c1418;

  --white:     #ffffff;
  --text:      #eef0f4;
  --muted:     #9a9ba4;
  --muted-2:   #6d6e78;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1200px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:    0 30px 60px -20px rgba(0, 0, 0, 0.7);
  --glow:      0 10px 40px -8px rgba(208, 36, 42, 0.55);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--red); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

h1, h2, h3 { line-height: 1.05; letter-spacing: -0.01em; }

.accent { color: var(--red-bri); }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-bri));
  z-index: 200;
  box-shadow: 0 0 12px rgba(208, 36, 42, 0.7);
  transition: width 0.08s linear;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --pad: 15px 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad);
  border: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  background: transparent;
  isolation: isolate;
  transition: color 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.btn--sm { --pad: 11px 22px; font-size: 0.75rem; }
.btn--block { width: 100%; --pad: 17px 26px; font-size: 0.88rem; }

/* --- primary: animated corner brackets that close into a full rectangle on hover --- */
.btn--primary { color: #fff; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border: 2px solid var(--red-bri);
  -webkit-mask:
    linear-gradient(#000 0 0) top left, linear-gradient(#000 0 0) top right,
    linear-gradient(#000 0 0) bottom left, linear-gradient(#000 0 0) bottom right;
          mask:
    linear-gradient(#000 0 0) top left, linear-gradient(#000 0 0) top right,
    linear-gradient(#000 0 0) bottom left, linear-gradient(#000 0 0) bottom right;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 13px 13px; mask-size: 13px 13px;
  transition: -webkit-mask-size 0.42s var(--ease), mask-size 0.42s var(--ease);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--red); opacity: 0;
  transition: opacity 0.42s var(--ease);
}
.btn--primary:hover::before { -webkit-mask-size: 51% 51%; mask-size: 51% 51%; }
.btn--primary:hover::after { opacity: 0.12; }
.btn--primary:hover { box-shadow: 0 10px 34px -10px rgba(208, 36, 42, 0.65); }

/* --- ghost: sharp outline that brightens on hover --- */
.btn--ghost {
  color: var(--text);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { color: #fff; border-color: var(--white); background: rgba(255, 255, 255, 0.07); }

/* --- keyboard focus visibility (accessibility) --- */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red-bri);
  outline-offset: 3px;
}
.btn--primary:focus-visible::before { -webkit-mask-size: 51% 51%; mask-size: 51% 51%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 36px; width: auto; display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45)); }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links a:not(.btn) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.28s var(--ease);
}
.nav__links a:not(.btn):hover,
.nav__links a.is-active { color: var(--white); }
.nav__links a.is-active::after,
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__apply { margin-left: 6px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;          /* content to the top; HUD bar clears it at the bottom */
  min-height: max(100svh, 820px);
  padding: 116px 0 118px;           /* bottom room reserved for the ops HUD bar */
  overflow: hidden;
  background:
    radial-gradient(1300px 760px at 50% -12%, rgba(208,36,42,0.14), transparent 62%),
    linear-gradient(180deg, #08080a, #0c0c10);
}
/* ---- live fleet map background ---- */
.hero__map {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: radial-gradient(140% 120% at 50% 10%, #17111a 0%, #120d10 46%, #08080a 100%);
}
#fleetMap { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__gridlines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(150,92,98,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,92,98,0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
          mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
}
.hero__vignette { position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 260px 60px rgba(4,4,6,0.8); }

/* map geometry (SVG) */
.state { fill: #181218; stroke: #4a3236; stroke-width: 1.1; }
.state-glow { fill: none; stroke: rgba(208,36,42,0.18); stroke-width: 5; opacity: .6; }
.hub-ring { fill: none; stroke: rgba(208,36,42,0.5); stroke-width: 1; opacity: .55; }
.hub-dot { fill: #ff5c62; }
.hub-label {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; fill: #eef0f4;
  font-size: 15px; letter-spacing: .02em; text-transform: uppercase; paint-order: stroke;
  stroke: #0a0a0c; stroke-width: 3px; stroke-linejoin: round;
}
.trail { fill: none; stroke-linecap: round; }
.tid {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 9px;
  paint-order: stroke; stroke: #0a0a0c; stroke-width: 2.4px; stroke-linejoin: round;
}

.hero__scrim { /* legibility layer over the full-bleed map */
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.82) 0%, rgba(8,8,10,0.34) 26%,
                    rgba(8,8,10,0.06) 50%, rgba(8,8,10,0.34) 74%, rgba(8,8,10,0.6) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.5) 0%, transparent 22%,
                    transparent 48%, rgba(8,8,10,0.86) 100%);
}
.hero__grid {
  position: relative; z-index: 3;
  display: grid;
  /* copy hugs the left, form hugs the right, the map breathes in the middle */
  grid-template-columns: minmax(0, 560px) minmax(56px, 1fr) minmax(0, 448px);
  gap: clamp(18px, 2.4vw, 40px);
  align-items: center;
  width: 100%;
  max-width: 1840px;
  margin-inline: auto;
  padding-inline: clamp(24px, 3.5vw, 60px);
}
.hero__copy { grid-column: 1; max-width: 560px; }
.hero__form { grid-column: 3; display: flex; justify-content: flex-end; }
.hero__eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 24px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px;
  border: 1px solid rgba(208,36,42,0.42); border-radius: 999px; background: rgba(208,36,42,0.09);
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-bri);
}
.beat { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bri);
  animation: beat 1.8s ease-out infinite; }
@keyframes beat {
  0% { box-shadow: 0 0 0 0 rgba(255,59,65,.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,59,65,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,65,0); }
}
.eyebrow-tag {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ---- live operations HUD (bottom telemetry bar) ---- */
.hud {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 0 clamp(20px, 5vw, 48px) clamp(18px, 2.4vw, 30px);
  pointer-events: none;
}
.bp {
  position: relative; border: 1px solid rgba(208,36,42,0.3);
  background: linear-gradient(180deg, rgba(20,20,25,.8), rgba(12,12,15,.9));
  backdrop-filter: blur(5px);
}
.bp > i { position: absolute; width: 11px; height: 11px; color: var(--red-bri); opacity: .8; }
.bp > i::before, .bp > i::after { content: ""; position: absolute; background: currentColor; }
.bp > i::before { left: 5px; top: 0; width: 1px; height: 100%; }
.bp > i::after { top: 5px; left: 0; width: 100%; height: 1px; }
.bp > i.tl { top: -6px; left: -6px } .bp > i.tr { top: -6px; right: -6px }
.bp > i.bl { bottom: -6px; left: -6px } .bp > i.br { bottom: -6px; right: -6px }

.hud__bar {
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: clamp(16px, 2.4vw, 38px);
  padding: 11px clamp(16px, 2vw, 24px);
}
.hud__seg { display: flex; align-items: center; }
.hud__live {
  gap: 9px; font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red-bri); font-size: 13px; white-space: nowrap;
}
.hud__live .bp__n { color: var(--white); margin-left: 4px; font-weight: 700; }
.hud__metrics { gap: clamp(14px, 1.8vw, 26px); }
.hud__metrics .m { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.hud__metrics .m i {
  font-family: "Barlow", sans-serif; font-style: normal; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted-2);
}
.hud__metrics .m b {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 20px;
  color: var(--white); font-variant-numeric: tabular-nums;
}
.hud__metrics .m b small { font-size: 11px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.hud__leg { gap: clamp(12px, 1.4vw, 18px); font-family: "Barlow", sans-serif; font-size: 12px; color: var(--muted); }
.hud__leg .lg { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.hud__leg .lg b { color: var(--white); font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-variant-numeric: tabular-nums; }
.sw { width: 10px; height: 10px; flex: none; position: relative; }
.sw::after { content: ""; position: absolute; inset: -3px; border: 1px solid currentColor; opacity: .35; border-radius: 50%; }
.sw--en { background: #e6ebf1; color: #e6ebf1; }
.sw--id { background: #e0a23a; color: #e0a23a; }
.sw--de { background: var(--red-bri); color: var(--red-bri); }
.hud__feedseg {
  margin-left: auto; gap: 9px; font-family: "Barlow", sans-serif; font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden;
}
.hud__feedseg .clk { font-family: "Barlow Condensed", sans-serif; font-weight: 600; color: var(--red-bri); letter-spacing: .06em; }
.hud__feedseg .sep { color: var(--muted-2); }
.hud__feedseg .feedline { color: var(--muted); text-overflow: ellipsis; overflow: hidden; max-width: 230px; transition: color .4s var(--ease); }
.hero__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  letter-spacing: 0.005em;
  margin-bottom: 22px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.55);
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 52px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--white); line-height: 1;
}
.hero__stats span { font-size: 0.82rem; color: var(--muted-2); letter-spacing: 0.03em; margin-top: 4px; }

/* ---- apply form card ---- */
.applycard {
  width: 100%; max-width: 448px;
  /* frosted glass so the live map reads through the card */
  background: linear-gradient(180deg, rgba(18,18,23,0.52), rgba(11,11,15,0.66));
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 2px;                 /* rectangular, matching the buttons */
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(208,36,42,0.06);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.applycard:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.24);
  box-shadow: var(--shadow), 0 18px 44px -18px rgba(208,36,42,0.45);
}
.applycard::before { /* red top accent */
  content: "";
  position: absolute; top: -1px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 3px;
}
.applycard__head { margin-bottom: 22px; }
.applycard__head h2 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 1.9rem; letter-spacing: 0.02em; margin-bottom: 8px;
}
.applycard__head p { font-size: 0.92rem; color: var(--muted); }

.applyform { display: flex; flex-direction: column; gap: 15px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.field label .opt { color: var(--muted-2); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.field textarea { resize: vertical; min-height: 52px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9ba4' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,36,42,0.22);
  background: #0e0e12;
}
.field.invalid input, .field.invalid select { border-color: var(--red-bri); box-shadow: 0 0 0 3px rgba(255,59,65,0.18); }

.applyform__fine { font-size: 0.72rem; color: var(--muted-2); text-align: center; margin-top: 2px; }
.applyform__fine a { color: var(--muted); text-decoration: underline; }

/* optional SMS consent checkbox (TCPA / carrier opt-in) */
.checkbox { display: flex; gap: 11px; align-items: flex-start; cursor: pointer;
  font-size: 0.76rem; line-height: 1.5; color: var(--muted-2); }
.checkbox input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex: none; margin-top: 1px;
  border: 1px solid var(--line-2); border-radius: 5px; background: var(--bg);
  cursor: pointer; position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.checkbox input[type="checkbox"]:checked { background: var(--red); border-color: var(--red); }
.checkbox input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 4px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.checkbox a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.checkbox a:hover { color: var(--red-bri); }

.applyform__status { border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.9rem; font-weight: 500; }
.applyform__status.ok  { background: rgba(38,160,90,0.12); border: 1px solid rgba(38,160,90,0.4); color: #7ee6a8; }
.applyform__status.err { background: rgba(208,36,42,0.1); border: 1px solid rgba(208,36,42,0.4); color: #ff9195; }

/* form success collapse (works for the apply + quote forms) */
.ajax-form.is-sent > *:not(.applyform__status) { display: none; }
.ajax-form.is-sent .applyform__status { display: block; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 26px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: 1.1rem; letter-spacing: 0.08em; color: var(--muted);
}
.marquee__track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section__head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__kicker {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-bri); margin-bottom: 14px;
}
.section__title {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 16px;
}
.section__lead { font-size: clamp(1rem, 1.2vw, 1.12rem); color: var(--muted); max-width: 60ch; }

/* ---------- cards ---------- */
.cards { display: grid; gap: clamp(18px, 2vw, 24px); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card::before { /* hover glow */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(208,36,42,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(208,36,42,0.12); color: var(--red-bri);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }

.card__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red-bri);
  padding: 6px 12px; border: 1px solid rgba(208,36,42,0.35); border-radius: 999px;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }

.card__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.card__list li { position: relative; padding-left: 24px; font-size: 0.9rem; color: var(--text); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px rgba(208,36,42,0.7);
}
.card__link {
  font-weight: 700; font-size: 0.92rem; color: var(--white);
  display: inline-flex; gap: 6px;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.card__link:hover { color: var(--red-bri); gap: 12px; }

.card--driver { background: linear-gradient(180deg, var(--surface), var(--bg-2)); }

/* ============================================================
   AUDIENCE SECTIONS (Shippers / Brokers / Drivers / ...)
   ============================================================ */
.audience__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.audience--reverse .audience__inner { grid-template-columns: 1.15fr 0.85fr; }
.audience--reverse .audience__intro { order: 2; }

.audience__intro .section__title { margin-bottom: 18px; }
.audience__intro .section__lead { margin-bottom: 18px; }
.audience__note {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--red-bri); margin-bottom: 30px;
}

.audience__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.5vw, 20px);
}
.acard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 2.2vw, 28px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.acard__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,0.05); color: var(--muted);
  margin-bottom: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.acard__icon svg { width: 24px; height: 24px; }
.acard h3 { font-size: 1.12rem; margin-bottom: 7px; color: var(--text); transition: color 0.35s var(--ease); }
.acard p { font-size: 0.9rem; color: var(--muted); transition: color 0.35s var(--ease); }

/* greyish -> brand red on hover */
.acard:hover {
  transform: translateY(-5px);
  background: linear-gradient(165deg, rgba(208,36,42,0.20), rgba(208,36,42,0.05));
  border-color: var(--red);
  box-shadow: 0 22px 50px -22px rgba(208,36,42,0.6);
}
.acard:hover .acard__icon { background: var(--red); color: #fff; transform: scale(1.06); }
.acard:hover h3 { color: #fff; }
.acard:hover p { color: var(--text); }

.audience__cards .reveal:nth-child(2) { transition-delay: 0.06s; }
.audience__cards .reveal:nth-child(3) { transition-delay: 0.12s; }
.audience__cards .reveal:nth-child(4) { transition-delay: 0.18s; }

/* ============================================================
   STATS BAND
   ============================================================ */
.statband { border-block: 1px solid var(--line); background: var(--bg-2); padding: clamp(28px, 3.6vw, 42px) 0; }
.statband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(22px, 4vw, 48px); }
.statband__stats { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(22px, 4vw, 54px); }
.statband__stats li { display: flex; flex-direction: column; }
.statband__stats strong {
  font-family: "Anton", sans-serif; font-weight: 400; line-height: 1;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--white);
}
.statband__stats span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; margin-top: 5px; }
.statband__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.tbadge {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  padding: 8px 13px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255,255,255,0.02); white-space: nowrap;
}
.tbadge:nth-child(-n+2) { color: var(--red-bri); border-color: rgba(208,36,42,0.4); background: rgba(208,36,42,0.06); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); }
.tcard {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 2.6vw, 32px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tcard:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tcard__stars { color: var(--red-bri); letter-spacing: 3px; font-size: 0.95rem; }
.tcard blockquote { font-size: 1rem; line-height: 1.6; color: var(--text); font-style: italic; flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--red), var(--red-deep));
  color: #fff; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
}
.tcard figcaption strong { display: block; font-size: 0.98rem; color: var(--white); }
.tcard figcaption em { font-style: normal; font-size: 0.82rem; color: var(--muted-2); }

/* ============================================================
   REQUEST-A-QUOTE
   ============================================================ */
.quote__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.quote__intro .section__title { margin-bottom: 16px; }
.quote__intro .section__lead { margin-bottom: 22px; }
.quote__intro .section__lead a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.quote__points { display: flex; flex-direction: column; gap: 11px; }
.quote__points li { position: relative; padding-left: 26px; color: var(--text); font-size: 0.95rem; }
.quote__points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px rgba(208,36,42,0.7);
}
.quote__card {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 2px;                 /* rectangular, matching the buttons */
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.quote__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.24);
  box-shadow: var(--shadow), 0 18px 44px -18px rgba(208,36,42,0.45);
}
.quote__card .applyform__fine { text-align: left; }
.quote__dispatch {
  display: flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-bri);
}

/* "or call ..." line under the submit button */
.applyform__alt {
  text-align: center; font-size: 0.82rem; color: var(--muted);
  margin-top: 12px;
}
.applyform__alt a { color: var(--white); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(208,36,42,0.5); }
.applyform__alt a:hover { color: var(--red-bri); }
.quote__card .applyform__alt { text-align: left; }

/* drive CTA */
.drive__cta {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 3vw, 40px);
  background: linear-gradient(120deg, rgba(208,36,42,0.14), rgba(208,36,42,0.03));
  border: 1px solid rgba(208,36,42,0.3);
  border-radius: var(--radius);
}
.drive__cta p { font-family: "Anton", sans-serif; font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  text-transform: uppercase; letter-spacing: 0.01em; }
.drive__cta > div { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why__grid li { background: var(--bg); padding: clamp(22px, 2.5vw, 30px); display: flex; flex-direction: column; gap: 8px;
  transition: background 0.35s var(--ease); }
.why__grid li:hover { background: var(--surface); }
.why__grid strong { font-size: 1.12rem; }
.why__grid span { font-size: 0.9rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); }
.contact__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 3vw, 40px);
}
.contact__card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact__card > p { color: var(--muted); margin-bottom: 22px; font-size: 0.95rem; }
.contact__line {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.08rem; font-weight: 600; padding: 12px 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}
.contact__line:hover { color: var(--red-bri); }
.contact__ic { color: var(--red); font-size: 1.05rem; width: 22px; text-align: center; }
.contact__lbl { margin-left: auto; font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); }
.contact__card--red {
  background: linear-gradient(160deg, rgba(208,36,42,0.16), var(--surface));
  border-color: rgba(208,36,42,0.35);
}
.contact__apply { margin-top: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060608; border-top: 1px solid var(--line); padding: clamp(44px, 5vw, 64px) 0 22px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.25fr; gap: 40px;
  align-items: start; padding-bottom: clamp(30px, 4vw, 46px); }
.footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 340px; align-items: flex-start; }
.footer__logo { height: 44px; width: auto; display: block; }
.footer__tag { color: var(--muted); font-size: 0.92rem; }
.footer__reg { color: var(--muted); font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em; font-size: 0.98rem; margin-top: 2px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { font-family: "Barlow Condensed", sans-serif; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--red-bri); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 20px;
  color: var(--muted-2); font-size: 0.82rem; }
.footer__bottom-links a { color: var(--muted-2); transition: color 0.2s var(--ease); }
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; translate: 0 28px; transition: opacity 0.8s var(--ease), translate 0.8s var(--ease); will-change: opacity, translate; }
.reveal.in { opacity: 1; translate: none; }
/* stagger children within a grid */
.cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.why__grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.why__grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.why__grid .reveal:nth-child(4) { transition-delay: 0.18s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* progressively drop HUD segments so the bar always fits one row */
@media (max-width: 1180px) { .hud__feedseg { display: none; } }
@media (max-width: 1000px) { .hud__leg { display: none; } }

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 104px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__copy { max-width: none; grid-column: auto; }
  .hero__form { justify-content: center; grid-column: auto; }
  .hud { display: none; }
  .hero__scrim { background:
    linear-gradient(180deg, rgba(8,8,10,0.72) 0%, rgba(8,8,10,0.32) 30%,
                    rgba(8,8,10,0.55) 62%, rgba(8,8,10,0.88) 100%); }

  .cards--3 { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }

  .audience__inner,
  .audience--reverse .audience__inner { grid-template-columns: 1fr; gap: 34px; }
  .audience--reverse .audience__intro { order: 0; }

  .quote__inner { grid-template-columns: 1fr; gap: 34px; }
  .tcards { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .statband__inner { flex-direction: column; align-items: flex-start; }

  /* mobile nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(10,10,12,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px clamp(20px, 5vw, 48px) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 12px 0; font-size: 1.02rem; }
  .nav__apply { margin: 10px 0 0; }
}

@media (max-width: 620px) {
  .cards--2 { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .audience__cards { grid-template-columns: 1fr; }
  .statband__stats { grid-template-columns: 1fr 1fr; gap: 20px 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .field-row { grid-template-columns: 1fr; }
  .drive__cta { flex-direction: column; align-items: flex-start; }
  .brand__logo { height: 30px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transform: none; transition: none; }
  .marquee__track { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   LEGAL PAGES (privacy / terms / eeo)
   ============================================================ */
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.legal-nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.legal-back { color: var(--muted); font-size: 0.9rem; font-weight: 600; transition: color 0.2s var(--ease); }
.legal-back:hover { color: var(--red-bri); }

.legal { max-width: 820px; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 96px); }
.legal h1 {
  font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.01em; margin-bottom: 10px;
}
.legal-updated { color: var(--muted-2); font-size: 0.9rem; letter-spacing: 0.02em; margin-bottom: 10px; }
.legal-intro {
  color: var(--muted); font-size: 1.02rem; line-height: 1.7;
  padding-bottom: 26px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 1.35rem; color: var(--white); margin: 34px 0 12px;
}
.legal h2 .num { color: var(--red-bri); margin-right: 8px; }
.legal p, .legal li { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 2px; display: flex; flex-direction: column; gap: 8px; }
.legal ul li { position: relative; padding-left: 22px; }
.legal ul li::before {
  content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--red);
}
.legal a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--red-bri); }
.legal strong { color: var(--text); }
.legal-note {
  margin-top: 34px; padding: 18px 20px; border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); background: var(--surface);
  color: var(--muted); font-size: 0.9rem; line-height: 1.65;
}
.legal-address {
  line-height: 1.95; color: var(--muted);
  padding: 18px 20px; border: 1px solid var(--line); border-left: 3px solid var(--red);
  border-radius: var(--radius-sm); background: var(--surface); display: inline-block;
}
.legal-address strong { color: var(--white); }
