:root {
  --bg: #0C0C0E;
  --surface: #141417;
  --surface-2: #1C1C21;
  --fg: #F5F0E8;
  --fg-muted: #8A8690;
  --accent: #FF4D00;
  --accent-2: #FF7A3D;
  --border: #252530;
  --card: #18181C;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-visual { position: relative; }
.clip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 130px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.clip-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.clip-card-1 { border-top: 2px solid var(--accent); }
.clip-card-2 { border-top: 2px solid #4D9FFF; }
.clip-card-3 { border-top: 2px solid #FF3DAB; }
.clip-card-4 { border-top: 2px solid #00D9A6; }
.clip-icon {
  font-size: 1.8rem;
  color: var(--fg);
  opacity: 0.7;
}
.clip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.clip-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 0 12px 0 8px;
}
.visual-tag {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Volume Bar */
.volume-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}
.volume-inner { max-width: 1100px; margin: 0 auto; }
.volume-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.volume-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* How it Works */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.how-header { margin-bottom: 60px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* Pricing */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.pricing-growth {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,77,0,0.08) 0%, var(--card) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-quote { max-width: 680px; margin-bottom: 60px; }
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.manifesto-accent { color: var(--accent) !important; }
.manifesto-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.m-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.m-stat-label { font-size: 0.85rem; color: var(--fg-muted); }

/* Closes */
.closes {
  background: var(--bg);
  padding: 80px 40px;
}
.closes-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closes-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closes-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }
.footer-meta { font-size: 0.75rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; }
  .volume-bar { padding: 32px 20px; }
  .how { padding: 60px 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing-table { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 20px; }
  .manifesto-stat-grid { grid-template-columns: 1fr; gap: 24px; }
  .closes { padding: 60px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}