:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ede8;
  --fg-muted: #8a8780;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: #2a2a2a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* SHARED */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  padding: 80px 40px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-stat-row {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-quote-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 28px 28px 28px 24px;
  margin-top: 40px;
}
.quote-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 12px;
}
.quote-attr {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* WHAT */
.what {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.vehicle-card {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border);
}
.vehicle-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.vehicle-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.vehicle-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* DIFFERENCE */
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.diff-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diff-item {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.diff-item strong { color: var(--fg); }
.diff-item div { color: var(--fg-muted); }
.diff-marker {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-callout {
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 32px 28px;
  margin-top: 44px;
}
.callout-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.callout-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.callout-per {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-muted);
}
.callout-note {
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 6px;
}
.callout-detail {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* EQUIPMENT */
.equip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.equip-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.equip-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
}
.equip-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.equip-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* HOW */
.how {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.step {}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 96px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 24px;
}
.closing-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark-sm {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .what, .diff-inner, .equip-inner, .how, .closing {
    padding: 56px 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stat-row { gap: 24px; }
  .hero-aside { display: none; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .diff-callout { margin-top: 0; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .step-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav { padding: 0 24px; }
}

@media (max-width: 480px) {
  .equip-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 16px; }
}