:root {
  color-scheme: dark;
  --bg: #05070c;
  --fg: #e8edf7;
  --muted: rgba(232, 237, 247, 0.72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  overflow: hidden;
}

.stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: radial-gradient(1200px 600px at 50% 20%, #152039 0%, #05070c 55%);
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    /* Don't hide the video; hiding it makes the page look like "text only".
       (If a user prefers reduced motion, their browser may still choose not to autoplay.) */
    opacity: 1;
  }
}

