/* Pickup RoadChik — dispatch / highway theme */
:root {
  --orange: #e8622a;
  --orange-dk: #c44d1a;
  --gold: #f4a020;
  --blue: #4a9eff;
  --teal: #2ecc9a;
  --navy: #151922;
  --asphalt: #1e2430;
  --asphalt-mid: #2a313f;
  --steel: #5c6578;
  --cream: #f0e6dc;
  --muted: #87919f;
  --line: rgba(240, 230, 220, 0.12);
  --panel: #1c2330;
  --card: #232b38;
  --maxw: 1140px;
  --font: "Barlow", system-ui, sans-serif;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--font);
  color: var(--cream);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Perspective highway lanes — fixed bg */
.road-lanes {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 20% -10%, rgba(232, 98, 42, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 35% at 85% 0%, rgba(74, 158, 255, 0.14), transparent 50%),
    linear-gradient(175deg, #0f1219 0%, var(--navy) 35%, var(--asphalt) 100%);
}

.road-lanes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 120px,
    rgba(244, 160, 32, 0.025) 120px,
    rgba(244, 160, 32, 0.025) 121px
  );
  pointer-events: none;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
strong { color: var(--cream); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 740px; }

.hl {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Highway sign labels */
.sign {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(180deg, #2a3544 0%, #1a2030 100%);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 8px 16px 10px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.sign--center { display: flex; width: fit-content; margin-inline: auto; margin-bottom: 20px; }

.sign__route {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.sign__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Yellow road divider */
.road-strip {
  height: 14px;
  background: var(--asphalt-mid);
  border-block: 2px solid #3a4455;
  overflow: hidden;
}

.road-strip__dash {
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 40px,
    transparent 40px,
    transparent 72px
  );
  animation: dash-scroll 1.2s linear infinite;
}

@keyframes dash-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-72px); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 18, 25, 0.92);
  border-bottom: 2px solid rgba(244, 160, 32, 0.2);
  backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  border-radius: 9px;
  border: 2px solid rgba(232, 98, 42, 0.55);
  box-shadow: 0 0 20px rgba(232, 98, 42, 0.3);
}

.brand__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  background: var(--gold);
  padding: 3px 7px;
  border-radius: 4px;
  transform: skewX(-8deg);
}

.brand--sm .brand__text { font-size: 16px; }
.brand--sm .brand__badge { display: none; }

.nav__links { display: flex; gap: 6px; }

.nav__links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--cream);
  background: rgba(232, 98, 42, 0.15);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.25s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  transition: transform 0.15s, filter 0.2s;
  cursor: pointer;
}

.btn--haul {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 0 #8a3314, 0 12px 30px rgba(232, 98, 42, 0.35);
}

.btn--haul:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(74, 158, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(74, 158, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero */
.hero { padding: 56px 0 64px; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  margin-bottom: 16px;
}

.lead { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 24px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* HUD tiles */
.hud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hud__tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 90px;
}

.hud__val {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hud__lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Dispatch terminal — hero visual */
.terminal {
  background: var(--panel);
  border: 2px solid rgba(74, 158, 255, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.terminal:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #12161f;
  border-bottom: 1px solid var(--line);
}

.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
}

.terminal__dot:nth-child(1) { background: #e04b4b; }
.terminal__dot:nth-child(2) { background: var(--gold); }
.terminal__dot:nth-child(3) { background: var(--teal); }

.terminal__title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  animation: blink 2s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

.terminal__body {
  position: relative;
  min-height: 280px;
}

.terminal__art {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.55;
  display: block;
}

.terminal__overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
}

.terminal__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  background: rgba(21, 25, 34, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 11px;
  opacity: 0.65;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.terminal__row--active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(74, 158, 255, 0.4);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.12);
}

.terminal__row b { color: var(--cream); font-weight: 600; }
.terminal__row i { font-style: normal; font-family: var(--font-mono); color: var(--teal); font-weight: 700; }

.chip {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.chip--blue { background: rgba(74, 158, 255, 0.2); color: var(--blue); }
.chip--gold { background: rgba(244, 160, 32, 0.2); color: var(--gold); }
.chip--teal { background: rgba(46, 204, 154, 0.2); color: var(--teal); }

.terminal__truck {
  position: absolute;
  bottom: -8px;
  right: 16px;
  width: 120px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
  animation: truck-idle 4s ease-in-out infinite;
}

@keyframes truck-idle {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(4px); }
}

.terminal__route {
  width: 100%;
  height: 48px;
  display: block;
  background: var(--asphalt);
}

.route-line { stroke: var(--gold); opacity: 0.7; animation: route-dash 1s linear infinite; }

@keyframes route-dash {
  to { stroke-dashoffset: -28; }
}

.route-dot { fill: var(--orange); }
.route-dot--mid { fill: var(--blue); animation: pulse 1.5s ease infinite; }
.route-dot--end { fill: var(--teal); }

@keyframes pulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 7; opacity: 0.6; }
}

/* Sections */
.section { padding: 72px 0; }

.section--dispatch {
  background: rgba(232, 98, 42, 0.04);
  border-block: 1px solid var(--line);
}

.section--privacy { background: rgba(35, 43, 56, 0.4); }
.section--support { background: rgba(74, 158, 255, 0.04); }

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 12px;
}

.section__intro {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* Bento feature grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.bento__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s;
}

.bento__item:hover {
  transform: scale(1.02);
  border-color: rgba(232, 98, 42, 0.45);
  z-index: 2;
}

.bento__item--wide { grid-column: span 1; grid-row: span 1; }

.bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento__item:hover img { transform: scale(1.06); }

.bento__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(15, 18, 25, 0.95));
}

.bento__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.bento__cap h3 {
  font-size: 18px;
  margin: 4px 0 4px;
  text-transform: uppercase;
}

.bento__cap p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Route manifest demo */
.manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.manifest__road {
  background: var(--panel);
  border: 2px solid rgba(244, 160, 32, 0.25);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.manifest__scene {
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(90deg, var(--asphalt-mid) 0, var(--asphalt-mid) 48px, #323b4a 48px, #323b4a 50px),
    linear-gradient(180deg, var(--asphalt) 0%, var(--navy) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.manifest__scene::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 24px, transparent 24px, transparent 48px);
  transform: translateY(-50%);
  opacity: 0.5;
}

.manifest__truck {
  width: 150px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.manifest__cargo {
  width: 56px;
  margin-top: -16px;
  position: relative;
  z-index: 2;
  transition: opacity 0.4s, transform 0.4s;
}

.manifest__milestones {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 8px;
  gap: 4px;
}

.mile {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--steel);
  padding: 6px 2px;
  border-radius: 4px;
  background: var(--asphalt);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mile.active,
.mile:hover {
  color: var(--gold);
  border-color: rgba(244, 160, 32, 0.4);
  background: rgba(244, 160, 32, 0.08);
}

.manifest__stage { text-align: center; }
.manifest__stage b { display: block; font-family: var(--font-display); font-size: 20px; color: var(--gold); text-transform: uppercase; }
.manifest__stage i { font-size: 11px; color: var(--muted); font-style: normal; font-family: var(--font-mono); }

.manifest__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifest__desc { color: var(--muted); font-size: 15px; min-height: 68px; margin-bottom: 16px; }

.manifest__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.mstat {
  background: var(--asphalt);
  border-radius: 8px;
  padding: 10px 12px;
  border-left: 3px solid var(--orange);
}

.mstat span {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mstat b { font-family: var(--font-mono); font-size: 15px; color: var(--cream); }

.manifest__slider {
  width: 100%;
  accent-color: var(--orange);
  height: 8px;
  cursor: pointer;
  margin-bottom: 14px;
}

.manifest__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.prog {
  flex: 1;
  height: 10px;
  background: var(--asphalt);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.prog__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.manifest__progress b {
  font-family: var(--font-mono);
  color: var(--gold);
  min-width: 38px;
  text-align: right;
}

/* About file cards */
.file-cards { display: flex; flex-direction: column; gap: 12px; }

.file-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color 0.2s;
}

.file-card:hover { border-color: rgba(232, 98, 42, 0.35); }

.file-card__tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 8px;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.file-card p { font-size: 15px; color: var(--muted); }

.tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
}

/* Privacy doc */
.doc-date { text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 28px; }

.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 16px 18px;
}

.doc-list h3 {
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: var(--cream);
}

.doc-list p { font-size: 14px; color: var(--muted); }
.doc-list a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* Support radio */
.radio-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 700;
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--panel);
  border: 2px solid rgba(46, 204, 154, 0.35);
  color: var(--cream);
  transition: transform 0.2s, border-color 0.2s;
  word-break: break-all;
}

.radio-call:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.radio-call__ping {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46, 204, 154, 0.6);
  animation: ping 1.8s ease infinite;
  flex-shrink: 0;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 154, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(46, 204, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 154, 0); }
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.radio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.radio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 158, 255, 0.45);
}

.radio-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 6px;
}

.radio-card b { font-family: var(--font-display); font-size: 15px; text-transform: uppercase; }

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer {
  border-top: 2px solid rgba(244, 160, 32, 0.15);
  padding: 36px 0 44px;
  background: #0d1018;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer__links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--orange); }
.footer__copy { font-size: 12px; color: var(--steel); font-family: var(--font-mono); }

/* Responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .lead { margin-inline: auto; }
  .hero__cta, .hud { justify-content: center; }
  .terminal { transform: none; max-width: 420px; margin-inline: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .manifest { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 18, 25, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 16px;
  }

  .nav__links.open { max-height: 260px; padding-bottom: 12px; }
  .nav__links a { padding: 12px 0; border-top: 1px solid var(--line); }
  .nav__burger { display: flex; }

  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .brand__badge { display: none; }
  .mile { font-size: 7px; }
}

@media (min-width: 961px) {
  .bento__item--wide { grid-column: span 1; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .bento__item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
}
