:root {
  --bg: #0c0b0a;
  --bg-warm: #141210;
  --bg-card: #1a1816;
  --fg: #e8e2d8;
  --fg-muted: #9a9080;
  --fg-dim: #6b6358;
  --accent: #c4842d;
  --accent-light: #d4a04a;
  --accent-glow: rgba(196, 132, 45, 0.15);
  --border: #2a2520;
  --border-light: #3a3530;
  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1100px;
  --font: 'Outfit', -apple-system, sans-serif;
  --mono: 'DM Mono', 'SF Mono', monospace;
}

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

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

/* ── CTA Buttons ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.btn-hero-primary:hover { background: var(--accent-light); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.btn-hero-secondary:hover { border-color: var(--fg-dim); color: var(--fg); }

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 0;
  position: relative;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,132,45,0.08) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  display: inline-block;
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

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

.lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 640px;
  font-weight: 300;
}

.hero-stat-strip {
  max-width: var(--max-w);
  margin: 80px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

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

/* ── Problem ── */
.problem {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-headline {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--fg);
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.problem-kicker {
  color: var(--accent-light) !important;
  font-weight: 500 !important;
  font-style: italic;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-icon {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.problem-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.55;
}

/* ── Features ── */
.features {
  padding: 120px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-subtitle {
  font-size: 1.3rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  font-weight: 300;
  max-width: 500px;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-light);
}

.feature-card-large {
  grid-column: 1 / -1;
  background: 
    linear-gradient(135deg, var(--accent-glow) 0%, transparent 40%),
    var(--bg-card);
}

.feature-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── How It Works ── */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.hiw-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}

.hiw-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.hiw-step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
}

.hiw-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.hiw-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.55;
}

.hiw-connector {
  width: 32px;
  min-width: 32px;
  height: 2px;
  background: var(--border-light);
  align-self: center;
  margin-top: -20px;
}

/* ── Closing ── */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196,132,45,0.06) 0%, transparent 60%),
    var(--bg);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

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

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stat-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem {
    padding: 80px 20px;
  }

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

  .features {
    padding: 80px 20px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: 1;
  }

  .how-it-works {
    padding: 80px 20px;
  }

  .hiw-steps {
    flex-direction: column;
    gap: 16px;
  }

  .hiw-connector {
    width: 2px;
    height: 24px;
    min-width: unset;
    align-self: center;
    margin-top: 0;
  }

  .closing {
    padding: 80px 20px;
  }

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

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

  .problem-headline {
    font-size: 1.4rem;
  }

  .closing h2 {
    font-size: 1.5rem;
  }
}