:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e1;
  --fg-muted: #8a8882;
  --fg-dim: #5a5955;
  --accent: #d4a853;
  --accent-glow: #d4a85322;
  --accent-bright: #f0c566;
  --border: #2a2a35;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

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

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

.stat-label {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 2px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-dim);
  display: block;
  margin-bottom: 24px;
}

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

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

/* ---- HOW ---- */
.how {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.how-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  min-width: 80px;
  line-height: 1;
  opacity: 0.6;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

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

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

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

.feature-item:last-child {
  border-bottom: none;
}

.feature-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 10px;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature-text p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 160px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

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

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ---- PRICING ---- */
.pricing {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 64px;
  max-width: 480px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 40px;
  position: relative;
}

.pricing-card-pro {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a160a 100%);
}

.pricing-pro-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a0a0f;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}

.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pricing-cadence {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-description {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.pf-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.pf-muted {
  color: var(--fg-dim);
  flex-shrink: 0;
  font-size: 14px;
}

.pricing-features li:has(.pf-muted) {
  color: var(--fg-dim);
}

.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 2px;
  transition: all 0.15s;
}

.pricing-cta-secondary {
  background: none;
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.pricing-cta-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.pricing-cta-primary {
  background: var(--accent);
  color: #0a0a0f;
  border: 1px solid transparent;
}

.pricing-cta-primary:hover {
  background: var(--accent-bright);
}

.pricing-guarantee {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 16px;
}

.pricing-compare {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 40px;
    min-height: 80vh;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

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

  .stat-divider {
    display: none;
  }

  .problem,
  .features {
    padding: 80px 24px;
  }

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

  .how {
    padding: 80px 24px;
  }

  .how-step {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
  }

  .step-number {
    font-size: 36px;
  }

  .feature-item {
    padding: 28px 0;
  }

  .pricing {
    padding: 80px 24px;
  }

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

  .pricing-card {
    padding: 40px 28px;
  }

  .closing {
    padding: 100px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }
}
