:root {
  --bg: #F4F6F8;
  --bg-2: #FFFFFF;
  --bg-3: #E9EDF1;
  --fg: #17212B;
  --fg-muted: #607080;
  --accent: #C98200;
  --accent-2: #9D6500;
  --steel: #D7DEE5;
  --dark: #0D0F12;
  --dark-2: #15191D;
  --dark-3: #20262C;
  --dark-fg: #F0EDE8;
  --dark-muted: #A8B0B8;
  --road-asphalt: #1c1c1c;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

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

html { overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 14px 32px;
  border-bottom: 1px solid var(--steel);
  position: sticky;
  top: 0;
  background: rgba(13,15,18,0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark-fg);
  line-height: 1;
}
.nav-os { color: var(--accent); }
.nav-tag {
  font-family: var(--font-body);
  max-width: 150px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--dark-muted);
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links { flex: 1; justify-content: center; }
.nav-actions { gap: 10px; }
.nav-sos {
  padding: 9px 13px;
  color: var(--accent);
  border: 1px solid var(--accent-2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav-sos:hover {
  background: var(--accent);
  color: var(--bg);
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: none;
  margin: 0 auto;
  background: var(--dark);
  color: var(--dark-fg);
}
.hero-inner,
.hero > .coverage-panel {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-copy { padding: 10px 0; }
.hero-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline span { color: var(--accent); }
.hero-text { padding-top: 8px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-fg);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 540px;
}
.hero-route-picker {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) auto;
  gap: 8px;
  margin-top: 28px;
  max-width: 760px;
}
.hero-route-picker select,
.hero-route-picker input {
  min-width: 0;
  padding: 14px 15px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  color: var(--dark-fg);
  font: inherit;
  border-radius: 3px;
}
.hero-route-picker select:focus,
.hero-route-picker input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.hero-actions .hero-cta { margin-top: 0; }
.hero-cta--secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.hero-cta--secondary:hover {
  background: var(--accent);
  color: var(--bg);
}
.hero-text-link {
  color: var(--dark-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.hero-text-link:hover { color: var(--accent); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--dark-muted);
  font-size: 12px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--accent);
  margin-right: 6px;
}
.route-cockpit {
  padding: 24px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
}
.route-cockpit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.route-cockpit-kicker {
  display: block;
  color: var(--dark-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.route-cockpit h2 {
  color: var(--dark-fg);
  font-family: var(--font-display);
  font-size: 24px;
}
.route-live {
  color: #8BC34A;
  font-size: 11px;
  white-space: nowrap;
}
.route-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #8BC34A;
}
.route-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.route-form label { display: grid; gap: 6px; }
.route-form label span {
  color: var(--dark-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.route-form input,
.route-form select {
  width: 100%;
  min-width: 0;
  padding: 12px;
  background: var(--dark-3);
  border: 1px solid #343C44;
  color: var(--dark-fg);
  font: inherit;
}
.route-submit {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 0;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
}
.route-submit span { font-size: 20px; margin-left: 8px; }
.route-location {
  grid-column: 1 / -1;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--dark-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}
.route-location:hover { color: var(--accent); }
.route-preview {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 4px;
}
.route-preview-line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 5px;
  width: 1px;
  background: var(--dark-3);
}
.route-preview-item {
  position: relative;
  display: grid;
  gap: 2px;
  padding-left: 22px;
  color: var(--dark-muted);
  font-size: 12px;
}
.route-preview-item::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 1px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--dark-muted);
  border-radius: 50%;
  background: var(--dark-2);
}
.route-preview-item--active { color: var(--dark-fg); }
.route-preview-item--active::before { border-color: var(--accent); background: var(--accent); }
.route-preview-item b { font-family: var(--font-display); font-size: 15px; }
.route-cockpit-status {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--dark-3);
  color: var(--dark-muted);
  font-size: 11px;
}
.coverage-panel {
  margin-top: 56px;
  border-top: 1px solid var(--dark-3);
  padding-top: 20px;
}
.coverage-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--dark-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.coverage-panel-heading a {
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.coverage-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 88px;
  padding: 18px;
  background: var(--bg-2);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.coverage-item:hover {
  background: var(--accent);
  color: var(--bg);
}
.coverage-item strong {
  font-family: var(--font-display);
  font-size: 17px;
}
.coverage-item span {
  color: var(--fg-muted);
  font-size: 12px;
}
.coverage-item:hover span { color: var(--bg); }

/* AUDIENCE SCENARIOS */
.audiences {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--steel);
}
.audiences-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.audiences-heading {
  max-width: 640px;
  margin-bottom: 32px;
}
.audiences-heading h2 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.audiences-heading p { color: var(--fg-muted); }
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px;
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.audience-card:hover {
  background: var(--accent);
  color: var(--bg);
}
.audience-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.audience-card:hover .audience-kicker,
.audience-card:hover p,
.audience-card:hover .audience-link { color: var(--bg); }
.audience-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  margin-bottom: 10px;
}
.audience-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}
.audience-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

/* ROAD LINE */
.hero-road-line {
  position: relative;
  height: 80px;
  margin-top: 20px;
}
.road-line-fill {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  height: 4px;
  background: var(--steel);
}
.road-line-fill::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 75%;
  height: 100%;
  background: var(--accent);
}
.road-marker {
  position: absolute;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-label, .services-label, .hiw-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-statement {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* CORRIDOR */
.corridor {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.corridor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.corridor-stat {
  background: var(--bg-2);
  padding: 40px 32px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-unit {
  font-size: 24px;
  color: var(--accent);
}
.stat-desc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* SERVICES */
.services {
  background: var(--bg-3);
  padding: 80px 40px;
  border-top: 1px solid var(--steel);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--steel);
  padding: 36px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-icon { margin-bottom: 20px; }
.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* HOW IT WORKS */
.hiw {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--steel);
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--steel);
  border-right: 1px solid var(--steel);
}
.hiw-step:nth-child(even) { border-right: none; }
.hiw-step:nth-child(3),
.hiw-step:nth-child(4) { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}
.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* HERO CTA */
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* 3-COL HOW IT WORKS */
.hiw-steps--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--steel);
}
.hiw-steps--3col .hiw-step {
  border-right: 1px solid var(--steel);
  border-bottom: none;
}
.hiw-steps--3col .hiw-step:last-child {
  border-right: none;
}

/* STATIONS */
.stations {
  background: var(--bg-2);
  border-top: 1px solid var(--steel);
  padding: 80px 40px;
}
.stations-inner { max-width: 1100px; margin: 0 auto; }
.stations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.station-card--alert { border-color: var(--accent-2); }
.station-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--steel);
  padding: 32px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.station-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.station-km { margin-bottom: 16px; }
.km-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--steel);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}
.station-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.station-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.station-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* NAV CTA */
.nav-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-2); }

/* FOOTER UPDATES */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: start;
}
.footer-brand {}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.contact-item {
  font-size: 13px;
  color: var(--dark-muted);
  text-decoration: none;
}
.footer-contact a.contact-item:hover { color: var(--accent); }
.contact-sep { color: var(--dark-muted); font-size: 13px; }

/* CLOSING */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--steel);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--steel);
  padding: 40px;
  background: var(--dark);
  color: var(--dark-fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--dark-fg);
}
.footer-os { color: var(--accent); }
.footer-tag {
  font-size: 12px;
  color: var(--dark-muted);
  letter-spacing: 0.5px;
}
.footer-copy {
  font-size: 12px;
  color: var(--dark-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }

/* NAV LINK */
.nav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--accent); }

/* MOBILE */
@media (max-width: 1120px) and (min-width: 769px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 12px; }
  .nav-actions > .nav-link { display: none; }
  .nav-tag { max-width: 128px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-road-line { height: 50px; }
  .road-marker { font-size: 9px; }
  .manifesto-statement { font-size: 26px; }
  .corridor-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; }
  .hiw-step:nth-child(3) { border-bottom: 1px solid var(--steel); }
  .hiw-step:nth-child(4) { border-bottom: none; }
  .hiw-steps--3col { grid-template-columns: 1fr; }
  .hiw-steps--3col .hiw-step { border-right: none; border-bottom: 1px solid var(--steel); }
  .hiw-steps--3col .hiw-step:last-child { border-bottom: none; }
  .closing-statement { font-size: 24px; }
  .nav-brand { gap: 0; }
  .nav-tag { display: none; }
  .nav-links { display: none; }
  .nav-inner { gap: 10px; }
  .nav-actions { margin-left: auto; }
  .nav-sos { display: none; }
  .nav-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .footer-links { justify-content: center; }
  .footer-contact { justify-content: center; white-space: nowrap; }
  .hero { padding: 60px 24px 40px; }
  .manifesto, .corridor, .services, .hiw, .closing, .audiences { padding: 60px 24px; }
  .stations { padding: 60px 24px; }
  .stations-grid { grid-template-columns: 1fr; }
  .hero-route-picker { grid-template-columns: 1fr; }
  .hero-route-picker .hero-cta { width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .hero-text-link { text-align: center; }
  .hero-trust { display: grid; gap: 8px; }
  .coverage-panel { margin-top: 40px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .audiences-grid { grid-template-columns: 1fr; }
  .route-cockpit { padding: 18px; }
  .route-cockpit-header { flex-direction: column; gap: 8px; }
  .route-form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MODERN DESIGN LAYER — depth, motion, rounded surfaces, ambient hero
   Appended last so it refines the flat base without breaking structure.
   ========================================================================== */
:root {
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(16, 24, 40, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(16, 24, 40, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(201, 130, 0, 0.05), transparent 60%),
    var(--bg);
}

::selection { background: rgba(201, 130, 0, 0.22); }

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Ambient hero: layered glow + faint grid, no flat black ---- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 82% -20%, rgba(201, 130, 0, 0.20), transparent 55%),
    radial-gradient(700px 420px at -10% 120%, rgba(80, 120, 200, 0.12), transparent 55%),
    linear-gradient(180deg, #0B0D10 0%, var(--dark) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner, .hero > .coverage-panel { position: relative; z-index: 1; }

.hero-headline {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -1px;
}
.hero-headline span {
  background: linear-gradient(90deg, #FFC24D, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Buttons: rounded, springy, with sheen on primary ---- */
.hero-cta, .route-submit, .nav-cta, .btn-sto, .btn-book,
.pricing-cta, .form-submit, .sos-button {
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.hero-cta:hover, .route-submit:hover, .btn-sto:hover, .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(201, 130, 0, 0.6);
}
.hero-cta:active, .route-submit:active { transform: translateY(0); }
.route-submit { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s; }
.route-submit span { transition: transform 0.25s var(--ease); display: inline-block; }
.route-submit:hover span { transform: translateX(4px); }

/* ---- Route cockpit: elevated glass panel ---- */
.route-cockpit {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)) ,
    var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.route-form input, .route-form select {
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.route-form input:focus, .route-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 130, 0, 0.25);
  outline: none;
}
.route-live i {
  box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.7);
  animation: m7-pulse 2s infinite;
}
@keyframes m7-pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(139, 195, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 195, 74, 0); }
}

/* ---- Coverage tiles: rounded, lift ---- */
.coverage-grid { border: 0; background: transparent; gap: 12px; }
.coverage-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: var(--dark-fg);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.coverage-item span { color: var(--dark-muted); }
.coverage-item:hover {
  transform: translateY(-3px);
  background: rgba(201, 130, 0, 0.14);
  border-color: var(--accent);
  color: var(--dark-fg);
}
.coverage-item:hover span { color: var(--dark-fg); }

/* ---- Light-surface cards: soft shadow, rounded, hover lift ---- */
.audiences-grid, .services-grid, .stations-grid { background: transparent; border: 0; gap: 20px; }
.audience-card, .service-card, .station-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.2s;
  border: 1px solid var(--steel);
}
.audience-card:hover, .service-card:hover, .station-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 130, 0, 0.5);
}
.audience-card:hover { background: var(--bg-2); color: var(--fg); }
.audience-card:hover .audience-kicker { color: var(--accent); }
.audience-card:hover p { color: var(--fg-muted); }
.audience-card:hover .audience-link { color: var(--accent); }
.audience-link { transition: gap 0.2s; }
.audience-card:hover .audience-link::after { content: ''; }

/* Accent top-rule that grows on hover — modern micro-detail */
.service-card, .audience-card { position: relative; overflow: hidden; }
.service-card::after, .audience-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), #FFC24D);
  transition: width 0.35s var(--ease);
}
.service-card:hover::after, .audience-card:hover::after { width: 100%; }

/* Section headings scale nicely */
.audiences-heading h2, .manifesto-statement { font-size: clamp(26px, 3.4vw, 34px); }

/* ---- Scroll reveal (visible without JS; animation only if html.js) ---- */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* Staggered entrance for grid children */
.audiences-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2),
.hiw-steps .reveal:nth-child(2),
.stations-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.audiences-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3),
.hiw-steps .reveal:nth-child(3),
.stations-grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.stations-grid .reveal:nth-child(4) { transition-delay: 0.27s; }
.stations-grid .reveal:nth-child(5) { transition-delay: 0.36s; }
.route-cockpit.reveal { transition-delay: 0.12s; }

/* ---- Rounded inputs across forms ---- */
.hero-route-picker select, .hero-route-picker input,
.sos-field input, .sos-field select, .sos-field textarea,
.filter-group select, .sto-search-input, .status-card input {
  border-radius: var(--radius-sm);
}

/* ---- Cinematic truck-on-highway hero background ---- */
/* .hero-motion also carries the STATIC poster (mobile / reduced-motion / save-data
   fallback) plus the text-protection scrim, so there is never a blank hero. */
.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 11, 14, 0.94) 0%, rgba(9, 11, 14, 0.72) 30%, rgba(9, 11, 14, 0.34) 58%, rgba(9, 11, 14, 0.1) 100%),
    linear-gradient(0deg, rgba(9, 11, 14, 0.82) 0%, rgba(9, 11, 14, 0.1) 40%, transparent 66%),
    linear-gradient(180deg, rgba(9, 11, 14, 0.55) 0%, transparent 18%),
    radial-gradient(700px 380px at 88% 8%, rgba(201, 130, 0, 0.16), transparent 60%),
    url("/media/hero-truck-poster.jpg") center 38% / cover no-repeat;
}

/* Real stock video (desktop only, lazy-loaded). Hidden until .has-video. */
.hero-video, .hero-video-overlay, .hero-grain { display: none; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  opacity: 0;
  filter: contrast(1.08) saturate(1.1);
  transform: scale(1.06) translate(var(--px, 0px), var(--py, 0px));
  transition: opacity 1.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.hero-video.is-active { opacity: 1; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* text protection: strong on the left, clear on the right so the truck stays visible */
    linear-gradient(90deg, rgba(9, 11, 14, 0.92) 0%, rgba(9, 11, 14, 0.66) 30%, rgba(9, 11, 14, 0.28) 58%, rgba(9, 11, 14, 0.06) 100%),
    /* gently suppresses compression artifacts in the brightest right area */
    linear-gradient(90deg, transparent 38%, rgba(9, 11, 14, 0.18) 68%, rgba(9, 11, 14, 0.44) 100%),
    linear-gradient(0deg, rgba(9, 11, 14, 0.8) 0%, rgba(9, 11, 14, 0.08) 40%, transparent 66%),
    linear-gradient(180deg, rgba(9, 11, 14, 0.5) 0%, transparent 16%),
    /* amber brand accent + soft cinematic vignette */
    radial-gradient(700px 380px at 88% 8%, rgba(201, 130, 0, 0.14), transparent 60%),
    radial-gradient(130% 120% at 50% 44%, transparent 60%, rgba(0, 0, 0, 0.38) 100%);
}
/* Very subtle film grain over the footage */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  animation: hero-grain-move 0.6s steps(3) infinite;
}
@keyframes hero-grain-move {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-4px, 3px); }
  66% { transform: translate(3px, -4px); }
  100% { transform: translate(0, 0); }
}
/* When desktop video is active, reveal it (and the matching overlay/grain) */
.hero.has-video .hero-video,
.hero.has-video .hero-video-overlay,
.hero.has-video .hero-grain { display: block; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  /* keep the static poster (do NOT hide .hero-motion) */
}

/* Nearby map preview under the hero */
.hero-map-preview {
  position: relative;
  z-index: 2;
  padding: 0 32px 76px;
  background: var(--dark);
  color: var(--dark-fg);
}
.hero-map-preview-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(21, 25, 29, 0.94);
  box-shadow: 0 20px 55px -28px rgba(0, 0, 0, 0.7);
}
.hero-map-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.hero-map-heading h2 {
  margin: 4px 0 4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}
.hero-map-heading p {
  color: var(--dark-muted);
  font-size: 13px;
}
.hero-map-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.map-location-button {
  padding: 10px 14px;
  border: 1px solid rgba(201, 130, 0, 0.6);
  border-radius: 10px;
  background: rgba(201, 130, 0, 0.14);
  color: #ffc24d;
  font: 700 12px var(--font-body);
  cursor: pointer;
}
.map-location-button:disabled { opacity: 0.65; cursor: wait; }
.map-all-link {
  color: var(--dark-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.map-all-link:hover { color: var(--accent); }
.hero-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 16px;
}
.hero-map-canvas {
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(201, 130, 0, 0.18), transparent 45%),
    #202a31;
}
.hero-map-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nearby-result {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 94px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--dark-fg);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.nearby-result:hover {
  border-color: rgba(201, 130, 0, 0.7);
  background: rgba(201, 130, 0, 0.1);
  transform: translateX(-3px);
}
.nearby-result strong { padding-right: 56px; font: 600 17px var(--font-display); }
.nearby-result-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-right: 56px;
}
.nearby-type-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 194, 77, 0.14);
  color: #ffc24d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.nearby-result-summary,
.nearby-result-address,
.nearby-result-meta {
  color: var(--dark-muted);
  font-size: 12px;
  line-height: 1.35;
}
.nearby-result-summary {
  color: #d7dee5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nearby-result-address,
.nearby-result-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nearby-result-services {
  overflow: hidden;
  color: #ffc24d;
  font-size: 11px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nearby-result-more {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.nearby-result-distance {
  position: absolute;
  top: 13px;
  right: 13px;
  color: #ffc24d;
  font-size: 11px;
  font-weight: 700;
}
.nearby-empty,
.nearby-map-fallback {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 24px;
  color: var(--dark-muted);
  font-size: 13px;
  text-align: center;
}
.nearby-empty a,
.nearby-map-fallback a { color: #ffc24d; }

@media (max-width: 760px) {
  .hero-map-preview { padding: 0 18px 52px; }
  .hero-map-preview-inner { padding: 18px; }
  .hero-map-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-map-actions { width: 100%; justify-content: space-between; }
  .hero-map-layout { grid-template-columns: 1fr; }
  .hero-map-canvas { min-height: 250px; }
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 8px;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}
.consent-check input { margin-top: 3px; flex-shrink: 0; }
.consent-check a { color: var(--accent-2); }

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid var(--steel);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px -18px rgba(16, 24, 40, 0.35);
}
.cookie-banner p { margin: 0 0 12px; color: var(--fg-muted); font-size: 13px; line-height: 1.5; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--accent);
  color: var(--bg);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--steel);
}

.legal-page {
  width: min(760px, calc(100% - 48px));
  margin: 48px auto 80px;
}
.legal-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.legal-page h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; }
.legal-body p, .legal-body li { color: var(--fg-muted); margin-bottom: 12px; }
.legal-body h2 { font-family: var(--font-display); font-size: 22px; margin: 28px 0 10px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.sto-catalog-notice {
  margin: 0 0 20px;
  padding: 12px 16px;
  border: 1px solid var(--steel);
  background: var(--bg-2);
  color: var(--fg-muted);
  font-size: 14px;
}
.form-error { color: #c62828; font-size: 14px; margin: 12px 0; }