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

:root {
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(250, 250, 249, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-mark { font-size: 18px; color: var(--accent); font-weight: 700; }
.brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* HERO */
.hero { padding: 72px 48px 80px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-lede { font-size: 18px; color: var(--fg-muted); line-height: 1.7; max-width: 480px; margin-bottom: 28px; }
.hero-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.2); color: var(--accent); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; letter-spacing: 0.3px; }

/* Phone mockup */
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.phone-mockup { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; max-width: 280px; }
.phone-screen { background: #111; border-radius: 14px; overflow: hidden; aspect-ratio: 9/16; display: flex; align-items: center; justify-content: center; position: relative; }
.video-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.video-play-icon { font-size: 40px; color: white; opacity: 0.8; }
.video-label { color: white; font-size: 13px; font-weight: 600; }
.video-stat { color: var(--accent); font-size: 14px; font-weight: 700; }
.phone-caption { text-align: center; margin-top: 12px; font-size: 12px; color: var(--fg-muted); }

/* Stat stack */
.hero-stat-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.stat-card.accent { border-color: rgba(245,166,35,0.3); background: var(--accent-dim); }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); }
.stat-desc { font-size: 12px; color: var(--fg-muted); margin-top: 4px; line-height: 1.4; }

/* PROOF */
.proof { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 48px; }
.proof-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.proof-item { text-align: center; flex: 1; }
.proof-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; }
.proof-label { font-size: 12px; color: var(--fg-muted); margin-top: 8px; line-height: 1.5; max-width: 160px; margin-inline: auto; }
.proof-divider { width: 1px; height: 60px; background: var(--border); }

/* HOW */
.how { padding: 80px 48px; }
.section-header { margin-bottom: 48px; }
.section-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.section-sub { font-size: 16px; color: var(--fg-muted); margin-top: 16px; max-width: 480px; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.step-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 16px; }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* NICHES */
.niches { padding: 80px 48px; background: var(--bg-card); }
.niche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.niche-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px; background: var(--bg); }
.niche-icon { font-size: 32px; margin-bottom: 16px; }
.niche-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.niche-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PHILOSOPHY */
.philosophy { padding: 80px 48px; }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.quote-text { font-size: 20px; color: var(--fg); line-height: 1.7; font-style: italic; }
.quote-text + .quote-text { margin-top: 16px; color: var(--accent); font-style: normal; font-weight: 600; font-size: 18px; }
.comparison-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comparison-col { border-radius: 12px; padding: 24px; }
.comparison-col.bad { background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.comparison-col.good { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.25); }
.comp-header { font-weight: 700; font-size: 13px; margin-bottom: 16px; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comp-list li { font-size: 13px; color: var(--fg-muted); line-height: 1.5; padding-left: 16px; position: relative; }
.comp-list li::before { content: '—'; position: absolute; left: 0; color: var(--fg-muted); opacity: 0.4; }
.comparison-col.good .comp-list li { color: var(--fg); }

/* CLOSING */
.closing { padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 48px; }
.closing-cta { border: 1px solid rgba(245,166,35,0.3); background: var(--accent-dim); border-radius: 20px; padding: 40px; }
.cta-tagline { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.cta-sub { font-size: 15px; color: var(--fg-muted); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 48px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: rgba(250,250,249,0.3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 48px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .proof-inner { flex-wrap: wrap; gap: 24px; }
  .proof-divider { display: none; }
  .proof-item { flex: 1 1 40%; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .how, .niches, .philosophy { padding: 60px 24px; }
  .proof { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .steps-row { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .comparison-block { grid-template-columns: 1fr; }
}