/* Shared boot / Maia splash — keep in sync with index.html inline #debuto-boot-splash rules. */

@keyframes debuto-boot-indeterminate {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

.debuto-boot-screen {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1C1C1E;
}

#debuto-boot-splash {
  z-index: 10000;
}

.debuto-boot-logo {
  display: block;
  width: 10rem;
  max-width: 80vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  user-select: none;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.debuto-boot-bar-track {
  width: 14rem;
  max-width: 90vw;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.debuto-boot-bar-indeterminate {
  width: 33.333%;
  height: 100%;
  border-radius: 9999px;
  background: #facc15;
  animation: debuto-boot-indeterminate 1.2s ease-in-out infinite;
}

.debuto-boot-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: #facc15;
  transition: width 300ms ease-out;
}

.debuto-boot-label {
  margin-top: 0.75rem;
  min-height: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.025em;
  user-select: none;
  text-align: center;
}

@media (min-width: 640px) {
  .debuto-boot-logo {
    width: 13rem;
  }

  .debuto-boot-bar-track {
    width: 18rem;
  }
}
