:root {
  --bg: #0f0f11;
  --bg-2: #18181c;
  --bg-3: #222228;
  --fg: #f0ede6;
  --fg-2: #a8a49e;
  --fg-3: #6b6860;
  --accent: #c8ff00;
  --accent-2: #a8d900;
  --red: #ff4d4d;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-sm: 8px;
}

* { 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 */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(15,15,17,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TIMELINE */
.hero-timeline {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.timeline-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-3);
  margin-bottom: 20px;
}
.timeline-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.tl-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-2);
}
.tl-block.tl-long { border-left: 3px solid #888; }
.tl-block.tl-ai { border-left: 3px solid var(--accent); color: var(--accent); }
.tl-block.tl-clips { border-left: 3px solid #ff8c00; color: #ff8c00; }
.tl-arrow {
  width: 16px;
  height: 1px;
  background: var(--fg-3);
  flex-shrink: 0;
}
.timeline-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.output-chip {
  background: var(--accent);
  color: #0f0f11;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* SECTION SHARED */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 48px;
  max-width: 680px;
}

/* WHO */
.who {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.who-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.who-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 24px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 32px;
}

/* DELIVERABLES */
.deliverables {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.del-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.del-item { text-align: center; }
.del-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.del-badge-vertical { background: #1a2a0f; color: var(--accent); border: 1px solid rgba(200,255,0,0.2); }
.del-badge-caption { background: #1a1428; color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }
.del-badge-thumb { background: #1a1a28; color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
.del-badge-ad { background: #281a1a; color: #f87171; border: 1px solid rgba(248,113,113,0.2); }
.del-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.del-item p {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.pricing-card.pc-featured {
  border-color: rgba(200,255,0,0.3);
  background: linear-gradient(180deg, rgba(200,255,0,0.04) 0%, var(--bg-2) 60%);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0f0f11;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
.pc-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.pc-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 24px;
}
.pc-price span { font-size: 16px; color: var(--fg-3); font-weight: 400; }
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 1px;
}

/* CLOSING */
.closing {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.footer-meta span {
  font-size: 12px;
  color: var(--fg-3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .del-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .step { padding: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 48px; }
  .who-grid { grid-template-columns: 1fr; }
  .del-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 20px; }
  .hero-timeline { padding: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}