.hero-home {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 82vh, 900px);
  background:
    radial-gradient(130% 90% at 12% 8%, rgba(56, 95, 188, 0.28), transparent 58%),
    radial-gradient(112% 86% at 88% 92%, rgba(175, 47, 92, 0.24), transparent 56%),
    linear-gradient(156deg, #050811 0%, #0a1024 44%, #161125 72%, #210c1a 100%);
  border-bottom: 1px solid rgba(142, 157, 215, 0.22);
  isolation: isolate;
}

html.motion-ready .hero-home {
  animation: heroHomeBaseShift 44s ease-in-out infinite !important;
}

.hero-home.hero-depth::before,
.hero-home.hero-depth::after {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.86;
  mix-blend-mode: screen;
}

.hero-home .hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
  background:
    radial-gradient(56% 48% at 18% 24%, rgba(109, 165, 255, 0.2), transparent 70%),
    radial-gradient(62% 54% at 84% 16%, rgba(216, 73, 124, 0.16), transparent 72%),
    linear-gradient(120deg, rgba(108, 150, 251, 0.05), rgba(224, 88, 120, 0.06));
  background-size: 180% 180%;
}

html.motion-ready .hero-home .hero-aurora {
  animation: heroHomeAuroraShift 58s ease-in-out infinite !important;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 17, 0.08) 0%, rgba(5, 8, 17, 0.34) 72%, rgba(5, 8, 17, 0.52) 100%);
}

.hero-home-inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .hero-home-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@keyframes heroHomeBaseShift {
  0% {
    background-position: 0% 0%, 100% 100%, 0% 46%;
  }
  50% {
    background-position: 24% 10%, 78% 90%, 100% 54%;
  }
  100% {
    background-position: 0% 0%, 100% 100%, 0% 46%;
  }
}

@keyframes heroHomeAuroraShift {
  0% {
    background-position: 6% 46%;
  }
  50% {
    background-position: 94% 54%;
  }
  100% {
    background-position: 6% 46%;
  }
}

