/* Pantalla de arranque (ver comentario en index.html) */
#boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #f7faf7;
  color: #2b5c4a;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
}
#boot .wm {
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 18px;
  padding-left: 0.3em;
}
#boot .spin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(43, 92, 74, 0.2);
  border-top-color: #2b5c4a;
  animation: boot-spin 0.9s linear infinite;
}
#boot p {
  margin: 0;
  font-size: 12px;
  opacity: 0.65;
}
@keyframes boot-spin {
  to {
    transform: rotate(360deg);
  }
}
#root:not(:empty) + #boot {
  display: none;
}
