:root {
  --bg: #0A0F1E;
  --bg-2: #111827;
  --surface: #1A2235;
  --lime: #D9F326;
  --lime-dim: #B8D920;
  --text: #F0F4FF;
  --text-muted: #8892A4;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
  background: rgba(217, 243, 38, 0.12);
  border: 1px solid rgba(217, 243, 38, 0.25);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav-link:hover { color: var(--text); }

/* Section labels */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lime);
  margin-bottom: 12px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 243, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.big-quote {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--lime);
  border-radius: 4px;
  padding: 40px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 14px;
  color: var(--text-muted);
}

/* How it works */
.how-it-works {
  background: var(--bg-2);
  padding: 80px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 56px;
  line-height: 1.1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--lime);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Playbooks */
.playbooks {
  padding: 80px 40px;
}
.playbooks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.playbook-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.2s;
}
.playbook-card:hover {
  border-color: rgba(217, 243, 38, 0.3);
}
.playbook-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.playbook-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.playbook-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.playbook-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
  background: rgba(217, 243, 38, 0.1);
  border: 1px solid rgba(217, 243, 38, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Credibility */
.credibility {
  background: var(--bg-2);
  padding: 80px 40px;
}
.cred-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cred-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.cred-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.cred-stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  min-width: 80px;
  line-height: 1;
}
.cred-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* Closing */
.closing {
  background: var(--bg);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(217, 243, 38, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.05;
}
.closing p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-cta {
  display: inline-block;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.closing-cta:hover { background: var(--lime-dim); }

/* Pricing */
.pricing-section {
  background: var(--bg);
  padding: 80px 40px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 80px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(217,243,38,0.15), 0 20px 60px rgba(0,0,0,0.3);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
  align-items: center;
}
.pricing-features li .check {
  color: var(--lime);
  font-weight: 700;
}
.pricing-btn {
  display: block;
  text-align: center;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.pricing-btn:hover { background: var(--lime-dim); }
.pricing-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.pricing-btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* FAQ */
.pricing-faq h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 28px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 280px;
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner, .cred-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .playbooks-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 24px 80px; }
  .how-it-works, .playbooks, .credibility { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .site-header { padding: 16px 24px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .playbooks-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1.5px; }
  .big-quote { padding: 28px; }
  .quote-text { font-size: 18px; }
}