/* Base */
:root {
  --bg: #09090b;
  --fg: #ffffff;
  --muted: #71717a;
  --amber: #f59e0b;
  --amber-dim: #b45309;
  --green: #22c55e;
  --border: #27272a;
  --card: #111113;
  --font-head: 'Syne', 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;
}

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.nav-tagline {
  font-size: 14px;
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 80px 0 64px;
}
.hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber);
}
.hero-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 220px;
  background: #1a1a1d;
  border-radius: 36px;
  padding: 16px;
  border: 1px solid #2e2e32;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px;
  height: 20px;
  background: #0c0c0e;
  border-radius: 12px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0c0c0e;
  border-radius: 24px;
  overflow: hidden;
}
.video-card { border-bottom: 1px solid #1e1e21; }
.video-thumb {
  height: 130px;
  background: linear-gradient(135deg, #1c1c1f 0%, #2a2a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.play-btn {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.vid-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
}
.video-info { padding: 10px 12px; }
.vid-caption {
  font-size: 11px;
  color: #a1a1aa;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vid-stats {
  display: flex;
  gap: 12px;
  align-items: center;
}
.vid-views { font-size: 12px; font-weight: 600; color: var(--fg); }
.vid-likes, .vid-comments {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #71717a;
}
.caption-block {
  padding: 12px;
  background: #111113;
}
.caption-line {
  height: 7px;
  background: #27272a;
  border-radius: 4px;
  margin-bottom: 6px;
}
.caption-tag {
  font-size: 10px;
  color: var(--amber);
  margin-top: 8px;
}

.badge-stack {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}
.badge {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-amber { background: rgba(245,158,11,0.15); color: var(--amber); }

/* Proof */
.proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.proof-stat { text-align: center; }
.proof-num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.proof-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* How */
.how {
  padding: 80px 0;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 48px;
  line-height: 1.2;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  padding: 28px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.pricing-featured {
  border-color: var(--amber);
  background: linear-gradient(145deg, #13130f 0%, #0f0f0e 100%);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--amber);
  color: #09090b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.per-mo {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  color: #a1a1aa;
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* Closing */
.closing {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.closing-quote {
  font-size: clamp(20px, 3vw, 28px);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
}
.closing-response {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.closing-tagline {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-tagline { font-size: 24px; }
}