/* Flux arcs — shown before React hydrates (Docker / production first paint) */

.boot-loader {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem;
  background: #060810;
  color: rgba(226, 234, 248, 0.55);
  font-family: "DM Sans", system-ui, sans-serif;
}

[data-theme="light"] .boot-loader {
  background: #e8eef4;
  color: #64748b;
}

.boot-loader__spinner {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  display: grid;
  place-items: center;
}

.boot-loader__flux {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  box-sizing: border-box;
  pointer-events: none;
}

.boot-loader__flux--outer {
  inset: 6px;
  border-top-color: #38bdf8;
  animation: boot-flux-spin 0.9s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
}

.boot-loader__flux--inner {
  inset: 14px;
  border-top-color: #8b5cf6;
  animation: boot-flux-spin 1.3s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite reverse;
}

[data-theme="light"] .boot-loader__flux--outer {
  border-top-color: #0284c7;
}

[data-theme="light"] .boot-loader__flux--inner {
  border-top-color: #7c3aed;
}

.boot-loader__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: screen;
}

[data-theme="light"] .boot-loader__logo {
  mix-blend-mode: normal;
}

.boot-loader__text {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

@keyframes boot-flux-spin {
  to {
    transform: rotate(360deg);
  }
}
