.site-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #060d20;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 420ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 420ms;
  isolation: isolate;
}

.site-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(72, 180, 255, 0.06),
    transparent 32%
  );
}

.site-splash-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #060d20;
  pointer-events: none;
}

.site-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.site-splash-active,
html.site-splash-active body {
  overflow: hidden;
}

@media (max-width: 560px) {
  .site-splash-frame {
    width: 100dvw;
    height: 100dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-splash {
    transition-duration: 160ms;
    transition-delay: 0s;
  }
}
