:root {
  --bg: #09090E;
  --surface: #111118;
  --surface2: #1A1A22;
  --lime: #CCFF00;
  --lime-dim: rgba(204, 255, 0, 0.08);
  --purple: #8B5CF6;
  --text: #F0F0F5;
  --text-muted: #8888A0;
  --border: rgba(255,255,255,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(9,9,14,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-logo-accent { color: var(--lime); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #09090E;
  background: var(--lime);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(204,255,0,0.25);
  border-radius: 4px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* Video card mockup */
.hero-right { display: flex; justify-content: center; }
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 32px 60px rgba(0,0,0,0.5), 0 0 80px rgba(204,255,0,0.04);
}
.video-card-inner { padding: 20px; }
.video-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 12px;
}
.video-mock {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.vm-topbar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.vm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface2);
}
.vm-content { padding: 14px; }
.vm-hook {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.vm-body { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.vm-bar { height: 6px; background: var(--surface2); border-radius: 3px; }
.vm-bar-short { width: 55%; }
.vm-bar-med { width: 72%; }
.vm-cta { font-size: 0.7rem; color: var(--lime); font-weight: 600; }
.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── SHARED SECTION ── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 52px;
}

/* ── HOW IT WORKS ── */
.hiw {
  padding: 100px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(204,255,0,0.15);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}
.step-content p { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; }

/* ── FORMULA ── */
.formula {
  padding: 100px 28px;
  background: var(--surface);
}
.formula > .section-eyebrow,
.formula > .section-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.formula-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}
.formula-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.formula-hook { border-color: rgba(204,255,0,0.15); }
.fb-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.fb-examples { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.ex {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.45;
  padding: 10px 14px;
  background: var(--surface2);
  border-radius: 8px;
  border-left: 2px solid var(--lime);
}
.fb-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── MONETIZATION ── */
.monetization {
  padding: 100px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.mon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.mon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
}
.mon-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--lime);
  opacity: 0.4;
  margin-bottom: 12px;
}
.mon-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.mon-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.mon-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--lime);
  padding: 4px 8px;
  background: var(--lime-dim);
  border-radius: 4px;
}
.mon-secret {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
}
.mon-secret p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.mon-secret strong { color: var(--text); font-weight: 600; }

/* ── CLOSING ── */
.closing {
  padding: 120px 28px;
  background: linear-gradient(180deg, var(--bg) 0%, #0E0E14 100%);
}
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }
.closing-mission {
  font-size: 1.1rem !important;
  color: var(--text) !important;
  font-weight: 600;
  margin-bottom: 0 !important;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-logo-accent { color: var(--lime); }
.footer-note { font-size: 0.78rem; color: var(--text-muted); }

/* ── VIDEO STRIP ── */
.videostrip {
  padding: 100px 28px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.videostrip-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.videostrip-header {
  text-align: center;
  margin-bottom: 52px;
}
.videostrip-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.videostrip-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.videostrip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
/* Center card slightly elevated for visual hierarchy */
.vs-card-center {
  transform: translateY(-16px);
}
.vs-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.vs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vs-niche {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #09090E;
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 4px;
}
.vs-caption-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--lime);
  background: rgba(9,9,14,0.8);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(204,255,0,0.3);
}
.vs-topic {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  padding: 0 4px;
}
.vs-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0 4px;
}
.videostrip-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vs-see-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.vs-see-more:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.vs-try-btn {
  font-size: 0.88rem;
  font-weight: 700;
  color: #09090E;
  background: var(--lime);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.vs-try-btn:hover { opacity: 0.85; }

/* hero signup form */
.hero-signup {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  max-width: 420px;
}
.hero-signup input {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Figtree', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.hero-signup input:focus { border-color: rgba(204,255,0,0.4); }
.hero-signup button {
  padding: 12px 20px;
  background: var(--lime);
  color: #09090E;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.hero-signup button:hover { opacity: 0.85; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; }
  .mon-grid { grid-template-columns: 1fr 1fr; }
  .formula-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .videostrip-row { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .vs-card-center { transform: none; }
}
@media (max-width: 480px) {
  .mon-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 56px 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}