:root {
  --bg: #0D0D0D;
  --bg-alt: #131313;
  --fg: #EDEDED;
  --fg-muted: #8A8A8A;
  --accent: #F5E600;
  --accent-dim: rgba(245, 230, 0, 0.12);
  --card-bg: #161616;
  --border: rgba(255,255,255,0.06);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Noise overlay */
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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 85vh;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.video-card:hover { border-color: var(--accent); }
.video-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}
.v1::before { background: #25F4EE; }
.v2::before { background: linear-gradient(90deg, #833AB4, #FD1D1D, #F77737); }
.v3::before { background: #FF0000; }
.v4::before { background: #25F4EE; }
.video-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 4px;
}
.video-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
}
.video-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}
.video-stat {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.hero-caption {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}
.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CTA BUTTON */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  align-self: flex-start;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,230,0,0.25);
}

/* PRICING CTA */
.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.pricing-cta-sub {
  font-size: 13px;
  color: var(--fg-muted);
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 64px;
  position: relative;
  z-index: 1;
}
.stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 100px 64px;
  position: relative;
  z-index: 1;
}
.features-header {
  margin-bottom: 60px;
  max-width: 540px;
}
.features-header h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.features-header p {
  color: var(--fg-muted);
  font-size: 17px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,230,0,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.process h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 100px 64px;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.niches h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.niches-sub {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.niche-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-head);
  transition: border-color 0.2s, background 0.2s;
}
.niche-tag:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.niches-note {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 64px;
  position: relative;
  z-index: 1;
}
.pricing h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,230,0,0.06) 0%, var(--card-bg) 60%);
}
.pricing-tier {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}
.pricing-price span {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-card.featured .pricing-features li::before { background: var(--accent); }
.pricing-card:not(.featured) .pricing-features li::before { background: var(--fg-muted); }
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 64px;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.manifesto-inner { max-width: 720px; }
.manifesto-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.manifesto-statement {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.3;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.footer-links span {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step { border-right: none; padding: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 28px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 28px 48px; }
  .hero-headline { font-size: 44px; }
  .stats { padding: 32px 28px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .features { padding: 64px 28px; }
  .features-header h2 { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 28px; }
  .process h2 { font-size: 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .niches { padding: 64px 28px; }
  .niches h2 { font-size: 28px; }
  .pricing { padding: 64px 28px; }
  .pricing h2 { font-size: 32px; }
  .manifesto { padding: 64px 28px; }
  .manifesto-statement { font-size: 22px; }
  .closing { padding: 80px 28px; }
  .closing h2 { font-size: 26px; }
  footer { padding: 40px 28px; }
}