:root {
  --bg-deep: #0a0e1a;
  --bg-surface: #111827;
  --bg-card: #1a2035;
  --fg: #e8ecf4;
  --fg-muted: #8892a8;
  --fg-dim: #5a6480;
  --accent: #d4a853;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --accent-bright: #e8c06a;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ---- Typography ---- */

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

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 600; }

.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  background: var(--accent-glow);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: var(--radius);
}

.price-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.price-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.25rem;
  background: var(--accent);
  color: #0a0e1a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
}

.hero-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.closing-cta {
  margin-top: 2.5rem;
}

.hero-gradient {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- Problem Section ---- */

.problem {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.problem h2 {
  margin-bottom: 3.5rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

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

.problem-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  margin-bottom: 0.65rem;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- How It Works ---- */

.how {
  padding: 7rem 0;
}

.how h2 {
  margin-bottom: 4rem;
}

.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2rem;
}

.step {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}

.step:last-child { padding-bottom: 0; }

.step-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--fg-dim));
}

.step:last-child .step-line {
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.step-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.4);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 560px;
}

/* ---- Credibility ---- */

.credibility {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.credibility h2 {
  margin-bottom: 3.5rem;
}

.cred-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.cred-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

.cred-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.cred-text p:last-child {
  margin-bottom: 0;
}

/* ---- What You Get ---- */

.whatyouget {
  padding: 7rem 0;
}

.wyg-intro {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin: 1rem 0 3.5rem;
  max-width: 520px;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.wyg-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.wyg-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}

.wyg-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.1rem;
}

.wyg-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

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

.wyg-guarantee {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.03));
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
}

.guarantee-badge {
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.wyg-guarantee p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- Closing ---- */

.closing {
  padding: 8rem 0;
  text-align: center;
}

.closing h2 {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Footer ---- */

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 0.25rem;
}

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

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 3.5rem;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  .problem, .how, .credibility, .whatyouget {
    padding: 4.5rem 0;
  }

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

  .wyg-guarantee {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .closing {
    padding: 5rem 0;
  }

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

  .cred-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cred-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat {
    min-width: 140px;
  }

  .hero-price {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 2.5rem;
  }

  .steps {
    padding-left: 1rem;
  }

  .step {
    padding-left: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1.25rem 3rem;
  }

  .section-inner {
    padding: 0 1.25rem;
  }

  .problem-card {
    padding: 1.5rem;
  }

  .cred-stats {
    flex-direction: column;
  }
}