:root {
  --bg: #0c0c14;
  --bg-alt: #12121e;
  --fg: #f0ede6;
  --fg-muted: #9a9590;
  --accent: #c8f542;
  --accent-dim: rgba(200, 245, 66, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --card-bg: rgba(255,255,255,0.03);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 100px 60px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  position: relative;
}

.hero-label {
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.7;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px 12px 16px;
  background: var(--accent-dim);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Proof */
.proof {
  padding: 80px 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.proof-inner { max-width: 1100px; }

.proof-headline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

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

.proof-item {}

.proof-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.proof-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.proof-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* What */
.what {
  padding: 90px 60px;
  border-bottom: 1px solid var(--border);
}

.what-inner { max-width: 1100px; }

.what-label, .how-label, .pricing-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.what-headline, .how-headline, .pricing-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 600px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.what-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.what-card-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.what-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.what-card-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How */
.how {
  padding: 90px 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.how-inner { max-width: 1100px; }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

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

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

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 36px;
  padding-top: 4px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

.how-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  max-width: 460px;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 90px 60px;
  border-bottom: 1px solid var(--border);
}

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

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(200, 245, 66, 0.04);
}

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

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

.pricing-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-includes { display: flex; flex-direction: column; gap: 10px; }

.pricing-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-clarity {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Closing */
.closing {
  padding: 100px 60px;
  text-align: center;
  background: var(--bg-alt);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Footer */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 1100px; }

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(154, 149, 144, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  nav, .hero, .proof, .what, .how, .pricing, .closing, footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .proof-grid, .what-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-headline { font-size: 2.2rem; }
  .how-steps { gap: 0; }
  .step { padding: 24px 0; }
}

@media (max-width: 480px) {
  nav { padding: 20px 20px; }
  .hero, .proof, .what, .how, .pricing, .closing { padding: 60px 20px; }
  footer { padding: 32px 20px; }
  .pricing-card { padding: 24px; }
}