:root {
  --bg: #0E0E0F;
  --surface: #18181B;
  --surface2: #232329;
  --fg: #FAFAF9;
  --fg-muted: #A8A29E;
  --accent: #FF4D00;
  --accent-light: #FF6B2E;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
}

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

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

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(14,14,15,0.85);
  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; gap: 10px; }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--fg); letter-spacing: -0.5px; }
.nav-tag { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-left: 8px; padding: 3px 8px; border: 1px solid var(--border); border-radius: 20px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent-light);
  border: 1px solid rgba(255,77,0,0.2);
  font-weight: 500;
}

/* VIDEO STACK */
.hero-right { position: relative; display: flex; justify-content: center; }
.video-stack { position: relative; width: 340px; }
.vid-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  position: absolute;
  width: 280px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.vid-card-1 { top: 0; left: 0; transform: rotate(-3deg); z-index: 3; }
.vid-card-2 { top: 40px; right: -20px; transform: rotate(2deg); z-index: 2; }
.vid-card-3 { top: 100px; left: 20px; transform: rotate(-1.5deg); z-index: 1; }
.vid-thumb {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.tiktok { background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 50%, #1a0a00 100%); }
.reels { background: linear-gradient(135deg, #1a0a2e 0%, #0d1a1a 50%, #1a0a0d 100%); }
.shorts { background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #0a1a0a 100%); }
.vid-label { font-size: 11px; font-weight: 600; color: var(--fg); display: flex; align-items: center; gap: 5px; }
.plat-icon { font-size: 13px; }
.vid-bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-top: 8px; }
.vid-bar.short { width: 40%; }
.vid-caption { font-size: 13px; font-weight: 500; color: var(--fg); margin-bottom: 4px; line-height: 1.4; }
.vid-meta { font-size: 11px; color: var(--fg-muted); }
.accent-ring {
  position: absolute;
  top: 120px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--accent-dim);
  z-index: 0;
}

/* PROOF STRIP */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat { padding: 0 48px; flex: 1; }
.proof-stat:first-child { padding-left: 0; }
.proof-num { display: block; font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--fg); letter-spacing: -1px; }
.proof-label { font-size: 13px; color: var(--fg-muted); margin-top: 4px; display: block; }
.proof-div { width: 1px; height: 60px; background: var(--border); flex: 0 0 1px; }

/* SECTIONS */
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}

/* FEATURES */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-title { margin-bottom: 60px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface2); }
.feat-icon { font-size: 24px; color: var(--accent); margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* DELIVERY */
.delivery { padding: 100px 40px; }
.delivery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.delivery-desc { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 48px; margin-top: 16px; }
.delivery-steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--accent); flex: 0 0 40px; line-height: 1; margin-top: 4px; }
.step strong { font-size: 15px; font-weight: 600; color: var(--fg); display: block; margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.intake-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 0;
}
.intake-title { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 24px; font-weight: 500; }
.intake-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.intake-row:last-child { border-bottom: none; }
.intake-row span:first-child { color: var(--fg-muted); }
.intake-val { font-weight: 600; color: var(--fg); }

/* PRICING */
.pricing { padding: 100px 40px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-sub { font-size: 16px; color: var(--fg-muted); margin-bottom: 60px; margin-top: -8px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.price-tier { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; font-weight: 500; }
.price-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; min-height: 36px; }
.price-amount { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--fg); letter-spacing: -2px; margin-bottom: 24px; }
.price-amount span { font-size: 20px; color: var(--fg-muted); }
.price-detail { font-size: 14px; color: var(--fg-muted); line-height: 1.8; }

/* MANIFESTO */
.manifesto { padding: 100px 40px; }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: var(--fg);
  font-style: italic;
  position: relative;
}
.manifesto-quote::before { content: '"'; font-size: 80px; color: var(--accent); position: absolute; top: -30px; left: -20px; font-style: normal; line-height: 1; }
.manifesto-attr { margin-top: 24px; font-size: 13px; color: var(--fg-muted); }

/* CLOSING */
.closing { padding: 100px 40px 120px; }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.65; max-width: 560px; margin: 0 auto; }

/* FOOTER */
.footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 24px; display: block; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--fg-muted); max-width: 400px; line-height: 1.6; margin-bottom: 24px; }
.footer-copy { font-size: 12px; color: rgba(168,162,158,0.5); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .hero-sub { max-width: 100%; }
  .proof-inner { flex-wrap: wrap; gap: 32px; }
  .proof-stat { padding: 0; flex: 0 0 50%; }
  .proof-div { display: none; }
  .features { padding: 60px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .delivery { padding: 60px 20px; }
  .delivery-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing { padding: 60px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 20px; }
  .closing { padding: 60px 20px 80px; }
  .footer { padding: 40px 20px; }
}