:root {
  --bg: #0E0E0E;
  --ink: #F0EDE8;
  --ink-muted: #7A7570;
  --accent: #FF6B35;
  --accent-dim: rgba(255,107,53,0.12);
  --surface: #181818;
  --surface-2: #222222;
  --border: #252525;
  --serif: 'Bebas Neue', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: baseline; gap: 0.4rem; }
.wordmark { font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0.08em; color: var(--ink); }
.wordmark-accent { font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0.08em; color: var(--accent); }

/* ─── MANIFESTO ─── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { display: flex; flex-direction: column; gap: 1.75rem; }
.manifesto-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.manifesto-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.manifesto-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 460px;
  font-weight: 300;
}
.manifesto-stats { display: flex; align-items: center; gap: 0; margin-top: 0.5rem; }
.stat { display: flex; flex-direction: column; padding: 0 2.25rem; }
.stat:first-child { padding-left: 0; }
.stat-number { font-family: var(--serif); font-size: 2.75rem; letter-spacing: 0.04em; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; }

/* Clip grid visual */
.manifesto-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.clip-card--tiktok { border-top: 2px solid #FF0050; }
.clip-card--reels { border-top: 2px solid #E1306C; }
.clip-card--shorts { border-top: 2px solid #FF0000; }
.clip-icon { display: flex; }
.clip-bar { height: 3px; border-radius: 2px; background: var(--surface-2); }
.bar-1 { width: 70%; }
.bar-2 { width: 45%; }
.bar-3 { width: 85%; }
.bar-4 { width: 55%; }
.bar-5 { width: 60%; }
.bar-6 { width: 90%; }
.clip-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-muted); font-weight: 500; margin-top: auto; }

/* Waveform */
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.wave-bar {
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.35;
}
.wave-bar.wave-tall { height: 36px; opacity: 0.7; }
.wave-bar:nth-child(5) { opacity: 0.9; }
.wave-bar:nth-child(7) { opacity: 0.8; }
.wave-bar:nth-child(9) { opacity: 1; }
.wave-bar:nth-child(11) { opacity: 0.85; }
.wave-bar:nth-child(15) { opacity: 0.9; }
.wave-bar:nth-child(17) { opacity: 0.75; }

/* ─── SCALE ─── */
.scale { padding: 7rem 3rem; border-bottom: 1px solid var(--border); }
.scale-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.scale-headline { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 1.5rem; }
.scale-body { color: var(--ink-muted); line-height: 1.85; font-weight: 300; font-size: 1.05rem; margin-bottom: 1.25rem; }

/* Pipeline visual */
.pipeline { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; display: flex; align-items: center; gap: 1rem; }
.pipeline-step { display: flex; align-items: center; gap: 1rem; flex: 1; }
.pipe-icon { width: 44px; height: 44px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pipe-info { display: flex; flex-direction: column; }
.pipe-title { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.pipe-sub { font-size: 0.75rem; color: var(--ink-muted); margin-top: 0.2rem; }
.pipe-arrow { flex-shrink: 0; }

/* ─── PROCESS ─── */
.process { padding: 7rem 3rem; border-bottom: 1px solid var(--border); background: var(--surface); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.process-headline { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: 0.02em; margin-bottom: 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { display: flex; flex-direction: column; gap: 0.75rem; }
.step-num { font-family: var(--serif); font-size: 4rem; color: var(--accent); line-height: 1; opacity: 0.25; letter-spacing: 0.02em; }
.step-title { font-size: 1rem; font-weight: 500; color: var(--ink); }
.step-body { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.75; font-weight: 300; }

/* ─── PRICING ─── */
.pricing { padding: 7rem 3rem; border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.pricing-headline { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: 0.02em; margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-card--featured { border-color: var(--accent); position: relative; background: linear-gradient(180deg, rgba(255,107,53,0.06) 0%, var(--surface) 100%); }
.pricing-card--featured::before { content: 'Most popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0E0E0E; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 2px; }
.pricing-tier { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.12em; color: var(--ink-muted); }
.pricing-amount { font-family: var(--serif); font-size: 3.2rem; letter-spacing: 0.03em; color: var(--ink); line-height: 1; }
.pricing-period { font-size: 1.1rem; color: var(--ink-muted); font-family: var(--sans); font-weight: 300; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.pricing-features li { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; padding-left: 1.1rem; position: relative; }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; }
.pricing-note { margin-top: 2rem; font-size: 0.82rem; color: var(--ink-muted); font-weight: 300; text-align: center; }

/* ─── CLOSING ─── */
.closing { padding: 7rem 3rem; }
.closing-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.closing-visual { position: relative; width: 80px; height: 80px; }
.closing-ring { position: absolute; border-radius: 50%; border: 1px solid var(--accent); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.3; }
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 54px; height: 54px; opacity: 0.5; }
.ring-3 { width: 28px; height: 28px; opacity: 0.8; }
.closing-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.closing-headline { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: 0.02em; line-height: 1.1; color: var(--ink); max-width: 820px; }
.closing-body { font-size: 1.1rem; color: var(--ink-muted); font-weight: 300; max-width: 580px; line-height: 1.8; }

/* ─── FOOTER ─── */
.site-footer { background: #090909; padding: 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand { display: flex; align-items: baseline; gap: 0.4rem; }
.footer-wordmark { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.08em; color: var(--ink); }
.footer-wordmark-accent { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.08em; color: var(--accent); }
.footer-copy { font-size: 0.82rem; color: var(--ink-muted); font-weight: 300; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .site-header { padding: 1.2rem 1.5rem; }
  .manifesto { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; min-height: auto; gap: 3rem; }
  .manifesto-visual { display: none; }
  .scale-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pipeline { flex-direction: column; gap: 1.5rem; }
  .pipe-arrow { transform: rotate(90deg); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .manifesto-headline { font-size: 2.8rem; }
  .stat { padding: 0 1.25rem; }
  .manifesto-stats { flex-wrap: wrap; }
}