.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.home-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(9,9,11,0.6) 50%, #09090b);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding-top: 3rem;
}

.hero-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--red-400);
  margin-bottom: 1rem;
}

.hero-logo {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--zinc-300);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Story section */
.story-section {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.story-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.story-section p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--zinc-400);
}

/* CTA strip */
.cta-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(69, 10, 10, 0.2);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-strip h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--zinc-400);
  margin-bottom: 1.5rem;
}
