/* Index-only session loader. It sits above the existing page for a brief
   brand moment and never changes the hero or any page section. */
#vc-session-loader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  background: #0b1315;
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 220ms ease;
}

#vc-session-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.vc-session-loader-seen #vc-session-loader {
  display: none;
}

.vc-session-loader__content {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.vc-session-loader__logo {
  display: block;
  width: min(210px, 54vw);
  height: auto;
}

.vc-session-loader__dots {
  display: flex;
  gap: 8px;
}

.vc-session-loader__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2565c;
  animation: vc-session-loader-pulse 620ms ease-in-out infinite both;
}

.vc-session-loader__dots span:nth-child(2) { animation-delay: 100ms; }
.vc-session-loader__dots span:nth-child(3) { animation-delay: 200ms; }

@keyframes vc-session-loader-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .vc-session-loader__dots span { animation: none; }
  #vc-session-loader { transition-duration: 120ms; }
}
