/* Pre-boot state: warm black, wordmark, zero white flash.
   Lives in public/ (not inline in index.html): Vite's html-inline-proxy
   breaks on Windows drive-letter casing when the build is launched from
   cmd.exe, so inline <style> in index.html must stay empty. */
html,
body {
  margin: 0;
  height: 100%;
  background: #0a0908;
  overscroll-behavior: none;
}
#root {
  height: 100%;
}
#boot {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0908;
  color: #e8e4dc;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  user-select: none;
  z-index: 100;
}
