:root {
  --bg: #080c14;
  --bg-2: #0d1220;
  --bg-3: #111827;
  --fg: #e8eaf0;
  --fg-muted: #7a8499;
  --accent: #ff4d0a;
  --accent-dim: rgba(255, 77, 10, 0.12);
  --border: #1c2438;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', 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(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { display: flex; align-items: center; }
.nav-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; color: var(--fg); }

.nav-status { display: flex; align-items: center; gap: 8px; }
.nav-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.nav-label { font-size: 12px; color: var(--fg-muted); font-weight: 400; }

/* ── HERO ── */
.hero {
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,77,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 24px; }
.eyebrow-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,10,0.25);
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }

.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 28px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}
.stat-label { font-size: 11px; color: var(--fg-muted); line-height: 1.4; max-width: 90px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); margin-right: 28px; }

/* Visual Card */
.hero-visual { position: relative; }
.visual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.vc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.vc-dot { width: 10px; height: 10px; border-radius: 50%; }
.vc-dot.red { background: #ff5f57; }
.vc-dot.yellow { background: #febc2e; }
.vc-dot.green { background: #28c840; }
.vc-title { font-size: 11px; color: var(--fg-muted); font-weight: 500; margin-left: 8px; }

.vc-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.pipe-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--fg-muted);
  background: rgba(255,77,10,0.05);
  border: 1px solid rgba(255,77,10,0.15);
  border-radius: 8px;
  padding: 10px 14px;
}
.ps-icon { display: flex; align-items: center; flex-shrink: 0; }

.pipe-arrow { display: flex; align-items: center; padding: 4px 0; }

.pipe-ai { display: flex; align-items: center; }
.ai-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,10,0.2);
  border-radius: 20px;
  padding: 6px 12px;
}
.ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.pipe-output { }
.output-channels { display: flex; flex-direction: column; gap: 8px; }
.oc-row { display: flex; gap: 8px; }
.oc-card {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.oc-name { font-size: 12px; font-weight: 600; color: var(--fg); }
.oc-status { font-size: 10px; color: var(--fg-muted); }

.pipe-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 4px; border-top: 1px solid var(--border); }
.pm-text { font-size: 10px; color: var(--fg-muted); }
.pm-engage { font-size: 10px; color: #22c55e; font-weight: 500; }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 24px;
}
.manifesto-sub { font-size: 15px; color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* ── SECTION COMMON ── */
.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* ── PIPELINE ── */
.pipeline { padding: 100px 48px; }
.pipeline-stages {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stage {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.stage-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 30px;
  flex-shrink: 0;
}
.stage-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.stage-icon { margin-bottom: 16px; }
.stage-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.stage-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── CHANNELS ── */
.channels { padding: 100px 48px; background: var(--bg-2); border-top: 1px solid var(--border); }
.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.channels-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; max-width: 420px; }
.channels-proof { display: flex; gap: 40px; }
.proof-item { }
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-text { font-size: 12px; color: var(--fg-muted); max-width: 120px; line-height: 1.4; }

.channels-visual { display: flex; flex-direction: column; gap: 12px; }
.channel-row { display: flex; flex-direction: column; gap: 6px; }
.channel-row-dim { opacity: 0.4; }
.channel-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cb-label { font-size: 12px; font-weight: 500; color: var(--fg); min-width: 120px; }
.cb-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.cb-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.cb-stat { font-size: 11px; color: var(--fg-muted); min-width: 36px; text-align: right; }

.channel-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--fg-muted);
  padding-left: 132px;
}

.channel-more {
  font-size: 11px;
  color: var(--fg-muted);
  padding-left: 132px;
  margin-top: 4px;
}

/* ── REVENUE ── */
.revenue {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.revenue-inner { max-width: 1100px; margin: 0 auto; }
.revenue-header { margin-bottom: 60px; }
.revenue-title { color: var(--fg); }
.revenue-streams { display: flex; gap: 24px; margin-bottom: 60px; }
.stream {
  flex: 1;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.stream-icon { margin-bottom: 20px; }
.stream-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.stream-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

.revenue-target { text-align: center; padding: 48px; background: var(--accent-dim); border: 1px solid rgba(255,77,10,0.2); border-radius: 16px; }
.target-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.target-label { font-size: 15px; color: var(--fg-muted); }

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,10,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub { font-size: 17px; color: var(--fg-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--fg); }
.footer-note { font-size: 12px; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto { padding: 60px 24px; }
  .pipeline { padding: 60px 24px; }
  .pipeline-stages { flex-direction: column; }
  .stage-arrow { transform: rotate(90deg); padding: 8px 0; }
  .channels { padding: 60px 24px; }
  .channels-grid { grid-template-columns: 1fr; gap: 48px; }
  .revenue { padding: 60px 24px; }
  .revenue-streams { flex-direction: column; }
  .closing { padding: 80px 24px; }
  .footer { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .channels-proof { flex-direction: column; gap: 20px; }
}