/* PHASE 6 STARTUP SPEED SAFE */
#phase6StartupOverlay{
  position:fixed;
  inset:0;
  z-index:2147483000;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  transition:opacity .28s ease, visibility .28s ease;
}
#phase6StartupOverlay.phase6-hide{
  opacity:0;
  visibility:hidden;
}
#phase6StartupOverlay .box{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #dbe7f5;
  border-radius:18px;
  padding:18px 22px;
  box-shadow:0 14px 40px rgba(15,23,42,.12);
  color:#0f172a;
  font-weight:900;
}
#phase6StartupOverlay .spinner{
  width:26px;
  height:26px;
  border-radius:999px;
  border:4px solid #dbeafe;
  border-top-color:#2563eb;
  animation:phase6spin .8s linear infinite;
}
@keyframes phase6spin{to{transform:rotate(360deg)}}
