/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0c0c0e;
  --bg-2:      #141416;
  --bg-3:      #1c1c1f;
  --fg:        #f0ede8;
  --fg-muted:  #8a8880;
  --accent:    #c8ff00;
  --accent-2:  #e8ff80;
  --red:       #ff4d4d;
  --tiktok:    #ff0050;
  --reels:     #833ab4;
  --shorts:    #ff0000;
  --grid:      rgba(200,255,0,0.04);
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
/* Grid overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(12,12,14,0.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  background: var(--accent);
  color: #000;
  padding: 4px 8px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-cta {
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-2); }
/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
}
/* Timeline visual */
.timeline-block {
  background: var(--bg-2);
  border: 1px solid rgba(200,255,0,0.12);
  border-radius: 12px;
  padding: 24px;
  font-family: 'DM Mono', 'Courier New', monospace;
}
.tl-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.tl-dot.live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.tl-label { font-size: 0.7rem; color: var(--fg-muted); letter-spacing: 0.05em; }
.tl-tracks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.tl-track { display: flex; align-items: center; gap: 8px; }
.tl-clip {
  background: var(--bg-3);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tl-clip.long { width: 100%; height: 20px; }
.tl-clip.short { height: 16px; width: 60px; }
.tl-clip.tiktok { border-left: 3px solid var(--tiktok); }
.tl-clip.reels { border-left: 3px solid var(--reels); }
.tl-clip.yt { border-left: 3px solid var(--shorts); }
.tl-arrows { display: flex; gap: 4px; color: var(--accent); font-size: 0.8rem; opacity: 0.6; }
.out {
  display: inline-block;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.tiktok-out { background: rgba(255,0,80,0.15); color: #ff4488; }
.reels-out { background: rgba(131,58,180,0.15); color: #b060e0; }
.shorts-out { background: rgba(255,0,0,0.15); color: #ff5050; }
/* Stats */
.hero-stat-row {
  display: flex; gap: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.hero-stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* ── Section Labels ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
/* ── How ── */
.how { padding: 100px 48px; position: relative; z-index: 1; }
.how-inner { max-width: 1280px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  align-self: stretch;
  margin: 0 32px;
}
/* ── Clients ── */
.clients { padding: 100px 48px; position: relative; z-index: 1; }
.clients-inner { max-width: 1280px; margin: 0 auto; }
.client-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}
.client-card {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background 0.2s;
}
.client-card:hover { background: var(--bg-3); }
.client-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.client-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.client-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(200,255,0,0.08);
  color: var(--accent);
  letter-spacing: 0.04em;
}
/* ── Manifesto ── */
.manifesto { padding: 100px 48px; position: relative; z-index: 1; }
.manifesto-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.price-block {
  text-align: right;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 64px;
}
.price-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-per {
  font-size: 1.2rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.price-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 8px;
}
/* ── Closing ── */
.closing {
  padding: 120px 48px;
  position: relative; z-index: 1;
  text-align: center;
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
/* ── Footer ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-copy {
  font-size: 0.8rem; color: var(--fg-muted);
}
/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-divider { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .price-block { text-align: left; border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; }
  .client-cards { grid-template-columns: 1fr; }
  .nav, .hero, .how, .clients, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 16px 24px; }
  .stat-num { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .hero { padding-top: 100px; }
  .timeline-block { padding: 16px; }
  .price-amount { font-size: 2.5rem; }
}