:root {
  --void: #07080c;
  --plate: rgba(196, 236, 255, 0.88);
}

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

html,
body {
  margin: 0;
  height: 100%;
  background: var(--void);
  overflow: hidden;
  color: var(--plate);
}

.stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage video,
.stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
}

.stage img {
  z-index: 0;
}

.stage video {
  z-index: 1;
  background: transparent;
}

.tagline {
  position: absolute;
  z-index: 2;
  left: clamp(1.1rem, 3vw, 2.6rem);
  bottom: clamp(1rem, 2.8vw, 2.2rem);
  margin: 0;
  max-width: min(92vw, 42rem);
  font-family: "Avenir Next Condensed", "DIN Alternate", "Futura", "Century Gothic",
    "Gill Sans", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: clamp(0.64rem, 1.2vw, 0.84rem);
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: lowercase;
  color: var(--plate);
  text-shadow:
    0 0 14px rgba(120, 200, 255, 0.28),
    0 0 22px rgba(7, 8, 12, 0.7);
  pointer-events: none;
  user-select: none;
}

@media (min-width: 720px) {
  .tagline {
    letter-spacing: 0.34em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage video {
    opacity: 0;
  }
}
