/* Auth çözülene kadar landing ve dashboard birbirine sızmaz. */
body.auth-pending > #login,
body.auth-pending > #app {
  display: none !important;
}

#auth-boot {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--snoire-noir-ink);
  color: var(--snoire-silver-facet);
}

#auth-boot[hidden] { display: none; }

.auth-boot-card {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.auth-boot-brand { --snoire-lockup-wordmark-width: min(220px, 54vw); }

.auth-boot-progress {
  width: 160px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.auth-boot-progress::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--snoire-electric-cyan);
  animation: auth-boot-slide 1.1s ease-in-out infinite alternate;
}

.auth-boot-text {
  color: var(--snoire-steel-muted);
  font: 500 12px/1.4 var(--snoire-font-brand);
  letter-spacing: 0.04em;
}

@keyframes auth-boot-slide {
  from { transform: translateX(-15%); }
  to { transform: translateX(155%); }
}

@media (prefers-reduced-motion: reduce) {
  .auth-boot-progress::after { animation: none; width: 100%; opacity: 0.7; }
}
