.as-hero-intro {
  position: absolute;
  inset: 0;
  z-index: 40;
  overflow: hidden;
  background: var(--as-cream);
  opacity: 1;
  visibility: visible;
  transition: opacity .72s ease, visibility .72s ease;
}

.as-hero-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.as-hero-intro-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: var(--as-cream);
}

.as-hero-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(242, 232, 212, .08), rgba(23, 106, 110, .08)),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .28), transparent 32rem);
  mix-blend-mode: soft-light;
}

.as-hero-intro-skip {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  border: 1.5px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  padding: 9px 16px 10px;
  color: #fff;
  background: rgba(18, 110, 110, .76);
  box-shadow: 0 4px 0 rgba(14, 90, 90, .68), 0 10px 24px rgba(34, 31, 27, .2);
  font: 900 14px / 1 var(--as-font);
  letter-spacing: .08em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform .16s ease, background-color .16s ease;
}

.as-hero-intro-skip:hover {
  transform: translateY(-2px);
  background: rgba(230, 0, 0, .82);
}

.as-hero-intro-skip:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.as-hero-intro-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 5px;
  background: rgba(242, 232, 212, .36);
}

.as-hero-intro-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--as-red), var(--as-pink2), var(--as-teal));
  box-shadow: 0 0 14px rgba(255, 255, 255, .78);
}

@media (max-width: 820px) {
  .as-hero-intro-media {
    object-position: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .as-hero-intro {
    display: none;
  }
}
