:root {
  --navy-900: #05101C;
  --navy-800: #0A1C30;
  --navy-700: #123252;
  --navy-600: #1B4066;
  --blue: #C89438;        /* brand gold (kept var names so nothing breaks) */
  --blue-light: #E7B65D;  /* light gold */
  --blue-deep: #9A6C24;   /* deep gold on light bg */
  --green: #16A34A;
  --green-dark: #15803D;
  --green-light: #7DD4A0;
  --green-tint: #E7F6EC;
  --paper: #F6F2E9;
  --white: #FFFFFF;
  --slate: #44546A;
  --ink: #16222E;
  --amber: #D97706;
  --gold: #C89438;
  --line: #E5DCC8;
  --line-navy: #23405F;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(6, 18, 36, 0.10);
  --shadow-soft: 0 4px 14px rgba(6, 18, 36, 0.07);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: min(1160px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: 20px; font-weight: 600; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-deep);
}
.on-dark .kicker { color: var(--blue-light); }

/* ---------- demo ribbon ---------- */
.demo-ribbon {
  background: #FEF3E2; color: #92400E; border-bottom: 1px solid #FBE1BC;
  text-align: center; font-size: 13px; padding: 7px 14px; font-weight: 500;
}
.demo-ribbon i { vertical-align: -2px; margin-right: 4px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy-800);
  border-bottom: 1px solid var(--line-navy);
}
.navbar { display: flex; align-items: center; gap: 26px; padding: 10px 0; }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-logo img { height: 60px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.45)); }
.brand-word { font-family: var(--font-display); font-weight: 700; color: var(--white); white-space: nowrap;
  display: inline-flex; flex-direction: column; align-items: center; line-height: 1.0; font-size: 15px; letter-spacing: .5px; }
.brand-word b { font-size: 23px; font-weight: 700; color: var(--blue-light); letter-spacing: 1.5px; margin-top: 1px; }
.brand-word b { color: var(--blue-light); font-weight: 700; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: #B9C8DE; font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--blue); color: #101C2B; font-weight: 600; font-size: 14.5px;
  padding: 10px 18px; border-radius: 9px; transition: background .15s;
}
.nav-cta:hover { background: var(--blue-light); }
.mobile-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #101C2B;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 10px; border: 0; cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--blue-light); }
.btn:active { transform: scale(.98); }
.btn.ghost { background: transparent; border: 1.5px solid var(--blue); color: var(--blue-light); }
.btn.ghost:hover { border-color: var(--blue-light); color: var(--blue-light); background: transparent; }
.btn.ghost-light { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn.ghost-light:hover { border-color: var(--blue); color: var(--blue-deep); background: transparent; }
.btn.green { background: var(--green); color: var(--white); }
.btn.green:hover { background: #17B152; }

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .6px;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.badge i { font-size: 13px; }
.badge.verified { background: var(--green-tint); color: var(--green-dark); border: 1px solid rgba(22,163,74,.25); }
.badge.premier { background: var(--green-tint); color: var(--green-dark); border: 1px solid rgba(200,166,78,.55); }
.badge.premier i { color: var(--gold); }
.badge.listed { background: #EDF1F7; color: var(--slate); border: 1px solid var(--line); }
.badge.on-navy { background: #123258; color: var(--green-light); border: 0; }

/* ---------- hero ---------- */
.hero { background: var(--navy-800); color: var(--white); padding: 72px 0 130px; position: relative; }
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero .badge.on-navy { margin-bottom: 22px; font-size: 12.5px; padding: 7px 16px; }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero .lead { font-size: clamp(16px, 1.6vw, 19px); color: #B9C8DE; margin: 18px auto 0; max-width: 640px; }

.hero-road {
  position: absolute; inset: auto 0 0 0; height: 90px; pointer-events: none; overflow: hidden;
}
.hero-road svg { width: 100%; height: 100%; }

/* ---------- search panel ---------- */
.search-wrap { margin-top: -64px; position: relative; z-index: 10; }
.search-panel {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
  padding: 18px; display: grid;
  grid-template-columns: 1.25fr 1.25fr .9fr .8fr 1fr auto; gap: 10px; align-items: end;
}
.field label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--slate); margin-bottom: 5px;
}
.field input, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 13px; border: 1.5px solid var(--line); border-radius: 9px;
  background: var(--white); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,127,249,.15); }
.search-panel .btn { padding: 13px 24px; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); padding: 22px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.trust-item i { font-size: 22px; color: var(--blue); }
.trust-item i.shield { color: var(--green); }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section.white { background: var(--white); }
.section.navy { background: var(--navy-800); color: var(--white); }
.section.deep { background: var(--navy-900); color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head p { color: var(--slate); max-width: 520px; font-size: 16px; }
.section.navy .section-head p, .section.deep .section-head p { color: #B9C8DE; }
.see-all { font-size: 15px; font-weight: 600; color: var(--blue-deep); white-space: nowrap; }
.see-all:hover { color: var(--blue); }

/* ---------- carrier cards ---------- */
.carrier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.carrier-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .18s, box-shadow .18s; cursor: pointer; position: relative;
}
.carrier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.carrier-photo {
  aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px; position: relative;
}
.carrier-photo.tone-a { background: var(--navy-600); }
.carrier-photo.tone-b { background: var(--navy-700); }
.carrier-photo.tone-c { background: #1B4A7A; }
.carrier-photo i { font-size: 44px; color: #7FA8D9; }
.carrier-photo span { font-size: 11px; color: #7FA8D9; letter-spacing: 1px; text-transform: uppercase; }
.carrier-photo .tier-flag { position: absolute; top: 12px; left: 12px; }
.carrier-body { padding: 16px 18px 18px; }
.carrier-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.carrier-meta { display: flex; align-items: center; gap: 10px; margin-top: 7px; flex-wrap: wrap; }
.rating { font-size: 13.5px; font-weight: 600; color: var(--amber); }
.rating span { color: var(--slate); font-weight: 400; }
.carrier-loc { font-size: 13.5px; color: var(--slate); margin-top: 7px; display: flex; align-items: center; gap: 5px; }
.carrier-loc i { font-size: 15px; }
.carrier-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.carrier-tags em { font-style: normal; font-size: 12px; background: var(--paper); color: var(--slate); padding: 3px 9px; border-radius: 999px; }
.carrier-actions { display: flex; gap: 8px; margin-top: 14px; }
.carrier-actions .btn { padding: 9px 14px; font-size: 13.5px; flex: 1; }

/* verification reveal */
.verify-panel {
  border-top: 1px dashed var(--line); margin-top: 14px; padding-top: 12px;
  font-size: 12.5px; color: var(--slate); display: none;
}
.carrier-card.open .verify-panel { display: block; }
.verify-panel div { display: flex; justify-content: space-between; padding: 2px 0; }
.verify-panel b { color: var(--green-dark); font-weight: 600; }

/* ---------- trip types ---------- */
.trip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.trip-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 16px; text-align: center; transition: transform .15s, border-color .15s;
}
.trip-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.trip-card i { font-size: 30px; color: var(--blue-deep); }
.trip-card h3 { font-size: 14.5px; margin-top: 10px; font-weight: 600; }

/* ---------- coverage ---------- */
.coverage { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.coverage h2 { color: var(--white); }
.coverage p { color: #B9C8DE; margin-top: 14px; }
.region-grid { display: grid; gap: 14px; }
.region-box { background: var(--navy-700); border: 1px solid var(--line-navy); border-radius: var(--radius); padding: 18px 20px; }
.region-box h3 { color: var(--white); font-size: 15px; display: flex; justify-content: space-between; align-items: center; }
.region-box h3 span { font-size: 12px; color: var(--green-light); font-weight: 500; }
.state-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.state-chip {
  font-size: 12.5px; font-weight: 600; color: #B9C8DE; background: var(--navy-600);
  padding: 4px 11px; border-radius: 7px; cursor: pointer; transition: all .15s; border: 1px solid transparent;
}
.state-chip:hover, .state-chip.lit { background: var(--blue); color: var(--white); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--blue);
  display: inline-block; margin-bottom: 10px;
}
.step h3 { font-size: 16.5px; }
.step p { font-size: 14px; color: var(--slate); margin-top: 7px; }

/* ---------- operator band ---------- */
.op-band { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.op-band h2 { color: var(--white); }
.op-band .points { margin-top: 20px; display: grid; gap: 12px; }
.op-point { display: flex; gap: 12px; align-items: flex-start; color: #B9C8DE; font-size: 15.5px; }
.op-point i { color: var(--green-light); font-size: 20px; margin-top: 2px; }
.op-card { background: var(--navy-700); border: 1px solid var(--line-navy); border-radius: 16px; padding: 30px; text-align: center; }
.op-card .price { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--white); }
.op-card .price small { font-size: 15px; color: #B9C8DE; font-weight: 400; }
.op-card .founding { font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.op-card p { font-size: 13.5px; color: #B9C8DE; margin: 12px 0 18px; }

/* ---------- routes ---------- */
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.route-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; transition: border-color .15s, transform .15s;
}
.route-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.route-line { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; }
.route-line i { color: var(--blue); font-size: 17px; }
.route-card span { font-size: 13px; color: var(--slate); }

/* ---------- results ---------- */
#results-note { font-size: 15px; color: var(--slate); margin: -18px 0 26px; }
#results-note b { color: var(--green-dark); }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: #B9C8DE; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand-word { font-size: 19px; }
.footer p { font-size: 14px; margin-top: 12px; max-width: 300px; }
.footer h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 14px; letter-spacing: .8px; text-transform: uppercase; }
.footer a { display: block; font-size: 14px; padding: 4px 0; color: #B9C8DE; }
.footer a:hover { color: var(--white); }
.service-promise {
  display: flex; align-items: center; gap: 10px; margin-top: 18px;
  background: var(--navy-800); border: 1px solid var(--line-navy); border-radius: 10px;
  padding: 12px 16px; font-size: 13px; max-width: 340px;
}
.service-promise i { color: var(--green-light); font-size: 20px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--line-navy); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; color: #7C8DA6; flex-wrap: wrap;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .search-panel { grid-template-columns: 1fr 1fr; }
  .search-panel .btn { grid-column: 1 / -1; }
  .carrier-grid, .route-grid { grid-template-columns: 1fr 1fr; }
  .trip-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .coverage, .op-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav-links, .navbar > .nav-cta { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--navy-800); padding: 18px 6vw 24px; gap: 14px;
    border-bottom: 1px solid var(--line-navy); z-index: 70;
  }
}
@media (max-width: 680px) {
  .hero { padding: 52px 0 110px; }
  .carrier-grid, .route-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .trip-grid { grid-template-columns: 1fr 1fr; }
  .search-panel { grid-template-columns: 1fr; }
}

/* ---------- subpage band ---------- */
.page-band { background: var(--navy-800); color: var(--white); padding: 40px 0 30px; }
.page-band h1 { font-size: clamp(26px, 3vw, 38px); color: var(--white); }
.page-band p { color: #B9C8DE; font-size: 15px; margin-top: 6px; }
.crumbs { font-size: 13px; color: #7C8DA6; margin-bottom: 14px; }
.crumbs a { color: #B9C8DE; }
.crumbs a:hover { color: var(--white); }

/* ---------- search page ---------- */
.sr-panel-wrap { margin-top: -26px; position: relative; z-index: 5; }
.sr-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding: 40px 0 76px; align-items: start; }
.filter-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; position: sticky; top: 86px;
}
.filter-card h4 {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--slate);
  margin: 18px 0 10px; font-weight: 600;
}
.filter-card h4:first-child { margin-top: 0; }
label.check {
  display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink);
  padding: 4px 0; cursor: pointer;
}
label.check span { color: var(--slate); font-size: 12.5px; }
label.check input { accent-color: var(--blue); width: 16px; height: 16px; }
.sr-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 14px; flex-wrap: wrap; }
#sr-count { font-size: 15px; color: var(--slate); }
#sr-count b { color: var(--ink); }
.sr-toolbar select {
  font-family: var(--font-body); font-size: 14px; padding: 9px 12px;
  border: 1.5px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink);
}

/* ---------- profile page ---------- */
.profile-hero { color: var(--white); padding: 34px 0 38px; }
.profile-hero.tone-a { background: var(--navy-600); }
.profile-hero.tone-b { background: var(--navy-700); }
.profile-hero.tone-c { background: #1B4A7A; }
.profile-head { display: flex; justify-content: space-between; align-items: end; gap: 26px; flex-wrap: wrap; }
.profile-hero h1 { color: var(--white); font-size: clamp(28px, 3.4vw, 42px); }
.profile-sub { display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.profile-sub .loc { display: flex; align-items: center; gap: 5px; font-size: 14.5px; color: #B9C8DE; }
.photo-strip { display: flex; gap: 10px; }
.photo-strip div {
  width: 110px; aspect-ratio: 16/11; background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.25); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}
.photo-strip i { font-size: 22px; color: #7FA8D9; }
.photo-strip span { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: #7FA8D9; }
.profile-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; padding: 40px 0 80px; align-items: start; }
.panel-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; margin-bottom: 22px;
}
.panel-card h3 { font-size: 18px; margin-bottom: 14px; }
.verify-table div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px;
}
.verify-table span { color: var(--slate); }
.verify-table b { color: var(--green-dark); font-weight: 600; }
.verify-note {
  display: flex; gap: 9px; align-items: flex-start; margin-top: 14px;
  font-size: 13px; color: var(--slate); background: var(--green-tint);
  border-radius: 9px; padding: 11px 14px;
}
.verify-note i { color: var(--green); font-size: 17px; flex-shrink: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip-row em {
  font-style: normal; font-size: 13.5px; background: var(--paper); color: var(--ink);
  padding: 6px 13px; border-radius: 999px;
}
.muted { font-size: 13.5px; color: var(--slate); margin-top: 10px; }
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; position: sticky; top: 86px;
}
.quote-card h3 { font-size: 19px; }
.quote-card .muted { margin: 6px 0 16px; }
.quote-card .field { margin-bottom: 12px; }
.quote-card .two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.success-panel {
  background: var(--green-tint); border: 1px solid rgba(22,163,74,.3); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.success-panel i { font-size: 40px; color: var(--green); }
.success-panel h3 { margin: 8px 0 8px; }
.success-panel p { font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }

@media (max-width: 900px) {
  .sr-layout, .profile-layout { grid-template-columns: 1fr; }
  .filter-card, .quote-card { position: static; }
}

/* ---------- operator pitch / tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.tier-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center; position: relative;
}
.tier-card.pop { border: 2px solid var(--blue); }
.tier-card .pop-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.tier-card h3 { font-size: 17px; letter-spacing: 1px; }
.tier-card .t-price { font-family: var(--font-display); font-weight: 700; font-size: 38px; margin: 12px 0 2px; }
.tier-card .t-price small { font-size: 14px; color: var(--slate); font-weight: 400; }
.tier-card .t-note { font-size: 12.5px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; min-height: 18px; }
.tier-card ul { list-style: none; margin: 18px 0 22px; text-align: left; }
.tier-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--ink); padding: 5px 0; }
.tier-card li i { color: var(--green); font-size: 17px; flex-shrink: 0; margin-top: 2px; }

/* ---------- dashboards ---------- */
.dash-band { background: var(--navy-800); color: var(--white); padding: 34px 0; }
.dash-band h1 { font-size: clamp(24px, 2.8vw, 34px); color: var(--white); }
.dash-band p { color: #B9C8DE; font-size: 14.5px; margin-top: 5px; }
.dash-band select {
  font-family: var(--font-body); font-size: 15px; padding: 10px 14px; margin-top: 14px;
  border: 1.5px solid var(--line-navy); border-radius: 9px; background: var(--navy-700); color: var(--white);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: -26px 0 30px; position: relative; z-index: 5; }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-soft);
}
.stat-card span { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--slate); display: block; }
.stat-card b { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); }
.lead-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 12px;
}
.lead-card.is-new { border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; }
.lead-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 15.5px; flex-wrap: wrap; }
.lead-mid { font-size: 13.5px; color: var(--slate); margin-top: 5px; }
.lead-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.lead-actions .btn { padding: 8px 14px; font-size: 13px; }
.lead-id { font-size: 12px; color: var(--slate); letter-spacing: 1px; }
.status-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 11px; border-radius: 999px;
}
.status-pill.new { background: #E6F0FE; color: var(--blue-deep); }
.status-pill.responded, .status-pill.approved { background: var(--green-tint); color: var(--green-dark); }
.status-pill.pending { background: #FEF3E2; color: #92400E; }
.status-pill.rejected { background: #FDECEC; color: #A32D2D; }
.dash-section h3 { font-size: 18px; margin: 26px 0 14px; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- owner-operator tag ---------- */
.owner-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .4px;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
  background: #FBEAF0; color: #993556; border: 1px solid rgba(212,83,126,.3);
}
.owner-tag i { font-size: 13px; }

/* ---------- fleet photo polish (equal for every tier) ---------- */
.carrier-photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  background:
    linear-gradient(to top, rgba(6,18,36,.55), transparent),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.35) 26px 44px) bottom / 100% 3px no-repeat;
}
.carrier-photo { overflow: hidden; }
.carrier-photo i, .carrier-photo span, .carrier-photo .tier-flag { position: relative; z-index: 1; }

/* ---------- owner story ---------- */
.story-panel { border-left: 4px solid #D4537E; border-radius: 0 var(--radius) var(--radius) 0; }
.story-panel h3 { display: flex; align-items: center; gap: 8px; }
.story-panel h3 i { color: #D4537E; }
.story-panel p { font-size: 15.5px; color: var(--ink); margin-bottom: 14px; font-style: italic; }

/* ---------- reviews ---------- */
.review-summary { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-summary .big { font-family: var(--font-display); font-weight: 700; font-size: 34px; }
.review-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.review-item { border-top: 1px dashed var(--line); padding: 14px 0; }
.review-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.review-head b { font-size: 14.5px; }
.review-date { font-size: 12.5px; color: var(--slate); margin-left: auto; }
.review-item p { font-size: 14.5px; color: var(--ink); }

/* ---------- faded modern coach backdrop (owner directive) ---------- */
.container { position: relative; z-index: 1; }
.hero, .page-band, .dash-band, .section.deep, .section.navy, .footer { position: relative; overflow: hidden; }
.hero::before, .page-band::before, .dash-band::before, .section.deep::before, .section.navy::before, .footer::before {
  content: ""; position: absolute; right: -40px; bottom: -4px;
  width: 860px; max-width: 92%; height: 260px; z-index: 0;
  background: url("brand/station-line-light.svg") no-repeat bottom right / contain;
  opacity: .10; pointer-events: none;
}
.hero::before { width: 1280px; height: 410px; top: auto; opacity: .26; background-position: right -40px bottom 76px; }
.footer::before { opacity: .05; }
.section.navy::before { left: -70px; right: auto; transform: scaleX(-1); opacity: .07; }

/* ---------- trip types page ---------- */
.tripbig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tripbig-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .15s, border-color .15s; display: block;
}
.tripbig-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.tripbig-card i { font-size: 32px; color: var(--blue-deep); }
.tripbig-card h3 { margin: 12px 0 8px; font-size: 18px; }
.tripbig-card p { font-size: 14px; color: var(--slate); margin-bottom: 12px; }
.tripbig-count { font-size: 13px; font-weight: 600; color: var(--blue-deep); }

/* ---------- routes/cities page ---------- */
.region-box.light { background: var(--white); border: 1px solid var(--line); }
.region-box.light h3 { color: var(--ink); }
.city-chip { background: var(--paper); color: var(--slate); }
.city-chip:hover { background: var(--blue); color: var(--white); }

/* ---------- prose pages (about / verification / legal) ---------- */
.prose { max-width: 780px; }
.prose h2 { margin: 34px 0 12px; }
.prose h3 { margin: 24px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--ink); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.tier-explain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.tier-explain .panel-card { margin: 0; }
.tier-explain h3 { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.tier-explain p { font-size: 14px; color: var(--slate); margin: 8px 0 0; }
@media (max-width: 900px) {
  .tripbig-grid, .tier-explain { grid-template-columns: 1fr; }
}

/* ---------- realistic fleet scenes ---------- */
.carrier-photo { position: relative; }
.carrier-photo .fleet-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.carrier-card:hover .fleet-img { transform: scale(1.04); }
.carrier-photo .fleet-img { transition: transform .35s ease; }
.photo-note {
  position: absolute; bottom: 7px; right: 10px; z-index: 1;
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.photo-strip div { overflow: hidden; position: relative; border-style: solid; }
.photo-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- overlay positioning fixes (must stay last) ---------- */
.carrier-photo .tier-flag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.carrier-photo .photo-note { position: absolute; top: auto; left: auto; bottom: 7px; right: 10px; z-index: 2; }

/* ---------- auth: login page + session bar ---------- */
.session-bar { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 10px; min-height: 20px; }
.sess-who { font-size: 13px; color: #B9C8DE; display: flex; align-items: center; gap: 6px; }
.sess-who i { font-size: 16px; }
.sess-who em { color: #7C8DA6; font-style: normal; }
.sess-out {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: transparent; border: 1px solid var(--line-navy); color: #D9E2EF;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; transition: border-color .15s, color .15s;
}
.sess-out:hover { border-color: var(--blue-light); color: #fff; }
.demo-login-note {
  display: flex; gap: 10px; align-items: flex-start; background: #FEF3E2;
  border: 1px solid #FBE1BC; color: #7A4B12; border-radius: 10px;
  padding: 12px 14px; font-size: 13px; margin-bottom: 18px; line-height: 1.5;
}
.demo-login-note i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.login-error {
  background: #FDECEC; border: 1px solid #F5C2C2; color: #A32D2D;
  font-size: 13.5px; padding: 10px 12px; border-radius: 8px; margin-bottom: 12px;
}
.demo-actions { margin-top: 18px; }
.or-line { text-align: center; position: relative; margin: 14px 0; }
.or-line::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line);
}
.or-line span { position: relative; background: var(--white); padding: 0 12px; font-size: 12.5px; color: var(--slate); }

/* ---------- The Depot (enthusiast) ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; transition: transform .15s, border-color .15s;
}
.event-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.event-date {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 12px; background: var(--navy-800);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-date .mo { font-size: 11px; letter-spacing: 1.5px; color: var(--blue-light); font-weight: 600; }
.event-date .dy { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.1; }
.event-card h3 { font-size: 16px; }
.event-card .event-loc { font-size: 13px; color: var(--blue-deep); display: flex; align-items: center; gap: 4px; margin: 4px 0 6px; }
.event-card .event-loc i { font-size: 14px; }
.event-card p { font-size: 13.5px; color: var(--slate); }

.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spotlight-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spotlight-photo { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.spotlight-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 16px 18px 20px; }
.spotlight-body h3 { font-size: 17px; margin-bottom: 6px; }
.spotlight-body p { font-size: 14px; color: var(--slate); }

@media (max-width: 900px) {
  .event-grid, .spotlight-grid { grid-template-columns: 1fr; }
}

/* ---------- The Operator Network ---------- */
.net-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.net-section:last-of-type { border-bottom: 0; }
.net-head h2 { font-size: 22px; display: flex; align-items: center; gap: 9px; }
.net-head h2 i { color: var(--blue); font-size: 24px; }
.net-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; margin-top: 18px; align-items: start; }
.net-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 86px; }
.net-form-card h3 { font-size: 17px; }
.net-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.posted-note, .sos-reveal { background: var(--green-tint); border: 1px solid rgba(22,163,74,.3); color: var(--green-dark); border-radius: 9px; padding: 10px 12px; font-size: 13px; margin-bottom: 12px; }
.sos-reveal { margin: 12px 0 0; }
.sos-reveal i, .posted-note i { vertical-align: -2px; margin-right: 4px; }

.sos-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; margin-bottom: 14px; }
.sos-card.covered { border-left-color: var(--green); opacity: .85; }
.sos-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.sos-status { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 11px; border-radius: 999px; }
.sos-status.open { background: #FEF3E2; color: #92400E; }
.sos-status.covered { background: var(--green-tint); color: var(--green-dark); }
.sos-when { font-size: 12.5px; color: var(--slate); display: flex; align-items: center; gap: 5px; }
.sos-loc { font-size: 15.5px; margin: 10px 0 3px; display: flex; align-items: center; gap: 6px; }
.sos-loc i { color: var(--amber); }
.sos-op { font-size: 13px; color: var(--slate); font-weight: 500; }
.sos-card p { font-size: 14px; color: var(--ink); margin: 8px 0 12px; }
.sos-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.sos-offers { font-size: 13px; color: var(--green-dark); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.sos-foot .btn { padding: 8px 16px; font-size: 13.5px; }

.thread-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.thread-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.cat-chip { font-size: 11px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; background: #E6F0FE; color: var(--blue-deep); padding: 3px 10px; border-radius: 999px; }
.thread-when { font-size: 12px; color: var(--slate); }
.thread-card h3 { font-size: 17px; margin: 10px 0 3px; }
.thread-author { font-size: 12.5px; color: var(--slate); font-weight: 500; margin-bottom: 8px; }
.thread-card > p { font-size: 14px; color: var(--ink); }
.replies { margin: 12px 0 0; }
.reply { border-left: 2px solid var(--line); padding: 6px 0 6px 12px; margin-top: 8px; }
.reply b { font-size: 13px; display: block; color: var(--ink); }
.reply span { font-size: 13.5px; color: var(--slate); }
.reply-form { display: flex; gap: 8px; margin-top: 12px; }
.reply-form input { flex: 1; font-family: inherit; font-size: 14px; padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 8px; }
.reply-form .btn { padding: 9px 16px; font-size: 13.5px; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.resource-card i { font-size: 26px; color: var(--blue-deep); }
.resource-card h3 { font-size: 15.5px; margin: 8px 0 4px; }
.resource-card p { font-size: 13px; color: var(--slate); }

@media (max-width: 900px) {
  .net-grid { grid-template-columns: 1fr; }
  .net-form-card { position: static; }
  .resource-grid { grid-template-columns: 1fr; }
}

/* ---------- Depot news ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.news-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; background: #EDF1F7; color: var(--slate); margin-bottom: 10px; }
.news-tag.new { background: #E6F0FE; color: var(--blue-deep); }
.news-tag.up { background: var(--green-tint); color: var(--green-dark); }
.news-card h3 { font-size: 16px; margin-bottom: 6px; }
.news-card p { font-size: 13.5px; color: var(--slate); }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- network promo (dashboard) ---------- */
.net-promo { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--navy-800); color: #fff; border-radius: 14px; padding: 26px 30px; margin: 28px 0 0; }
.net-promo h3 { color: #fff; font-size: 20px; margin: 8px 0 6px; }
.net-promo p { color: #B9C8DE; font-size: 14.5px; max-width: 520px; }
.net-promo .btn { white-space: nowrap; }

/* ---------- operator zone identity (walled off from customer side) ---------- */
.op-ribbon { background: #0F2B52; color: #B9C8DE; border-bottom: 1px solid var(--line-navy); }
.op-ribbon i { color: var(--blue-light); }
.op-header { background: #071427; }
.op-tag { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #071427; background: var(--blue-light); padding: 2px 8px; border-radius: 6px; vertical-align: 2px; margin-left: 2px; }

/* ---------- guide FAQ ---------- */
.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 14px; }
.faq h3 { font-size: 17px; margin-bottom: 8px; color: var(--ink); }
.faq p { font-size: 15px; color: var(--slate); margin-bottom: 8px; }
.faq p b { color: var(--ink); }
.faq-cta { margin-top: 6px !important; margin-bottom: 0 !important; font-weight: 500; }
.faq-cta a { color: var(--blue-deep); font-weight: 600; }
.faq-cta i { color: var(--blue); vertical-align: -2px; }
.prose h2 { display: flex; align-items: center; gap: 8px; margin-top: 36px; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--navy-800); color: #fff; border-radius: 14px; padding: 26px 30px; margin-top: 30px; }
.cta-band h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.cta-band p { color: #B9C8DE; font-size: 14.5px; max-width: 460px; }
.cta-band .btn { white-space: nowrap; }

/* parametric fleet scenes: drop the old road overlay; fit inline svg in strips */
.carrier-photo::after { content: none; }
.photo-strip .fleet-img { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ================================================================
   OPERATOR ZONE THEME — deep wine burgundy & gold
   Applied via <body class="op-zone"> on operator-side pages only:
   operators, guide, dashboard, network (+ login when ?role=operator).
   Customer side keeps the navy/blue identity untouched.
   ================================================================ */
body.op-zone {
  --navy-900: #200510;
  --navy-800: #4A0A22;   /* true wine — pinkish burgundy */
  --navy-700: #611031;
  --navy-600: #7A1841;
  --blue: #C9A227;       /* gold */
  --blue-light: #E4C15C; /* light gold */
  --blue-deep: #8A6A1C;  /* gold on light backgrounds */
  --paper: #F9F4EC;      /* warm cream */
  --ink: #2B161B;
  --slate: #6E4C55;
  --line: #EADDD0;
  --line-navy: #75284E;
  --shadow: 0 10px 30px rgba(28, 6, 11, 0.13);
  --shadow-soft: 0 4px 14px rgba(28, 6, 11, 0.08);
}
/* gold buttons read best with dark espresso text */
body.op-zone .btn, body.op-zone .nav-cta { color: #2A1503; }
body.op-zone .btn.green { color: #fff; }
body.op-zone .btn.ghost { color: var(--white); }
body.op-zone .btn.ghost-light { color: var(--ink); }
/* warm the fixed greys of nav/footer */
body.op-zone .nav-links a { color: #EBC9D6; }
body.op-zone .nav-links a:hover, body.op-zone .nav-links a.active { color: var(--white); }
body.op-zone .footer { color: #E3BFCE; }
body.op-zone .op-ribbon { background: #611031; color: #EFCBD9; }
body.op-zone .op-header { background: #310617; }
body.op-zone .op-tag { color: #2A0710; }
body.op-zone .demo-ribbon { background: #F9EDE2; color: #7C2D12; border-bottom-color: #EFD8C2; }
/* welcome tag that marks the crossover into the operator zone */
.op-zone-flag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #E4C15C; background: rgba(228, 193, 92, 0.12);
  border: 1px solid rgba(228, 193, 92, 0.4);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------- mutual aid roster ---------- */
.aid-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; margin-bottom: 14px; }
.aid-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.aid-head b { font-size: 15.5px; color: var(--ink); }
.aid-base { font-size: 13px; color: var(--slate); white-space: nowrap; }
.aid-base i, .aid-radius i, .aid-contact i { vertical-align: -2px; margin-right: 4px; color: var(--blue-deep); }
.aid-radius { font-size: 13.5px; color: var(--slate); margin-top: 4px; }
.aid-offers { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 2px; }
.aid-chip { font-size: 11.5px; font-weight: 600; letter-spacing: .4px; color: var(--blue-deep); background: color-mix(in srgb, var(--blue) 12%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent); padding: 3px 10px; border-radius: 999px; }
.aid-card p { font-size: 14px; color: var(--ink); margin: 8px 0 10px; }
.aid-contact { font-size: 14px; font-weight: 600; color: var(--ink); }
.aid-demo { font-size: 11px; font-weight: 500; color: var(--slate); border: 1px dashed var(--line); padding: 1px 7px; border-radius: 999px; margin-left: 6px; vertical-align: 1px; }

/* offer checkboxes inside the aid form — normal text, not field-label caps */
.field .offer-check { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink); text-align: left; margin: 0; }
.field .offer-check input { margin-top: 3px; flex: none; width: auto; }

/* photo thumbnails (sample listings) — same box as the SVG scenes */
img.fleet-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* more-details link on carrier cards */
.card-more { display: block; text-align: center; margin-top: 9px; font-size: 13.5px; font-weight: 600; color: var(--blue-deep); }
.card-more:hover { color: var(--blue); }
.card-more i { vertical-align: -2px; }

/* ---------- unclaimed directory rows ---------- */
.ucl-row { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 9px; }
.ucl-mono { flex: none; width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700)); color: var(--blue-light);
  font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .5px; }
.ucl-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ucl-main b { font-size: 15px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ucl-meta { font-size: 12.5px; color: var(--slate); }
.ucl-tag { flex: none; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--slate);
  border: 1px dashed var(--line); border-radius: 999px; padding: 3px 9px; }
.ucl-acts { flex: none; display: flex; gap: 8px; }
.ucl-acts .btn { padding: 8px 13px; font-size: 12.5px; }
@media (max-width: 720px) { .ucl-row { flex-wrap: wrap; } .ucl-acts { width: 100%; } .ucl-acts .btn { flex: 1; } .ucl-tag { display: none; } }

/* emergency pill */
.nav-911 { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#A61B2B,#D2352F);
  color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: .4px; padding: 9px 14px; border-radius: 999px;
  margin-left: 10px; white-space: nowrap; box-shadow: 0 4px 14px rgba(166,27,43,.35); }
.nav-911:hover { filter: brightness(1.1); }
.nav-911 i { font-size: 15px; }
.n911-s { display: none; }
@media (max-width: 900px) {
  .nav-911 { font-size: 11.5px; letter-spacing: .4px; padding: 8px 11px; gap: 5px; }
  .nav-911 i { font-size: 15px; }
  .n911-l { display: none; }
  .n911-s { display: inline; }
}

/* (hero shield watermark retired July 2026 — the station scene's pole emblem carries the brand now) */

/* directory state-chip picker */
.ucl-chip { background: var(--white); border: 1px solid var(--line); color: var(--slate); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all .12s; }
.ucl-chip:hover { border-color: var(--blue); color: var(--blue-deep); }
.ucl-chip.on { background: var(--navy-800); border-color: var(--navy-800); color: var(--blue-light); }

/* metro chips — gold-accented, distinct from state chips */
.ucl-chip.metro { border-color: var(--blue); color: var(--blue-deep); font-weight: 700; }
.ucl-chip.metro i { font-size: 13px; vertical-align: -2px; }
.ucl-chip.metro.on { background: var(--blue); border-color: var(--blue); color: #101C2B; }

/* ================= MOTION PACKAGE (July 2026) ================= */
/* city chips under state browse */
.ucl-cities-label { font-size: 11px; color: var(--slate); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-right: 2px; }
.ucl-chip.city { border-color: var(--blue); color: var(--blue-deep); }
.ucl-chip.city.on { background: var(--blue); color: #101C2B; }

/* 1) scroll-reveal: elements fade up as they enter the viewport */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* 2) gold shimmer sweep across primary buttons on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-20deg); transition: left .5s ease; pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* 3) consistent card lift on hover */
.carrier-card, .ucl-row, .trip-card, .route-card, .panel-card, .depot-card {
  transition: transform .22s ease, box-shadow .22s ease;
}
.carrier-card:hover, .trip-card:hover, .route-card:hover, .depot-card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,18,36,.16);
}
.ucl-row:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(6,18,36,.12); }

/* 4) the coach rolls across the hero (slow ambient loop) */
.hero-coach {
  position: absolute; bottom: 26px; left: 0; width: 250px; opacity: .42; pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(231,182,93,.25));
  animation: coach-drive 44s linear infinite;
}
@keyframes coach-drive {
  0%   { transform: translateX(-240px); }
  100% { transform: translateX(calc(100vw + 60px)); }
}

/* 5) respect visitors who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-coach { animation: none; opacity: 0; }
  .btn::after { display: none; }
  * { scroll-behavior: auto !important; }
}

/* ================= WIZARD (one question at a time) ================= */
.search-panel.btw-host { display: block; padding: 24px 26px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.8) 42%, rgba(255,255,255,.97) 70%, #FFFFFF 100%);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.btw-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.btw-pct { font-size: 12px; font-weight: 700; color: var(--blue-deep); letter-spacing: .8px; white-space: nowrap; }
.btw-bar { flex: 1; height: 8px; background: #EDE6D4; border-radius: 999px; overflow: hidden; }
.btw-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 999px;
  transition: width .45s cubic-bezier(.22,.9,.36,1); }
.btw-q { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.btw-input { width: 100%; font-family: var(--font-body); font-size: 17px; padding: 15px 16px;
  border: 1.5px solid var(--line); border-radius: 11px; outline: none; transition: border-color .15s, box-shadow .15s; }
.btw-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(200,148,56,.18); }
.btw-input.err { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.15); }
.btw-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; gap: 10px; }
.btw-acts { display: inline-flex; gap: 10px; }
.btw-back { background: none; border: 0; color: var(--slate); font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 4px; }
.btw-back:hover { color: var(--ink); }
.btw-hint { font-size: 12px; color: var(--slate); text-align: center; margin-top: 8px; }

/* the scroll wheels */
.btw-wheelrow { display: flex; gap: 8px; justify-content: center; }
.btw-wheel { height: 200px; overflow-y: auto; scroll-snap-type: y mandatory; text-align: center; position: relative;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--white);
  -webkit-mask-image: linear-gradient(transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(transparent, #000 28%, #000 72%, transparent);
  scrollbar-width: none; flex: 1; max-width: 220px; }
.btw-wheel::-webkit-scrollbar { display: none; }
.btw-w-full { max-width: 340px; }
.btw-w-d { max-width: 90px; }
.btw-w-y { max-width: 110px; }
.btw-pad { height: 80px; }
.btw-wi { height: 40px; line-height: 40px; scroll-snap-align: center; font-size: 15.5px; color: var(--slate);
  cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 10px;
  transition: color .15s, font-size .15s; }
.btw-wi.sel { color: var(--blue-deep); font-weight: 700; font-size: 17px; }
@media (max-width: 560px) {
  .btw-wheel { height: 160px; }
  .btw-pad { height: 60px; }
  .search-panel.btw-host { padding: 18px 16px 20px; }
}

/* ================= PHOTOGRAPHIC HERO (homepage) ================= */
.hero {
  background:
    linear-gradient(180deg, rgba(5,16,28,.82) 0%, rgba(5,16,28,.58) 30%, rgba(5,16,28,.46) 52%, rgba(5,16,28,.55) 78%, rgba(5,16,28,.74) 100%),
    url("hero/station-hero.jpg") center 42% / cover no-repeat;
  min-height: 600px;
  display: flex; align-items: center;
}
.hero::before { display: none; }              /* photo replaces the line-art scene here */
.hero-inner { position: relative; z-index: 2; }
.hero h1 { text-shadow: 0 2px 20px rgba(3,10,20,.85), 0 1px 4px rgba(3,10,20,.6); }
.hero .lead { color: #D7E2F2; text-shadow: 0 1px 10px rgba(3,10,20,.9);
  background: rgba(5,16,28,.46); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 14px 22px; border-radius: 14px; }
@media (max-width: 760px) {
  .hero { min-height: 480px; background-position: center 46%; }
}

/* hero CTA pair lives at the bottom-right of the hero photo */
.hero-cta { position: absolute; right: 4%; bottom: 92px; margin: 0; z-index: 3; }
@media (max-width: 760px) { .hero-cta { position: static; margin-top: 20px; justify-content: center; } }

/* never show an empty white bar if the search wizard fails to boot */
.search-panel.btw-host:has(> .btw-mount:empty) { display: none; }

/* Driver app link in the Operator Zone nav */
.nav-driverapp { color: var(--blue-light) !important; font-weight: 600; }
