:root {
  --bg: #0d0d0d;
  --surface: #151515;
  --surface-2: #1e1e1e;
  --yellow: #f5e600;
  --yellow-dim: rgba(245, 230, 0, 0.15);
  --text: #f0f0f0;
  --text-dim: #888;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --section-pad: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  backdrop-filter: blur(12px);
  background: rgba(13,13,13,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: #000;
  padding: 3px 8px;
  border-radius: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,230,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,230,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,230,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-highlight {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #aaa;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.clip-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
}
.clip-card {
  position: absolute;
  width: 280px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.clip-card-1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-4deg);
}
.clip-card-2 {
  top: 60px;
  left: 80px;
  z-index: 2;
  transform: rotate(2deg);
}
.clip-card-3 {
  top: 120px;
  left: 40px;
  z-index: 1;
  transform: rotate(-1deg);
  border: 1px solid var(--yellow);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245,230,0,0.1);
}
.clip-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-thumb-2 {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.clip-thumb-3 {
  background: linear-gradient(135deg, #2d1b00, #4a3000);
}
.play-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  position: relative;
}
.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
}
.clip-meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clip-line {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  width: 85%;
}
.clip-line-sm {
  width: 55%;
  background: rgba(255,255,255,0.07);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid rgba(245,230,0,0.2);
  border-radius: 16px;
  padding: 20px 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.4;
}

/* PROOF */
.proof {
  padding: var(--section-pad) 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proof-stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.proof-stat:last-child {
  border-right: none;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* HOW */
.how {
  padding: var(--section-pad) 80px;
}
.how-header {
  margin-bottom: 72px;
}
.how-label, .money-label, .niches-label, .closing-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.how-title, .money-title, .niches-title, .closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.step {
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,230,0,0.1);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.65;
}

/* MONEY */
.money {
  padding: var(--section-pad) 80px;
  background: var(--surface);
}
.money-header {
  margin-bottom: 64px;
}
.money-sub {
  font-size: 1rem;
  color: #777;
  margin-top: 16px;
}
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.money-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
  transition: border-color 0.2s;
}
.money-card:hover {
  border-color: rgba(245,230,0,0.2);
}
.money-card-highlight {
  border: 1px solid rgba(245,230,0,0.3);
  background: rgba(245,230,0,0.04);
}
.money-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.money-icon {
  margin-bottom: 20px;
}
.money-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.money-rate {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.money-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* NICHES */
.niches {
  padding: var(--section-pad) 80px;
}
.niches-header {
  margin-bottom: 64px;
  max-width: 680px;
}
.niches-sub {
  font-size: 1rem;
  color: #777;
  margin-top: 16px;
  line-height: 1.65;
}
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.niche-card {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--surface);
  transition: all 0.2s;
}
.niche-card:hover {
  background: var(--surface-2);
}
.niche-card-gold {
  border: 1px solid rgba(245,230,0,0.3);
  background: rgba(245,230,0,0.03);
}
.niche-rank {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.niche-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.niche-cpm {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 500;
  margin-bottom: 16px;
}
.niche-desc {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: var(--section-pad) 80px;
  position: relative;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245,230,0,0.03) 50%, var(--bg) 100%);
  pointer-events: none;
}
.closing-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.closing-title {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.closing-body {
  font-size: 1.05rem;
  color: #888;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.85rem;
  color: #555;
}
.footer-links {
  font-size: 0.75rem;
  color: #444;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { display: none; }
  .proof { padding: 60px 40px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .how, .money, .niches, .closing { padding: 60px 40px; }
  .how-steps { grid-template-columns: 1fr; }
  .money-grid { grid-template-columns: 1fr 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 48px; }
  .proof { padding: 48px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .how, .money, .niches, .closing { padding: 48px 24px; }
  .money-grid { grid-template-columns: 1fr; }
  .proof-num { font-size: 2.2rem; }
  .footer { padding: 32px 24px; }
}