:root {
  --bg: #0a0e1a;
  --bg-alt: #0f1524;
  --bg-card: #131929;
  --bg-card-hover: #181f30;
  --fg: #f0f2f7;
  --fg-muted: #8892a4;
  --fg-faint: #525d73;
  --accent: #7b5eff;
  --accent-dark: #6244e8;
  --accent-glow: rgba(123, 94, 255, 0.15);
  --accent-glow-strong: rgba(123, 94, 255, 0.25);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(123, 94, 255, 0.3);
  --nav-height: 64px;
  --max-width: 1160px;
  --section-pad: 96px 24px;
}

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

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

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

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  color: var(--fg); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  font-size: 0.875rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--border-accent);
  border-radius: 6px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-cta:hover { background: var(--accent-glow); border-color: var(--accent); }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-height) + 80px) 24px 100px;
  max-width: var(--max-width); margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 500; color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--fg);
  margin-bottom: 24px; max-width: 680px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem; color: var(--fg-muted);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9375rem;
  font-weight: 600; padding: 14px 28px;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 var(--accent-glow-strong);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 24px var(--accent-glow-strong);
}
.btn-primary:active { transform: scale(0.98); }
.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-cta-hero {
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow-strong), 0 4px 16px rgba(123, 94, 255, 0.3);
  animation: cta-glow 2.5s ease-in-out infinite;
}
.btn-cta-hero:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 32px rgba(123, 94, 255, 0.5);
  animation: none;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow-strong); }
  50% { box-shadow: 0 0 0 8px rgba(123, 94, 255, 0); }
}
.btn-secondary {
  display: inline-block; background: transparent; color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif; font-size: 0.9375rem;
  font-weight: 500; padding: 14px 24px;
  border-radius: 8px; text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { color: var(--fg); border-color: var(--fg-faint); background: rgba(255,255,255,0.03); }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; color: var(--fg-faint); font-weight: 500;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--fg-faint); flex-shrink: 0;
}
.hero-image-wrap {
  margin-top: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px var(--accent-glow);
}
.hero-image-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* ── CATEGORIES ──────────────────────────────── */
.categories { background: var(--bg-alt); padding: var(--section-pad); }
.categories-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--fg);
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 56px; max-width: 520px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cat-card:hover { border-color: var(--border-accent); background: var(--bg-card-hover); transform: translateY(-2px); }
.cat-icon { font-size: 1.75rem; line-height: 1; }
.cat-name { font-size: 0.9375rem; font-weight: 600; color: var(--fg); }
.cat-commission {
  font-size: 0.75rem; font-weight: 500; color: var(--accent);
  display: flex; align-items: center; gap: 5px;
}
.cat-commission::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: 0.7;
}
.categories-cta {
  margin-top: 48px; text-align: center;
}

/* ── HOW IT WORKS ─────────────────────────────── */
.how { background: var(--bg); padding: var(--section-pad); }
.how-inner { max-width: var(--max-width); margin: 0 auto; }
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-bottom: 56px;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 32px;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-size: 3rem; font-weight: 800; color: var(--accent);
  opacity: 0.18; line-height: 1; margin-bottom: 24px;
}
.step-title {
  font-size: 1rem; font-weight: 700; color: var(--fg);
  margin-bottom: 12px;
}
.step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }
.how-cta {
  display: flex; align-items: center; gap: 24px;
  padding: 32px 40px; background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
}
.how-cta-text { flex: 1; }
.how-cta-text p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.6; }
.how-cta-text strong { color: var(--fg); }

/* ── FEATURED OFFER ──────────────────────────── */
.featured { background: var(--bg-alt); padding: var(--section-pad); }
.featured-inner { max-width: var(--max-width); margin: 0 auto; }
.featured-card {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-accent);
  border-radius: 12px; padding: 48px;
}
.featured-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: 16px; padding: 5px 12px;
  font-size: 0.72rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px; width: fit-content;
}
.featured-title {
  font-size: 1.4rem; font-weight: 700; color: var(--fg);
  margin-bottom: 12px;
}
.featured-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 24px; max-width: 480px; }
.featured-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.featured-tag {
  font-size: 0.8rem; font-weight: 500; color: var(--fg-faint);
  background: rgba(255,255,255,0.04); padding: 6px 12px;
  border-radius: 6px; border: 1px solid var(--border);
}
.featured-cta { text-align: right; flex-shrink: 0; }

/* ── SOCIAL PROOF ───────────────────────────── */
.social { background: var(--bg); padding: var(--section-pad); }
.social-inner { max-width: var(--max-width); margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.proof-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.15s;
}
.proof-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.proof-stars { color: #f5b800; margin-bottom: 16px; letter-spacing: 2px; font-size: 0.875rem; }
.proof-quote { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 20px; }
.proof-quote strong { color: var(--fg); }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-glow); display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.proof-name { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.proof-role { font-size: 0.75rem; color: var(--fg-faint); }

/* ── FINAL CTA ──────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #1a1040 100%);
  padding: 100px 24px; text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--fg);
  margin-bottom: 16px;
}
.cta-sub { font-size: 1.0625rem; color: var(--fg-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-section .btn-primary { font-size: 1rem; padding: 16px 36px; }
.cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--fg-faint); }

/* ── STICKY CTA BAR ─────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-accent);
  padding: 14px 24px;
  z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 0.9rem; color: var(--fg-muted); }
.sticky-cta-text strong { color: var(--fg); }
.sticky-cta .btn-primary {
  padding: 12px 28px; font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── TRUST SIGNALS BANNER ───────────────────── */
.trust-banner {
  background: linear-gradient(90deg, var(--accent-glow), transparent);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--fg-muted);
}
.trust-pill svg { color: var(--accent); }

/* ── FAQ SECTION ───────────────────────────── */
.faq { background: var(--bg-alt); padding: var(--section-pad); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--border-accent); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9375rem; font-weight: 600; color: var(--fg);
}
.faq-chevron { color: var(--fg-faint); font-size: 1.2rem; transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 12px; }
.faq-answer p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ── FTC DISCLOSURE ────────────────────────── */
.ftc-disclosure {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.75rem;
  color: var(--fg-faint);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

/* ── ENHANCED PROOF ────────────────────────── */
.earnings-highlight {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  margin-bottom: 8px;
}
.proof-earnings {
  font-size: 1.5rem; font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.proof-program {
  font-size: 0.75rem; color: var(--fg-faint); margin-bottom: 16px;
}
.urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 100, 50, 0.1);
  border: 1px solid rgba(255, 100, 50, 0.3);
  border-radius: 20px; padding: 5px 12px;
  font-size: 0.72rem; font-weight: 600; color: #ff6b4a;
}

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--bg-alt); padding: 48px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.footer-logo { font-weight: 700; font-size: 1.125rem; color: var(--fg); margin-bottom: 8px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; }
.footer-link { font-size: 0.8125rem; color: var(--fg-faint); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--fg-muted); }
.footer-legal { font-size: 0.75rem; color: var(--fg-faint); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-cta { text-align: left; }
  .hero-image-wrap img { height: 220px; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .how-cta { flex-direction: column; }
}