:root {
  --bg: #111827;
  --fg: #f9fafb;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --muted: #9ca3af;
  --surface: #1f2937;
  --surface-2: #374151;
  --border: rgba(255,255,255,0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--accent);
  border-radius: 2rem;
}

/* ── HERO ── */
.hero {
  padding: 5rem 3rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface);
}

/* ── REEL STACK ── */
.reel-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}
.reel-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.reel-card-1 { transform: rotate(-1deg); }
.reel-card-2 { transform: rotate(1.5deg); }
.reel-card-3 { transform: rotate(-0.5deg); }
.reel-card-4 { transform: rotate(1deg); }
.reel-thumb {
  height: 90px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1f2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-thumb-amber { background: linear-gradient(135deg, #2a1f0a 0%, #1a1205 100%); }
.reel-thumb-dark { background: linear-gradient(135deg, #0d1117 0%, #1a2030 100%); }
.reel-thumb-gradient { background: linear-gradient(135deg, #1a0f2a 0%, #0f1a2a 100%); }
.reel-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
}
.reel-meta {
  padding: 0.7rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reel-title {
  font-size: 0.75rem;
  color: var(--fg);
  font-weight: 500;
}
.reel-platform {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── PROOF STATS ── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.proof-stat { text-align: center; }
.proof-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ── WHAT WE DO ── */
.whatwedo { padding: 5rem 3rem; }
.whatwedo-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-item { padding: 1.5rem; background: var(--surface); border-radius: 12px; border: 1px solid var(--border); }
.service-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.service-name { font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── PRICING ── */
.pricing { padding: 5rem 3rem; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin-bottom: 2.5rem; }
.pricing-card { background: var(--bg); border-radius: 16px; padding: 2.5rem; border: 1px solid var(--border); position: relative; }
.pricing-card-main { border-color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
}
.pricing-name { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 1rem; }
.price-amount { font-family: var(--serif); font-size: 3rem; font-weight: 900; color: var(--fg); }
.price-period { font-size: 0.9rem; color: var(--muted); }
.pricing-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.875rem; color: var(--fg); padding-left: 1.5rem; position: relative; font-weight: 400; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-note { font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* ── HOW IT WORKS ── */
.howitworks { padding: 5rem 3rem; }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step { position: relative; }
.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step-title { font-size: 1.1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── CLOSING ── */
.closing {
  background: linear-gradient(135deg, #1a1205 0%, #111827 50%, #0a1628 100%);
  padding: 6rem 3rem;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 560px; margin: 0 auto; }

/* ── FOOTER ── */
.footer { padding: 2rem 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; }
.footer-brand { font-family: var(--serif); font-size: 1rem; font-weight: 900; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--muted); flex: 1; }
.footer-copy { font-size: 0.75rem; color: rgba(156,163,175,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reel-stack { max-width: 320px; margin: 0 auto; }
  .proof-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
  .proof-stat { text-align: left; display: flex; align-items: center; gap: 1rem; }
  .proof-number { font-size: 1.8rem; margin-bottom: 0; }
  .proof-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .whatwedo, .pricing, .howitworks { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-wrap: wrap; gap: 0.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
}