:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --fg-primary: #f5f0e8;
  --fg-secondary: #a39e93;
  --fg-muted: #6b6560;
  --accent: #e8a838;
  --accent-glow: rgba(232, 168, 56, 0.15);
  --accent-soft: #c4893a;
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232, 168, 56, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 168, 56, 0.04) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
  border: 1px solid rgba(232, 168, 56, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg-primary);
}

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

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-secondary);
  max-width: 620px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

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

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-label,
.features-label,
.how-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
  max-width: 650px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(232, 168, 56, 0.25);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-secondary);
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.features-inner {
  max-width: 800px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}

.feature-row:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  min-width: 36px;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-secondary);
}

/* ===== HOW ===== */
.how {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-marker {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-secondary);
}

.how-connector {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-left: 22px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 24px;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 168, 56, 0.08) 0%, transparent 70%),
    var(--bg-primary);
  text-align: center;
}

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

.closing-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.closing-statement p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-secondary);
  margin-bottom: 16px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent) !important;
  margin-top: 32px !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .feature-row {
    flex-direction: column;
    gap: 12px;
  }

  .feature-number {
    min-width: auto;
  }

  .problem,
  .features,
  .how,
  .closing {
    padding: 80px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .lede {
    font-size: 16px;
  }

  .problem-card {
    padding: 24px 20px;
  }
}