/* --- Variables --- */
:root {
  --bg: #0A0A0F;
  --bg-alt: #111118;
  --fg: #F0EEE8;
  --fg-muted: #8A8A9A;
  --accent: #FFB340;
  --accent-dim: rgba(255, 179, 64, 0.12);
  --lime: #C8FF3E;
  --lime-dim: rgba(200, 255, 62, 0.1);
  --border: rgba(240, 238, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

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

/* --- Navbar --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  background: var(--accent);
  color: #0A0A0F;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 7px;
  letter-spacing: 0.05em;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--accent);
  color: #0A0A0F;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 179, 64, 0.25);
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 48px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.film-strip {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0px,
    var(--border) 1px,
    transparent 1px,
    transparent 28px
  );
  opacity: 0.4;
}

.ambient-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 64, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
}

.stat-num.accent { color: var(--accent); }

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.stat-sep {
  font-size: 20px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* --- Phone Frame --- */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-frame {
  width: 220px;
  background: #1A1A24;
  border-radius: 36px;
  padding: 12px;
  border: 1.5px solid rgba(255, 179, 64, 0.3);
  box-shadow: 0 0 40px rgba(255, 179, 64, 0.1), 0 20px 60px rgba(0,0,0,0.5);
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: #0A0A0F;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
}

.video-screen {
  background: linear-gradient(135deg, #1E1B2E 0%, #2A1F3D 100%);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-content {
  padding: 20px;
  width: 100%;
}

.video-bar {
  height: 6px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.1);
}

.video-bar-1 { width: 80%; background: var(--accent); opacity: 0.9; }
.video-bar-2 { width: 60%; }
.video-bar-3 { width: 70%; }

.video-caption {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.video-trend {
  font-size: 8px;
  color: var(--lime);
  margin-top: 4px;
  font-family: var(--font-mono);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 179, 64, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
}

.phone-brand {
  text-align: center;
  font-size: 9px;
  color: var(--fg-muted);
  margin-top: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* --- Platforms --- */
.platforms {
  display: flex;
  gap: 12px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.platform.tiktok { border-color: rgba(255, 255, 255, 0.1); }
.platform.reels { border-color: rgba(131, 76, 255, 0.3); }
.platform.shorts { border-color: rgba(255, 0, 0, 0.2); }

.platform-icon {
  font-size: 13px;
}

/* --- Sections shared --- */
.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-sub {
  color: var(--fg-muted);
  margin-top: 16px;
  max-width: 520px;
}

/* --- How It Works --- */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
}

.step {
  flex: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 48px 20px 0;
  flex-shrink: 0;
}

/* --- Pricing --- */
.pricing {
  padding: 100px 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.plan {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}

.plan:hover {
  border-color: rgba(255, 179, 64, 0.2);
}

.plan-featured {
  border-color: rgba(255, 179, 64, 0.3);
  background: rgba(255, 179, 64, 0.04);
  box-shadow: 0 0 40px rgba(255, 179, 64, 0.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A0A0F;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 11px;
}

.plan-target {
  font-size: 11px;
  color: var(--fg-muted);
  font-style: italic;
  padding-top: 8px;
}

/* --- Niche --- */
.niche {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niche-content {
  max-width: 1100px;
}

.niche .section-title {
  max-width: 700px;
  margin-bottom: 60px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.niche-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--bg);
}

.niche-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.niche-callout {
  font-size: 14px;
  color: var(--accent);
  max-width: 600px;
  font-style: italic;
  line-height: 1.6;
}

/* --- Manifesto --- */
.manifesto {
  padding: 120px 48px;
}

.manifesto-content {
  max-width: 800px;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--fg);
}

.manifesto p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.brand-mark-sm {
  background: var(--accent);
  color: #0A0A0F;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 6px;
  letter-spacing: 0.05em;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    display: none;
  }
  .pricing-grid, .niche-grid {
    grid-template-columns: 1fr;
  }
  .navbar, .hero, .how-it-works, .pricing, .niche, .manifesto, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .navbar {
    padding: 20px 24px;
  }
}
