/* Pre-JS boot flash — static public asset (avoids Vite html-inline-proxy) */
html.site-booting #app {
  visibility: hidden;
}
html.site-booting body {
  margin: 0;
  background: #060e1a;
  min-height: 100vh;
}
html.site-booting body::before {
  content: '';
  position: fixed;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: url('/apple-touch-icon.png') center / contain no-repeat;
  opacity: 0.92;
  pointer-events: none;
  z-index: 1;
}
