:root {
  --bg: #0A0A0A;
  --bg-alt: #0F0F0F;
  --bg-card: #141414;
  --fg: #F4F4F4;
  --fg-muted: #888888;
  --accent: #FF4D00;
  --accent-dim: #FF4D0033;
  --border: #222222;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

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

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--fg);
}
.logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VIDEO CARD */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.vc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
}
.vc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.vc-dot.red { background: #FF5F57; }
.vc-dot.yellow { background: #FFBD2E; }
.vc-dot.green { background: #28CA41; }
.vc-title {
  font-size: 12px;
  color: #666;
  margin-left: 8px;
}
.vc-screen {
  background: #111;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vc-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.vc-caption {
  padding: 12px 18px;
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid var(--border);
}

/* STATS ROW */
.stats-row {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 48px;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 160px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* WHY PANEL */
.whypanel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 1px;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.problem-icon {
  color: #FF4444;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-item p { font-size: 15px; color: var(--fg-muted); }
.solution-statement {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.sol-icon { color: var(--accent); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.solution-statement p { font-size: 15px; color: var(--fg); line-height: 1.5; }

/* VIDEO PREVIEW */
.videopreview {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.vp-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.vp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.vp-thumb {
  background: linear-gradient(135deg, #1a1a1a, #222);
  aspect-ratio: 9/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.vp-play {
  font-size: 36px;
  color: var(--accent);
}
.vp-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: #666;
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: 4px;
}
.vp-thumb-ai { background: linear-gradient(135deg, #1a0f00, #2a1a00); }
.vp-thumb-vo { background: linear-gradient(135deg, #001a0f, #002a1a); }
.vp-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 20px 8px;
  color: var(--fg);
}
.vp-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding: 0 20px 20px;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 64px;
  letter-spacing: 1px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
}
.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 280px;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 20px;
  position: relative;
  top: -40px;
}

/* PRICING */
.pricing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.price-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1a0a00 0%, var(--bg-card) 100%);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 24px;
}
.pc-price span { font-size: 24px; color: var(--fg-muted); }
.pc-features {
  list-style: none;
  margin-bottom: 24px;
}
.pc-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pc-features li:last-child { border-bottom: none; }
.pc-note {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 20px;
}
.manifesto-signature {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-links span {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: #444;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .whypanel { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .vp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: flex-start; }
  .step-connector { display: none; }
  .stats-row { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { text-align: center; }
}
@media (max-width: 600px) {
  .navbar { padding: 0 24px; }
  .hero { padding: 48px 24px; }
  .hero-headline { font-size: 52px; }
}