:root {
  --bg: #0d0f1a;
  --bg-secondary: #11142a;
  --fg: #f0ead8;
  --fg-muted: rgba(240, 234, 216, 0.55);
  --accent: #e8a44a;
  --accent-dim: rgba(232, 164, 74, 0.15);
  --road: #c8a76a;
  --road-line: #f0ead8;
  --sky-top: #1a1f3a;
  --sky-mid: #2d1b4e;
  --sky-bottom: #8b3a1a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(13,15,26,0.9) 0%, transparent 100%);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav__mark {
  font-size: 1.2rem;
  color: var(--accent);
}
.nav__name { color: var(--fg); }
.nav__badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(240,234,216,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--sky-top) 0%, var(--sky-mid) 45%, var(--sky-bottom) 75%, #c04a1a 100%);
  z-index: 0;
}
.hero__road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, #1a1006 0%, transparent 100%);
  z-index: 1;
}
.hero__road::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 65%;
  background: repeating-linear-gradient(
    to bottom,
    var(--road-line) 0px,
    var(--road-line) 30px,
    transparent 30px,
    transparent 60px
  );
  opacity: 0.7;
}
.hero__road::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(to right, transparent 0%, rgba(232,164,74,0.05) 50%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 8rem 3rem 5rem;
  margin-left: 8%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(240,234,216,0.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240,234,216,0.1);
}
.hero__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(240,234,216,0.15);
}

/* ── PROBLEM ──────────────────────────────────────── */
.problem {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(232,164,74,0.12);
  border-bottom: 1px solid rgba(232,164,74,0.12);
}
.problem__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.problem__label,
.features__label,
.route66__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.problem__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.problem__body {
  font-size: 1rem;
  color: rgba(240,234,216,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.problem__quote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.problem__quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.problem__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(240,234,216,0.8);
  line-height: 1.6;
}

/* ── FEATURES ─────────────────────────────────────── */
.features {
  background: var(--bg);
}
.features__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 3rem;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 0.5rem;
}
.feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,164,74,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.feature:hover {
  border-color: rgba(232,164,74,0.3);
  background: rgba(232,164,74,0.04);
}
.feature__icon {
  margin-bottom: 1.25rem;
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.feature__body {
  font-size: 0.9rem;
  color: rgba(240,234,216,0.55);
  line-height: 1.7;
}

/* ── ROUTE66 SECTION ─────────────────────────────── */
.route66 {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(232,164,74,0.08);
}
.route66__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.route66__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.route66__body {
  font-size: 0.95rem;
  color: rgba(240,234,216,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.route66__stops-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.route66__stop-list { display: flex; flex-direction: column; gap: 0; }
.route66__stop {
  display: flex;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(240,234,216,0.06);
  align-items: baseline;
}
.route66__stop:first-child { border-top: 1px solid rgba(240,234,216,0.06); }
.route66__stop-city {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 90px;
  flex-shrink: 0;
}
.route66__stop-desc {
  font-size: 0.82rem;
  color: rgba(240,234,216,0.5);
  line-height: 1.5;
}

/* ── CLOSING ─────────────────────────────────────── */
.closing {
  background: var(--bg);
  text-align: center;
}
.closing__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 3rem;
}
.closing__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.closing__body {
  font-size: 1rem;
  color: rgba(240,234,216,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.closing__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 2rem;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: #0a0c15;
  border-top: 1px solid rgba(232,164,74,0.08);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.footer__mark { color: var(--accent); font-size: 1.1rem; }
.footer__tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  flex: 1;
}
.footer__meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(240,234,216,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__badge { display: none; }
  .hero__content { padding: 7rem 1.5rem 4rem; margin-left: 0; }
  .hero__headline { font-size: 2rem; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-num { font-size: 1.4rem; }
  .problem__inner, .features__inner { padding: 4rem 1.5rem; }
  .route66__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .closing__inner { padding: 5rem 1.5rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hero__stat-divider { display: none; }
}