@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --border: #1e1e2e;
  --accent: #7c6dfa;
  --accent-glow: rgba(124, 109, 250, 0.25);
  --accent2: #f97066;
  --text: #e8e8f0;
  --muted: #7a7a94;
  --card-bg: #14141f;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 40px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,109,250,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  background: var(--surface);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #b79fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight-red {
  font-weight: 800;
  color: var(--accent2);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-subtext {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  font-weight: 400;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(124,109,250,0.4), 0 4px 32px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(124,109,250,0.6), 0 8px 48px rgba(124,109,250,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ── Shared Section Styles ── */
section { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  max-width: 540px;
}

/* ── Problem Section ── */
.problem-section { padding: 20px 0 80px; }

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

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.problem-card:hover {
  border-color: var(--accent2);
  background: rgba(249, 112, 102, 0.05);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.problem-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* ── Stats Bar ── */
.stats-bar { padding: 0 0 80px; }

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

.stat {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.stat:last-child { border-right: none; }
.stat:hover { background: #1a1a28; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { color: var(--muted); font-size: 14px; }

/* ── System Section ── */
.system-section { padding: 80px 0; }

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.sys-card {
  background: var(--card-bg);
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.sys-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.sys-card:hover::before { opacity: 1; }
.sys-card:hover { background: #16162b; }
.sys-card:last-child { border-right: none; }

.sys-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,109,250,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}

.sys-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.sys-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── How It Works Section ── */
.how-section { padding: 80px 0; }

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: background 0.25s, transform 0.25s;
}

.step-card:hover {
  background: #16162b;
  transform: translateY(-4px);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b79fff);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

/* ── Pricing ── */
.pricing-section { padding: 80px 0; }

.pricing-card {
  max-width: 520px;
  margin: 64px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,109,250,0.12), transparent 70%);
  pointer-events: none;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 24px 0 32px;
}

.price-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
}

.price-period { color: var(--muted); font-size: 16px; margin-left: 4px; }

.features-list { list-style: none; margin-bottom: 40px; }

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.features-list li:last-child { border-bottom: none; }

.check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(124,109,250,0.15);
  border: 1px solid rgba(124,109,250,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.ad-spend-note {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin: 24px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Results Section ── */
.results-section { padding: 80px 0; }

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

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.result-card:hover {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
}

.result-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.result-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

/* ── Who Is This For ── */
.who-section { padding: 80px 0; }

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  justify-content: center;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
  color: var(--text);
}

.who-tag:hover {
  border-color: rgba(124,109,250,0.3);
  background: rgba(124,109,250,0.08);
  transform: translateY(-2px);
}

.who-tag-icon { font-size: 20px; }

/* ── About ── */
.about-section { padding: 80px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-right {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
}

.quote-author { font-size: 14px; color: var(--muted); }

/* ── Why $99 Section ── */
.why-section { padding: 80px 0; }

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

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.why-card:hover {
  border-color: var(--accent);
  background: rgba(124,109,250,0.05);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Guarantee Section ── */
.guarantee-section { padding: 60px 0; }

.guarantee-box {
  background: linear-gradient(135deg, #1a1240, #13133d);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 48px 64px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.3;
}

/* ── CTA ── */
.cta-section { padding: 80px 0 120px; }

.cta-inner {
  background: linear-gradient(135deg, #13133d, #1a1240);
  border: 1px solid rgba(124,109,250,0.3);
  border-radius: 28px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,109,250,0.2), transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p { color: var(--muted); font-size: 13px; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Scroll reveal (JS-driven) ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero fade-up (CSS-only, runs immediately) ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .container { padding: 0 24px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  
  .problem-grid { grid-template-columns: 1fr; }
  
  .system-grid { grid-template-columns: 1fr; }
  .sys-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sys-card:last-child { border-bottom: none; }
  
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .results-grid { grid-template-columns: 1fr; }
  
  .why-grid { grid-template-columns: 1fr; }
  
  .guarantee-box { padding: 32px 24px; }
  
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { padding: 48px 28px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .pricing-card { padding: 40px 28px; }
  
  .legal-wrapper { padding: 32px 24px; }
}

/* ── Legal Pages ── */
.legal-header {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  padding: 80px 0 120px;
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 56px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.legal-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.legal-section ul li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  color: var(--accent);
  font-size: 20px;
  position: absolute;
  left: 8px;
  top: -2px;
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

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

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