:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #e8e8e8;
  --fg-muted: #888;
  --fg-dim: #555;
  --accent: #e07a2f;
  --accent-glow: rgba(224, 122, 47, 0.15);
  --accent-light: #f0a060;
  --border: #222;
  --radius: 12px;
  --max-width: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at 30% 20%, var(--accent-glow) 0%, transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 800px;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

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

/* ---- PROBLEM ---- */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.problem-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}

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

.problem-highlight {
  color: var(--accent) !important;
  font-weight: 500;
  font-size: 1.1rem !important;
  margin-top: 8px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.pain-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  min-width: 28px;
}

.pain-text {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---- HOW ---- */
.how {
  padding: 120px 24px;
  border-bottom: 1px solid var(--border);
}

.how h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 64px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

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

.step-arrow {
  font-size: 1.5rem;
  color: var(--fg-dim);
  margin-top: 60px;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.verticals h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
  max-width: 600px;
}

.vert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.vert-card:hover {
  border-color: #333;
}

.vert-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(224,122,47,0.06) 0%, var(--bg-card) 100%);
}

.vert-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 16px;
}

.vert-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.vert-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  line-height: 1.7;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  padding: 32px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  min-width: 220px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-desc {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.price-or {
  color: var(--fg-dim);
  font-size: 0.9rem;
  font-style: italic;
}

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

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

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-note {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

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

  .hero-stat-row {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

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

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .step {
    max-width: 100%;
  }

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

  .pricing-row {
    flex-direction: column;
    gap: 16px;
  }

  .price-card {
    min-width: 100%;
  }

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

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