:root {
  --bg: #f5f2eb;
  --fg: #1c1c1c;
  --green: #1a3a2a;
  --amber: #c9972b;
  --muted: #7a7a72;
  --surface: #ece9e1;
  --border: #d4cfc6;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--green);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Route Map Visualization */
.hero-visual {
  position: relative;
}
.route-map {
  background: var(--green);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 24px 64px rgba(26, 58, 42, 0.2);
}
.route-node {
  display: flex;
  align-items: center;
  gap: 16px;
}
.node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201, 151, 43, 0.5);
}
.node-label {
  display: flex;
  flex-direction: column;
}
.node-city {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.node-state {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.route-line {
  display: flex;
  align-items: center;
  padding-left: 7px;
}
.route-dashes {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(201,151,43,0.6) 0,
    rgba(201,151,43,0.6) 8px,
    transparent 8px,
    transparent 16px
  );
}
.route-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--amber);
  flex-shrink: 0;
  margin-left: 4px;
}
.route-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--amber);
}
.stat-unit {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 8px 16px;
  background: rgba(26, 58, 42, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf6b;
  box-shadow: 0 0 6px #3ecf6b;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 16px;
}

/* CORRIDOR */
.corridor {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.corridor-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.corridor-head {
  max-width: 600px;
  margin-bottom: 56px;
}
.corridor-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green);
  margin-bottom: 16px;
}
.corridor-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}
.corridor-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fact {
  border-left: 3px solid var(--amber);
  padding-left: 24px;
}
.fact-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.fact-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* HOW IT WORKS */
.how {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.how h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green);
  margin-bottom: 56px;
  max-width: 500px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  padding: 28px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step-title {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  background: var(--green);
  padding: 80px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-icon {
  margin-bottom: 4px;
}
.feature h3 {
  font-size: 20px;
  color: #fff;
}
.feature p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--green);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--green);
}
.footer-tag {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .route-map { display: none; }
  .corridor-facts { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .nav, .hero, .how, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .corridor { padding: 60px 24px; }
  .features { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}