:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f5f0eb;
  --fg-muted: #9a958f;
  --accent: #ff5c35;
  --accent-glow: rgba(255, 92, 53, 0.15);
  --accent-light: #ff8c6b;
  --gold: #e8c547;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw 100px;
  position: relative;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 40%, var(--accent-glow), transparent),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(232, 197, 71, 0.06), transparent),
    var(--bg);
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--fg);
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  max-width: 520px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

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

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-muted);
  transition: all 0.3s ease;
}

.price-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.price-tag.accent {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ========== HOW IT WORKS ========== */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.section-label.light {
  color: var(--gold);
}

.how-it-works {
  padding: 100px 10vw;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  padding-right: 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.step p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== FOR MODELS ========== */
.for-models {
  padding: 100px 10vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.models-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.models-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.models-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

.model-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.model-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.model-stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.stat-label {
  font-size: 15px;
  color: var(--fg-muted);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.stat-value.highlight-text {
  color: var(--gold);
  font-size: 28px;
}

/* ========== NUMBERS ========== */
.numbers {
  padding: 100px 10vw;
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.number-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 80px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.number-desc {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 240px;
}

.numbers-kicker {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  max-width: 600px;
  line-height: 1.4;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 10vw;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 50%, var(--accent-glow), transparent),
    var(--bg);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.closing-text.small {
  font-size: 16px;
  font-style: italic;
  color: var(--accent-light);
  margin-bottom: 0;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

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

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-price-tags {
    gap: 8px;
  }

  .price-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .how-it-works,
  .for-models,
  .numbers,
  .closing {
    padding: 64px 24px;
  }

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

  .models-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .model-card {
    padding: 28px;
  }

  .closing h2 {
    font-size: 36px;
  }

  .numbers-kicker {
    font-size: 18px;
  }

  .site-footer {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }
}