/* First-responder cinematic hero — video or crossfade fallback */
#drauger-hero-cinema {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: min(72vh, 780px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #030712;
}

#drauger-hero-cinema.hero-cinema--mounted {
  position: fixed;
}

.hero-cinema__video,
.hero-cinema__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinema__video {
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-cinema__video.is-playing {
  opacity: 1;
}

.hero-cinema__fallback.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-cinema__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transform: scale(1);
  animation: hero-cinema-kenburns 18s ease-in-out infinite;
}

.hero-cinema__slide--1 {
  animation-delay: 0s;
}

.hero-cinema__slide--2 {
  animation-delay: 6s;
}

.hero-cinema__slide--3 {
  animation-delay: 12s;
}

@keyframes hero-cinema-kenburns {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  4% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1.08);
  }
  36% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-cinema__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 30%, rgba(3, 7, 18, 0.55) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.15) 0%, rgba(3, 7, 18, 0.85) 88%, #050810 100%);
}

.hero-cinema__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 7, 18, 0.75) 0%,
    transparent 18%,
    transparent 82%,
    rgba(3, 7, 18, 0.75) 100%
  );
}

/* Let cinema show through marketing shell hero */
.drauger-marketing-shell {
  background-color: transparent !important;
  background-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent min(52vh, 560px),
    #070d1a min(58vh, 620px),
    #050810 75%,
    #030712 100%
  ) !important;
}

body {
  background-color: #050810;
}

.drauger-marketing-shell::before {
  opacity: 0.08 !important;
  z-index: 2 !important;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 10%, transparent 75%) !important;
}

.drauger-marketing-shell > header,
.drauger-marketing-shell > main,
.drauger-marketing-shell > footer {
  z-index: 3 !important;
}

#drauger-hero-cinema.hero-cinema--mounted {
  z-index: 1;
}

.home-hero {
  position: relative;
  z-index: 2;
  padding-top: clamp(4rem, 12vh, 6rem) !important;
  min-height: min(58vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65), 0 0 60px rgba(3, 7, 18, 0.8);
}

.home-hero__lead {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.site-header {
  background: rgba(5, 8, 16, 0.55) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinema__slide {
    animation: none;
    opacity: 1;
  }

  .hero-cinema__slide--2,
  .hero-cinema__slide--3 {
    display: none;
  }

  .hero-cinema__video {
    display: none;
  }
}
