/* Boot splash — Atomic Spoons studio logo, first thing shown on cold load. */

.sp-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5EDD8;
}

.sp-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Reduced motion: the splash view is skipped entirely in app.js before it ever shows, so no
   video ever loads/plays. This rule is a static-frame fallback only, in case a future call
   site shows the view without going through that guard. */
html[data-reduce="1"] .sp-video {
  display: none;
}
