/* ===== FONTS ===== */
:root {
  --bg: #FBF5EC;
  --bg-alt: #F5EDE0;
  --fg: #1A1A2E;
  --fg-muted: #6B6B7B;
  --accent: #FF6B35;
  --accent-dark: #E5541F;
  --dark-surface: #1A1A2E;
  --border: rgba(26, 26, 46, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(251, 245, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 20px; text-decoration: none; color: var(--fg); letter-spacing: -0.5px; }
.nav-logo strong { color: var(--accent); }
.nav-tag { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 40px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.hero-headline { font-size: clamp(56px, 7vw, 88px); font-weight: 700; color: var(--fg); margin-bottom: 24px; line-height: 1.0; }
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 440px; line-height: 1.65; }

/* ===== PHONE MOCKUPS ===== */
.hero-phones { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.phone-float { position: absolute; }
.phone-1 { top: 20px; left: 10px; transform: rotate(-8deg); z-index: 3; }
.phone-2 { top: 80px; left: 50%; transform: translateX(-50%); z-index: 2; }
.phone-3 { top: 40px; right: 10px; transform: rotate(7deg); z-index: 1; }

.phone-screen {
  width: 200px;
  background: #111;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-2 .phone-screen { width: 210px; }

.phone-notch { width: 80px; height: 22px; background: #111; border-radius: 0 0 14px 14px; margin: 0 auto 10px; position: relative; }
.phone-notch::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); }

.phone-content { background: #1C1C1E; border-radius: 18px; overflow: hidden; aspect-ratio: 9/16; display: flex; align-items: center; justify-content: center; }

.video-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb::before {
  content: '';
  position: absolute; width: 40px; height: 40px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.3);
}
.video-thumb::after { content: '▶'; position: absolute; font-size: 14px; color: rgba(255,255,255,0.5); }

.video-thumb--reels { background: linear-gradient(145deg, #2D1B4E 0%, #1A1030 100%); }
.video-thumb--shorts { background: linear-gradient(145deg, #1A2A2A 0%, #0F1A1A 100%); }

.vt-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; }
.vt-bar { height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 6px; }
.vt-bar--short { width: 40%; }
.vt-bar--med { width: 65%; }
.vt-bar--long { width: 85%; }
.vt-caption { font-size: 8px; color: rgba(255,255,255,0.5); font-family: 'Space Grotesk', sans-serif; }

/* ===== MANIFESTO ===== */
.manifesto { padding: 100px 40px; background: var(--dark-surface); color: #fff; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.manifesto-stat { position: sticky; top: 100px; }
.stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: clamp(64px, 8vw, 96px); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; display: block; max-width: 200px; }
.manifesto-pull { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 24px; line-height: 1.3; }
.manifesto-text { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 20px; }

/* ===== PROOF ===== */
.proof { padding: 100px 40px; background: var(--bg-alt); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 40px; font-weight: 600; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.proof-card { background: var(--bg); padding: 40px 32px; display: flex; flex-direction: column; gap: 12px; }
.proof-num { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1; }
.proof-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* ===== HOW ===== */
.how { padding: 100px 40px; background: var(--bg); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 600; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--fg); margin-bottom: 64px; line-height: 1.1; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 64px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; display: block; margin-bottom: 16px; }
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.how-pricing { border-top: 1px solid var(--border); padding-top: 40px; display: flex; align-items: baseline; gap: 12px; }
.pricing-label { font-size: 14px; color: var(--fg-muted); }
.pricing-num { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--fg); }
.pricing-period { font-size: 16px; color: var(--fg-muted); }

/* ===== NICHES ===== */
.niches { padding: 100px 40px; background: var(--dark-surface); color: #fff; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches .section-label { color: rgba(255,255,255,0.4); }
.niches .section-title { color: #fff; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.niche-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 32px; transition: background 0.2s; }
.niche-card:hover { background: rgba(255,255,255,0.07); }
.niche-icon { display: block; font-size: 28px; margin-bottom: 16px; }
.niche-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.niche-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== CLOSING ===== */
.closing { padding: 120px 40px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 5vw, 64px); font-weight: 700; color: var(--fg); margin-bottom: 28px; line-height: 1.1; }
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.closing-rule { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; color: var(--accent); }

/* ===== FOOTER ===== */
.footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--fg); }
.footer-logo strong { color: var(--accent); }
.footer-tag { font-size: 12px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phones { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-stat { position: static; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .hero { padding: 80px 20px 60px; }
  .manifesto, .proof, .how, .niches, .closing { padding: 60px 20px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .how-pricing { flex-direction: column; gap: 4px; }
}