:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --bg-card-alt: #0d1a0d;
  --text-primary: #f0f0f5;
  --text-secondary: #9a9ab0;
  --text-muted: #6a6a80;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.15);
  --accent-glow: rgba(200, 255, 0, 0.08);
  --red-muted: #ff4d4d;
  --red-bg: #1a0d0d;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--bg-secondary);
  border: 1px solid rgba(200, 255, 0, 0.1);
  border-radius: var(--radius);
  width: fit-content;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.strike {
  text-decoration: line-through;
  color: var(--red-muted);
  text-decoration-thickness: 2px;
}

.problem-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.highlight {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

.problem-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.compare-card.old {
  background: var(--red-bg);
  border-color: rgba(255, 77, 77, 0.15);
}

.compare-card.new {
  background: var(--bg-card-alt);
  border-color: rgba(200, 255, 0, 0.15);
}

.compare-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.compare-card.old .compare-header { color: var(--red-muted); }
.compare-card.new .compare-header { color: var(--accent); }

.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.compare-card.old ul li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--red-muted);
  font-size: 0.8rem;
}

.compare-card.new ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  padding-left: 80px;
  position: relative;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
}

/* ===== NICHES ===== */
.niches {
  padding: 100px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.niche-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s;
}

.niche-card:hover {
  border-color: rgba(200, 255, 0, 0.2);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.niche-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(200, 255, 0, 0.03) 50%, var(--bg-primary) 100%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.closing-tagline {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem !important;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; min-height: 80vh; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; width: 100%; }
  .stat-divider { width: 40px; height: 1px; }
  .problem { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .how { padding: 60px 24px; }
  .step { padding-left: 56px; }
  .step-num { font-size: 2rem; }
  .niches { padding: 60px 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}