:root {
  --bg: #0D0D0D;
  --surface: #171717;
  --surface-2: #1F1F1F;
  --fg: #F0EBE1;
  --fg-muted: #8A8579;
  --accent: #E8A445;
  --accent-dim: #C4852E;
  --tier-growth-bg: #1A1508;
  --tier-growth-border: #E8A445;
  --border: #2A2A2A;
}

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

html { scroll-behavior: smooth; }

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* HERO RIGHT — REEL FRAME */
.reel-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.frame-top {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.frame-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.3;
}
.frame-content {
  padding: 28px 24px 24px;
}
.film-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.strip-cell {
  aspect-ratio: 9/16;
  border-radius: 8px;
  background: var(--surface-2);
}
.strip-cell-1 { background: linear-gradient(135deg, #2a2015 0%, #3d2e1a 100%); }
.strip-cell-2 { background: linear-gradient(135deg, #1a1f2e 0%, #243050 100%); }
.strip-cell-3 { background: linear-gradient(135deg, #1a2e1f 0%, #1d4030 100%); }
.strip-cell-4 { background: linear-gradient(135deg, #2e1a2e 0%, #401a40 100%); }
.frame-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  text-align: center;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px;
}

/* SECTIONS */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

/* PROMISE */
.promise {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}
.promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.promise-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.promise-headline strong { color: var(--accent); }
.promise-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* TIERS */
.tiers { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.tiers-inner { max-width: 1100px; }
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.tier-growth {
  background: var(--tier-growth-bg);
  border-color: var(--tier-growth-border);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D0D0D;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
}
.tier-header { margin-bottom: 24px; }
.tier-name {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.tier-price {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
}
.per-mo {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
}
.tier-features {
  list-style: none;
  margin-bottom: 24px;
}
.tier-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 12px;
}
.tier-growth .tier-features li::before { color: var(--accent); }
.tier-ideal {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.5;
}

/* NICHE */
.niche {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.niche-inner { max-width: 1200px; margin: 0 auto; }
.niche-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}
.niche-icon {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.niche-card p {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Sora', sans-serif;
}

/* DIFFERENTIATOR */
.diff { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.diff-list { display: flex; flex-direction: column; gap: 14px; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.diff-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}
.diff-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 32px;
}
.quote-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 16px;
}
.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'Sora', sans-serif;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 40px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer-desc { font-size: 14px; color: var(--fg-muted); }
.footer-bottom p {
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .tier-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .niche-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: 40%; }
  .site-header { padding: 0 20px; }
  .hero, .tiers, .diff, .closing { padding-left: 20px; padding-right: 20px; }
  .promise { padding: 48px 20px; }
  .niche { padding: 60px 20px; }
}
@media (max-width: 600px) {
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .tagline { display: none; }
}