.raxx-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.raxx-quiet-pulse {
  display: block;
  height: auto;
  max-width: 90%;
  transform-origin: center;
  animation: raxx-quiet-pulse 3s ease-in-out infinite;
}
@keyframes raxx-quiet-pulse {
  0%, 100% { opacity: .66; transform: scale(.975); }
  50% { opacity: 1; transform: scale(1.025); }
}
.raxx-loading-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.raxx-boot-loading { min-height: 100vh; min-height: 100dvh; background: #f4f5f7; }
@media (prefers-color-scheme: dark) {
  .raxx-boot-loading { background: #15181e; }
}
@media (prefers-reduced-motion: reduce) {
  .raxx-quiet-pulse { animation: none; opacity: 1; transform: none; }
}
