/* === BASE === */
:root {
  --bg: #0A0A0A;
  --bg-card: #111113;
  --bg-card-hover: #161618;
  --fg: #F5F5F0;
  --fg-muted: #8A8A8A;
  --accent: #FFB800;
  --accent-dim: rgba(255, 184, 0, 0.12);
  --accent-glow: rgba(255, 184, 0, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --border-bright: rgba(255, 255, 255, 0.1);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
}

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

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

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

/* === HERO === */
.hero {
  padding: 80px 0 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 28px;
}

.highlight {
  color: var(--accent);
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  color: #AAAAAA;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* === HERO VISUAL === */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.car-frame {
  position: relative;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,184,0,0.05) 0%, transparent 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
}

.car-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.4), transparent);
}

.car-svg {
  width: 100%;
  height: auto;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius-sm);
}

.price-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 1px;
}

.price-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* === HERO STATS BAR === */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === SECTION SHARED === */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--fg);
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

/* === APPROACH === */
.approach {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* First card spans full width */
.path-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 36px;
}

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.path-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
}

.card-badge {
  position: absolute;
  top: -1px;
  left: 28px;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}

.card-icon {
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--fg);
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.card-metrics {
  display: flex;
  gap: 20px;
  margin: 8px 0;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.metric-key {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.card-list li {
  font-size: 13px;
  color: #AAAAAA;
  padding-left: 16px;
  position: relative;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.card-target {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #AAAAAA;
}

.card-target strong {
  color: var(--accent);
}

/* === NUMBERS === */
.numbers {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0D0D0F 0%, var(--bg) 100%);
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.numbers-text {
  position: sticky;
  top: 80px;
}

.numbers-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.numbers-title em {
  font-style: normal;
  color: var(--accent);
}

.numbers-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.num-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.num-card--highlight {
  background: var(--accent-dim);
  border-color: rgba(255,184,0,0.25);
}

.num-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.num-big {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--fg);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.num-card--highlight .num-big {
  color: var(--accent);
}

.num-detail {
  font-size: 12px;
  color: var(--fg-muted);
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 40px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,184,0,0.04) 0%, transparent 60%);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.manifesto-sub {
  font-size: 18px;
  color: #AAAAAA;
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-cta {
  padding: 24px 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius);
  font-size: 15px;
  color: #AAAAAA;
  max-width: 520px;
  margin: 0 auto;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px 80px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.close-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.close-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.close-item p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.closing-note {
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--fg-muted);
  display: inline-block;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }

  .hero-stats {
    padding: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider { display: none; }
  .stat { padding: 0; flex: 0 0 45%; }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .path-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .numbers-text { position: static; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }

  .closing-grid { grid-template-columns: 1fr; }

  .approach, .numbers, .manifesto, .closing {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .hero { padding-top: 48px; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .numbers-grid { grid-template-columns: 1fr; }
  .hero-tags { gap: 6px; }
}
