:root {
  --bg: #09090b;
  --bg-elevated: #18181b;
  --fg: #fafafa;
  --fg-muted: #a1a1aa;
  --accent: #e879f9;
  --accent-dim: rgba(232, 121, 249, 0.15);
  --border: #27272a;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

.tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
}

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

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 480px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.video-stack {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.video-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.video-card.long {
  width: 200px;
  height: 280px;
}

.video-card.short {
  width: 200px;
  height: 280px;
}

.video-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1rem;
}

.video-placeholder {
  height: calc(100% - 2rem);
  background: var(--border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.clips-grid {
  height: calc(100% - 2rem);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
}

.mini-clip {
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  opacity: 0.8;
}

.arrow {
  color: var(--accent);
}

.problem {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--bg-elevated);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.problem p {
  color: var(--fg-muted);
  font-size: 1.25rem;
}

.features {
  padding: 6rem 2rem;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.process {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

.process-content {
  max-width: 800px;
  margin: 0 auto;
}

.process h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-text p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.pricing {
  padding: 6rem 2rem;
}

.pricing-content {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-tier {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.pricing-tier.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-tier h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-tier ul {
  list-style: none;
}

.pricing-tier li {
  padding: 0.5rem 0;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.pricing-tier li::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--accent);
}

.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.25rem;
}

.footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  max-width: 400px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .video-stack {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .lede {
    margin: 0 auto;
  }
}