@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.runtimeGate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 5vw, 4rem);
  color: var(--text, #eef4ff);
  text-align: center;
  background: rgba(5, 10, 24, .96);
  backdrop-filter: blur(16px);
}

.runtimeGate > * {
  width: min(42rem, 100%);
  margin-inline: auto;
}

.runtimeGate h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.runtimeGate p {
  line-height: 1.6;
}

.runtimeGateButton {
  min-height: 3rem;
  padding-inline: 1.4rem;
  font: inherit;
  font-weight: 700;
}

.runtimeGateButton:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
