.hero-scrub {
  height: 330vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: rgb(var(--color-coal));
}

.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-top-scrim {
  position: absolute;
  inset: 0 0 auto 0;
  height: 11rem;
  background: linear-gradient(
    to bottom,
    rgb(var(--color-coal) / 0.6),
    transparent
  );
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(var(--color-coal) / 0.88) 0%,
    rgb(var(--color-coal) / 0.4) 40%,
    rgb(var(--color-coal) / 0) 68%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-panels {
  position: relative;
  width: 100%;
  max-width: 46rem;
  min-height: 220px;
  margin: 0 auto;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-eyebrow {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--color-gold));
}

.hero-headline {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: #ffffff;
}

.hero-support {
  margin: 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.82);
}

.hero-bottom-bar {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  display: flex;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-progress {
  display: flex;
  gap: 8px;
}

.hero-progress-dot {
  height: 3px;
  width: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.25);
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease;
}

.hero-progress-dot:hover,
.hero-progress-dot:focus-visible {
  background: rgb(255 255 255 / 0.5);
}

.hero-progress-dot[data-active] {
  width: 34px;
  background: rgb(var(--color-gold));
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.7);
  transition: opacity 0.3s ease;
}

.hero-scroll-hint::after {
  content: "";
  height: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0.85), transparent);
  animation: hero-hint-move 1.6s ease-in-out infinite;
}

@keyframes hero-hint-move {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scrub {
    height: auto;
  }

  .hero-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .hero-panels {
    min-height: auto;
  }

  .hero-panel {
    position: static;
    margin-bottom: 22px;
    opacity: 1;
    transform: none;
  }

  .hero-panel:last-child {
    margin-bottom: 0;
  }

  .hero-bottom-bar {
    display: none;
  }
}
