:root {
  --bg: #0c0f14;
  --bg-elevated: #141820;
  --bg-card: #1a1f2a;
  --fg: #e8eaed;
  --fg-muted: #8b919e;
  --accent: #3dd68c;
  --accent-glow: rgba(61, 214, 140, 0.15);
  --accent-dark: #2bb872;
  --warm: #f5a623;
  --coral: #ff6b6b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
}

* { 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-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── HERO ─── */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(61, 214, 140, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 700px;
  margin-bottom: 24px;
}

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

.hero-lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.problem-left p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}

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

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

/* ─── WHAT YOU GET ─── */
.deliverables {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.deliverables h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.deliverables .section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 500px;
}

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

.deliverable-card {
  padding: 28px 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}

.deliverable-card:hover {
  border-color: rgba(61, 214, 140, 0.2);
}

.deliverable-count {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.deliverable-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

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

/* ─── NICHES ─── */
.niches {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.niches h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.niches .section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.niche-tag {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.2s;
}

.niche-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── PRICING ─── */
.pricing {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.pricing .section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 460px;
}

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

.price-card {
  padding: 32px 28px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(61, 214, 140, 0.06) 0%, var(--bg-elevated) 100%);
  position: relative;
}

.price-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-tier {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

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

/* ─── FOOTER ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .niche-tags { gap: 8px; }
  .niche-tag { padding: 10px 18px; font-size: 0.88rem; }
  .footer-content { flex-direction: column; gap: 12px; }
}
/* ─── HERO CTA ─── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-cta-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

/* ─── SITE NAV ─── */
.site-nav {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

.site-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand-lp {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-brand-lp span { color: var(--accent); }

.nav-items {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-items a {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-items a:hover { color: var(--fg); }

.nav-cta-lp {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem !important;
  transition: background 0.2s;
}

.nav-cta-lp:hover {
  background: var(--accent-dark);
}

/* ─── PRICING CARD BUTTONS ─── */
.btn-price {
  display: block;
  width: 100%;
  padding: 13px 20px;
  margin-top: 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.btn-price-default {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--fg);
}

.btn-price-default:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-price-featured {
  background: var(--accent);
  color: var(--bg);
}

.btn-price-featured:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.pricing-sub-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-sub-note a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-sub-note a:hover {
  text-decoration: underline;
}
