:root {
  --bg: #080b10;
  --bg-soft: #0d1219;
  --panel: rgba(16, 23, 33, 0.86);
  --panel-strong: #111923;
  --text: #f4f7fb;
  --muted: #91a0b5;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #23d17f;
  --accent-2: #0e9d5b;
  --warning: #f6b73c;
  --danger: #f05454;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(35, 209, 127, .11), transparent 28%),
    linear-gradient(180deg, #090d12 0%, #070a0e 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

code {
  color: #c8ffe2;
  background: rgba(35, 209, 127, .09);
  border: 1px solid rgba(35, 209, 127, .16);
  padding: .18rem .42rem;
  border-radius: 7px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 18%, transparent 82%, rgba(255,255,255,.014)),
    #0a0f15;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
}

.page-glow-one {
  background: var(--accent);
  top: 6%;
  left: -160px;
}

.page-glow-two {
  background: #2c8dff;
  right: -200px;
  top: 46%;
  opacity: .08;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(7, 10, 14, .82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(35, 209, 127, .18), rgba(35, 209, 127, .06));
  border: 1px solid rgba(35, 209, 127, .24);
  box-shadow: inset 0 0 20px rgba(35, 209, 127, .06);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-mark path:first-child {
  fill: var(--accent);
}

.brand-mark .cut,
.brand-mark circle {
  fill: #0b1117;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: .05em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 2px;
  letter-spacing: .18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c6d0df;
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform .2s ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(35, 209, 127, .12);
  border: 1px solid rgba(35, 209, 127, .22);
  color: #dfffee;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 138px;
  padding-bottom: 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(35, 209, 127, .1);
  border-radius: 50%;
  right: -260px;
  top: 70px;
  box-shadow:
    0 0 0 80px rgba(35,209,127,.018),
    0 0 0 160px rgba(35,209,127,.012);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9fb0c7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(35, 209, 127, .7);
}

.hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(52px, 6.6vw, 88px);
  line-height: .93;
  letter-spacing: -.055em;
  max-width: 780px;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.48);
  text-stroke: 1px rgba(255,255,255,.48);
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--accent), #19b86b);
  color: #04130b;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 13px 34px rgba(35, 209, 127, .18);
}

.primary-btn .btn-icon {
  font-size: 21px;
  line-height: 1;
}

.primary-btn small,
.primary-btn strong {
  display: block;
  text-align: left;
}

.primary-btn small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  opacity: .68;
}

.primary-btn strong {
  font-size: 14px;
  margin-top: 2px;
  letter-spacing: .02em;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  color: #eef4fa;
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  font-size: 14px;
  font-weight: 800;
}

.secondary-btn:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
}

.discord-dot {
  color: #7588ff;
  text-shadow: 0 0 14px rgba(117,136,255,.8);
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
}

.hero-meta strong {
  font-size: 14px;
}

.hero-meta small {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.meta-dot {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(35,209,127,.8);
}

.hero-card-wrap {
  perspective: 1200px;
}

.road-card {
  position: relative;
  min-height: 510px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(35, 209, 127, .16), transparent 31%),
    linear-gradient(160deg, #121a24, #0b1017 68%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transform: rotateY(-5deg) rotateX(2deg);
}

.road-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.014) 18px 19px);
  pointer-events: none;
}

.road-card-top,
.road-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.road-card-top {
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 900;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(35,209,127,.2);
  border-radius: 999px;
  color: #a8b9cb;
  font-size: 9px;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(35,209,127,.8);
}

.route-board {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
}

.route-line {
  display: flex;
  align-items: center;
}

.route-pin {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 2px solid #0d1712;
  box-shadow: 0 0 0 4px rgba(35,209,127,.16);
  border-radius: 50%;
}

.route-pin.end {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.09);
}

.route-segment {
  flex: 1;
  height: 2px;
  margin: 0 7px;
  background: repeating-linear-gradient(90deg, rgba(35,209,127,.78) 0 14px, transparent 14px 22px);
}

.route-cities,
.route-distance {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.route-cities {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.route-distance {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
}

.truck-art {
  position: relative;
  height: 225px;
  margin: 24px -24px 0;
  filter: drop-shadow(0 30px 26px rgba(0,0,0,.45));
}

.trailer {
  position: absolute;
  left: 22px;
  top: 50px;
  width: 63%;
  height: 115px;
  border-radius: 8px 4px 4px 8px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(180deg, #303b48, #151d27);
  border: 1px solid rgba(255,255,255,.13);
}

.trailer::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.08);
}

.trailer-logo {
  position: absolute;
  left: 28px;
  top: 22px;
  color: rgba(255,255,255,.72);
  font-size: 29px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.05em;
}

.trailer-logo b {
  color: var(--accent);
  font-weight: 900;
}

.cab {
  position: absolute;
  right: 30px;
  top: 74px;
  width: 120px;
  height: 102px;
  border-radius: 16px 24px 8px 8px;
  background: linear-gradient(135deg, #1fc779, #0a7c48);
  box-shadow: inset -10px -16px 30px rgba(0,0,0,.2);
}

.cab::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 24px;
  right: 2px;
  top: -18px;
  border-radius: 18px 26px 3px 3px;
  background: #19a965;
  transform: skewX(-10deg);
}

.window {
  position: absolute;
  top: 12px;
  left: 18px;
  width: 65px;
  height: 34px;
  border-radius: 8px 12px 4px 4px;
  background: linear-gradient(135deg, #1d2936, #101821);
  border: 1px solid rgba(255,255,255,.17);
}

.grille {
  position: absolute;
  width: 52px;
  height: 22px;
  right: 8px;
  bottom: 14px;
  border-radius: 4px;
  background: repeating-linear-gradient(0deg, #203329 0 2px, #0b1710 2px 4px);
}

.light {
  position: absolute;
  width: 12px;
  height: 8px;
  right: 7px;
  bottom: 41px;
  background: #e8ffd8;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(232,255,216,.75);
}

.wheel {
  position: absolute;
  top: 159px;
  width: 38px;
  height: 38px;
  background: #080a0d;
  border: 7px solid #151b22;
  box-shadow: inset 0 0 0 3px #4a5563;
  border-radius: 50%;
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #9aa4b0;
}

.w1 { right: 66px; }
.w2 { left: 77px; }
.w3 { left: 128px; }

.road {
  position: absolute;
  z-index: 0;
  left: -10%;
  right: -10%;
  bottom: 73px;
  height: 88px;
  transform: skewY(-3deg);
  background:
    linear-gradient(180deg, #1c2228, #0a0d10),
    repeating-linear-gradient(90deg, #fff 0 30px, transparent 30px 70px);
}

.road::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 53%;
  height: 3px;
  opacity: .55;
  background: repeating-linear-gradient(90deg, #f5f3dc 0 34px, transparent 34px 70px);
}

.road-card-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
}

.road-card-bottom small,
.road-card-bottom strong {
  display: block;
}

.road-card-bottom small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .14em;
}

.road-card-bottom strong {
  margin-top: 3px;
  font-size: 12px;
}

.mini-copy {
  border: 1px solid rgba(35,209,127,.25);
  color: #bbf6d7;
  background: rgba(35,209,127,.08);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  width: 4px;
  height: 7px;
  top: 8px;
  left: 50%;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.join-section h2,
.cta-card h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading p,
.join-section > .container > div:first-child p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.stat-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(35,209,127,.06), transparent 45%),
    rgba(255,255,255,.018);
}

.stat-card strong {
  font-size: 38px;
  letter-spacing: -.04em;
}

.stat-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35,209,127,.26);
  background: linear-gradient(160deg, rgba(35,209,127,.075), rgba(255,255,255,.018));
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(35,209,127,.1);
  border: 1px solid rgba(35,209,127,.16);
  color: #d1ffe5;
  font-weight: 900;
  font-size: 17px;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 13px;
}

.feature-tag {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.join-section {
  background:
    radial-gradient(circle at 5% 90%, rgba(35,209,127,.09), transparent 27%),
    linear-gradient(180deg, #090d12, #080c11);
}

.join-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.join-card {
  padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.join-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.join-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(35,209,127,.08);
  border: 1px solid rgba(35,209,127,.14);
  font-size: 11px;
  font-weight: 900;
}

.join-step strong {
  display: block;
  font-size: 15px;
}

.join-step p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.primary-btn.full {
  width: 100%;
  margin-top: 22px;
  justify-content: center;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading.split > div {
  max-width: 620px;
}

.text-link {
  color: #b6c5d7;
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--accent);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.news-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.news-card.featured {
  background:
    radial-gradient(circle at 95% 0%, rgba(35,209,127,.14), transparent 34%),
    linear-gradient(145deg, rgba(35,209,127,.05), rgba(255,255,255,.018));
}

.news-card.featured::after {
  content: "0.04";
  position: absolute;
  right: -8px;
  bottom: -30px;
  font-size: 112px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  letter-spacing: -.08em;
}

.news-badge {
  display: inline-flex;
  padding: 7px 9px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #04130b;
  background: var(--accent);
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: .12em;
}

.news-date {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.news-card h3 {
  margin: 12px 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 13px;
}

.cta-section {
  padding-top: 80px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border: 1px solid rgba(35,209,127,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 20%, rgba(35,209,127,.18), transparent 30%),
    linear-gradient(135deg, #111a22, #0b1117);
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -140px;
  top: -140px;
  border: 1px solid rgba(35,209,127,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(35,209,127,.025), 0 0 0 108px rgba(35,209,127,.014);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: 42px;
  margin-bottom: 8px;
}

.cta-card p strong {
  color: #e8fff3;
}

.cta-actions {
  margin-top: 0;
}

.site-footer {
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  background: #070a0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  text-align: right;
}

.footer-copy span,
.footer-copy small {
  display: block;
}

.footer-copy span {
  font-size: 12px;
  font-weight: 800;
}

.footer-copy small {
  margin-top: 5px;
  color: #677487;
  font-size: 9px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  padding: 13px 17px;
  border-radius: 12px;
  background: #e9fff3;
  color: #082016;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  font-size: 12px;
  font-weight: 900;
  transition: .24s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card-wrap {
    max-width: 650px;
  }

  .road-card {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card.featured {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .footer-copy {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(10, 15, 21, .97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px !important;
    border-radius: 10px;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    padding-top: 118px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 18px 26px;
  }

  .road-card {
    min-height: 465px;
    padding: 18px;
  }

  .road-card-bottom {
    left: 18px;
    right: 18px;
  }

  .route-board {
    margin-top: 28px;
  }

  .truck-art {
    transform: scale(.92);
    transform-origin: center bottom;
    margin-inline: -40px;
  }

  .stats-grid,
  .feature-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .section-heading.split {
    display: block;
  }

  .section-heading.split .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .news-card.featured {
    grid-column: auto;
  }

  .cta-card {
    display: block;
    padding: 30px 24px;
  }

  .cta-actions {
    margin-top: 28px;
  }

  .footer-grid {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 26px 0;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    letter-spacing: -.065em;
  }

  .hero h1 span {
    -webkit-text-stroke: .8px rgba(255,255,255,.48);
  }

  .road-card-top {
    align-items: flex-start;
  }

  .live-pill {
    max-width: 150px;
  }

  .route-cities {
    font-size: 8px;
  }

  .truck-art {
    transform: scale(.82);
    margin-inline: -72px;
  }

  .cta-card h2 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
