:root {
  --bg-primary: #0c0c0f;
  --bg-secondary: #141418;
  --bg-card: #1a1a21;
  --text-primary: #f0ede6;
  --text-secondary: #9a9690;
  --text-dim: #5e5b56;
  --accent: #d4a843;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --accent-glow: rgba(212, 168, 67, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --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(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

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

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

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2, .how h2, .personas h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 56px;
}

.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: 16px;
  padding: 36px 28px;
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 120px 24px;
  background: var(--bg-primary);
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  min-width: 80px;
  color: rgba(212, 168, 67, 0.3);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- PERSONAS ---- */
.personas {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.personas-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

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

.persona-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.persona-emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.persona-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing-section {
  padding: 140px 24px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-primary);
  text-align: center;
}

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

.closing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stat-row {
    flex-direction: column;
    gap: 24px;
  }

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

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

  .step-num {
    font-size: 2rem;
    min-width: auto;
  }

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

  .hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

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

  .closing-section {
    padding: 100px 20px;
  }
}
/* ---- CTA BUTTON ---- */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #0c0c0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }
