/* ==========================================================================
   RUKIA F10 — boot.css
   --------------------------------------------------------------------------
   F10.4.3-M — camada de boot/identidade visual compartilhada.

   Responsabilidade:
   - Tela inicial de carregamento
   - Brand lockup base
   - Brand mark base
   - Eyebrow base
   - Animação de boot

   Observação:
   - .brand-mark e .eyebrow também são usados fora da tela de boot.
   - Por isso este arquivo deve ser carregado logo após base.css e antes de access.css.

   NÃO contém:
   - Login CP-01 completo
   - Layout operacional
   - Header/Footer
   - Cliente Público
   - Grid/KPIs/Tabela
   - Modal/Importação
   ========================================================================== */

/* Boot */

.boot-screen {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
}

.boot-card {
  width: min(520px, 100%);
  padding: 28px;
  background: var(--bg-shell);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--text-inverted);
  font-weight: 850;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--system-purple) 100%);
  border-radius: 15px;
  place-items: center;
  box-shadow: 0 14px 32px var(--brand-glow);
}

.brand-mark span {
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boot-card h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.boot-subtitle,
.boot-note {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.boot-note {
  font-size: 13px;
}

.boot-progress {
  display: flex;
  gap: 8px;
  margin: 26px 0 16px;
}

.boot-progress span {
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 999px;
  animation: bootPulse 1s infinite ease-in-out;
}

.boot-progress span:nth-child(2) {
  animation-delay: 120ms;
}

.boot-progress span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes bootPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}
