* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background: #000;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 25%,
    rgba(0, 0, 0, 0) 45%
  );
  pointer-events: none;
}

.hero-marquee {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-marquee__text {
  fill: #cdb4f2;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(0.78rem, 3.4vw, 1rem);
  letter-spacing: -0.01em;
  filter: url(#handPrintedRing);
  /* Forces Safari to composite this element on its own layer instead of
     repainting the surrounding stacking context on every filtered frame. */
  transform: translateZ(0);
  will-change: filter;
}

.hero-marquee__measure {
  visibility: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__footer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #D5DCC1;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  white-space: nowrap;
}

.hero__subline {
  font-size: clamp(1.1rem, 5.5vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  opacity: 0.9;
}

@media (min-width: 700px) {
  .hero-marquee__text {
    font-size: 1.1rem;
    letter-spacing: 0;
  }

  .hero__subline {
    font-size: 1.9rem;
  }
}
