:root {
  --bg: #0c0c0e;
  --bg-card: #161618;
  --fg: #f5f5f7;
  --fg-muted: #86868b;
  --accent: #FFD60A;
  --accent-dim: #b89a00;
  --red: #FF453A;
  --green: #30D158;
  --purple: #BF5AF2;
  --blue: #0A84FF;
  --orange: #FF9F0A;
  --border: #2c2c2e;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* Shared buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }
.btn-accent { background: var(--accent); color: #000; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--fg); }

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 13px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-link-cta {
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
}
.nav-link-cta:hover { color: #000; opacity: 0.85; }

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

/* Reel stack visual */
.hero-reel-stack {
  display: inline-block;
}
.reel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.reel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.reel-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.reel-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.reel-chip {
  height: 36px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  min-width: 44px;
  padding: 0 12px;
}
.reel-chip.red { background: #3d1a18; color: #FF6B6B; }
.reel-chip.green { background: #152d1e; color: #4ADE80; }
.reel-chip.yellow { background: #2d2500; color: var(--accent); }
.reel-chip.purple { background: #2a1a3d; color: #C084FC; }
.reel-chip.blue { background: #0f2847; color: #60A5FA; }
.reel-chip.orange { background: #2d1f0a; color: #FB923C; }
.reel-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Hero right - reel showcase */
.hero-right { display: flex; justify-content: center; }
.reel-showcase { position: relative; }
.reel-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  width: 260px;
}
.reel-screen {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.reel-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px
  );
}
.play-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 12px solid white;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 4px;
}
.reel-views {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.reel-caption-block { padding: 0 4px; }
.reel-caption-text {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}
.reel-platform {
  font-size: 11px;
  color: var(--fg-muted);
}
.reel-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
}

/* How it works */
.howitworks { padding: 80px 40px; border-top: 1px solid var(--border); }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin-top: 16px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Services */
.services { padding: 80px 40px; background: #0f0f11; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 32px;
}
.service-icon {
  width: 40px;
  height: 40px;
  background: #1e1e22;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 80px 40px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: #1c1a00;
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
}
.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
}
.per {
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-card.featured .pricing-features li::before { background: var(--accent); }
.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--fg);
}
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-divider { display: none; }
  .step { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .nav-links { gap: 12px; }
  .nav-tagline { display: none; }
  .closing { padding: 64px 24px; }
  .howitworks, .services, .pricing { padding: 60px 24px; }
}