/* Boot splash — kept outside index.html to avoid Vite html-inline-proxy Windows build bugs */
#tl-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f8f9fa;
  transition: opacity 0.25s ease;
}
html.dark #tl-boot {
  background: #0b1220;
}
#tl-boot[data-hide="1"] {
  opacity: 0;
  pointer-events: none;
}
#tl-boot img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
#tl-boot p {
  margin: 14px 0 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
}
html.dark #tl-boot p {
  color: #94a3b8;
}
#tl-boot .tl-boot-inner {
  text-align: center;
}
