:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #222222;
  --text: #f0f0f0;
  --text-muted: #888888;
  --accent: #FF5A1F;
  --accent-dim: rgba(255, 90, 31, 0.12);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-clips {
  display: flex;
  align-items: center;
  gap: 8px;
}
.clip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.clip-dot:nth-child(2) { background: rgba(255,90,31,0.5); }
.clip-dot:nth-child(3) { background: rgba(255,90,31,0.25); }
.nav-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-left: 4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline .accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-clips-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.clip-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* HERO RIGHT - SCREEN STACK */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.screen-screen {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 0 40px rgba(255, 90, 31, 0.08), 0 20px 60px rgba(0,0,0,0.5);
}
.screen-screen:nth-child(2) {
  transform: translateX(20px) scale(0.92);
  opacity: 0.7;
  margin-top: -8px;
}
.screen-screen:nth-child(3) {
  transform: translateX(40px) scale(0.84);
  opacity: 0.4;
  margin-top: -8px;
}
.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.dot-red { width: 8px; height: 8px; border-radius: 50%; background: #FF5F57; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2a2a2a; }
.screen-content { padding: 16px; }
.video-area {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.play-btn {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.sub-line {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-2);
  margin-bottom: 8px;
}
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w70 { width: 70%; }
.w85 { width: 85%; }
.w55 { width: 55%; }
.w65 { width: 65%; }
.tiktok .video-area { background: linear-gradient(135deg, #1a0010 0%, #2d0a1a 100%); }
.reels .video-area { background: linear-gradient(135deg, #0a1a10 0%, #0a2d1a 100%); }
.shorts .video-area { background: linear-gradient(135deg, #1a0a00 0%, #2d1a00 100%); }

.screen-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.source-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

/* PROOF */
.proof {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 48px;
  font-family: var(--font-body);
}
.proof-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.proof-type {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.proof-type:hover {
  border-color: rgba(255, 90, 31, 0.3);
}
.proof-icon {
  margin-bottom: 16px;
}
.proof-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.proof-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-quote {
  display: flex;
  gap: 16px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.quote-mark {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.proof-quote blockquote {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

/* PROCESS */
.process {
  padding: 100px 48px;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  padding-top: 60px;
  color: var(--text-muted);
}
.process-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.tools-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.tool-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tool-tag {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.manifesto-body {
  margin-bottom: 64px;
}
.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.manifesto-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-detail {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  padding: 32px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,90,31,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.closing-final {
  font-size: 0.8rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--border); }
.footer-copy {
  font-size: 0.75rem;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .screen-stack { max-width: 280px; margin: 0 auto; }
  .screen-screen:nth-child(2) { transform: translateX(14px) scale(0.92); }
  .screen-screen:nth-child(3) { transform: translateX(28px) scale(0.84); }
  .proof-types { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing { padding: 80px 24px; }
  .proof, .process, .manifesto { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .proof-types { grid-template-columns: 1fr; }
  .closing-headline { font-size: 2rem; }
}
