/* Stage 21 launch continuation.
 * The splash owns the same full viewport coordinate system as the app shell.
 * It does not alter app-shell theme, header, nav, or safe-area geometry.
 */
.sd21-launch-continuation{
  display:none;
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  min-height:100vh;
  z-index:2147483647;
  overflow:hidden;
  pointer-events:none;
  background:#4F86B7;
}
@supports (height:100dvh){
  .sd21-launch-continuation{
    height:100dvh;
    min-height:100dvh;
  }
}
html.sd21-launching .sd21-launch-continuation{display:block}
.sd21-launch-continuation img{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  user-select:none;
  -webkit-user-drag:none;
}
