.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050607;
  isolation: isolate;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  opacity: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 11vh, 10rem) var(--page-padding) 3.6rem;
  text-align: center;
}

.hero__mark-wrap {
  position: relative;
  width: clamp(11rem, 17vw, 21rem);
  margin-bottom: clamp(2.4rem, 5vh, 4.6rem);
  opacity: 0;
  transform: translateY(24px);
}

.hero__mark-wrap::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  content: "";
  filter: blur(30px);
  opacity: 0.92;
  transform: scale(1.22);
}

.hero__mark {
  position: relative;
  width: 100%;
  filter:
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.95))
    drop-shadow(0 12px 36px rgba(0, 0, 0, 0.76));
}

.hero__title {
  max-width: min(56rem, 88vw);
  margin: 0;
  font-family: "MadDogTattoo", "Anton", Impact, sans-serif;
  font-size: clamp(1.74rem, 2.88vw, 3.39rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.7);
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  transform: translateY(115%);
}

.hero__bullet {
  display: inline-block;
  width: 0.11em;
  height: 0.11em;
  margin: 0 0.04em;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(0.02em);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 4vh, 2.8rem);
  z-index: 3;
  display: block;
  color: rgba(255, 255, 255, 0.76);
  opacity: 0;
  transform: translate(-50%, 18px);
}

.hero__mouse {
  position: relative;
  display: block;
  width: 1.55rem;
  height: 2.45rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
}

.hero__mouse-wheel {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  display: block;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  animation: mouse-wheel 1.65s ease-in-out infinite;
}

@keyframes mouse-wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  28% {
    opacity: 1;
  }

  72% {
    opacity: 1;
    transform: translate(-50%, 0.82rem);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0.82rem);
  }
}

@media (max-width: 760px) {
  .hero__content {
    padding-top: 6.25rem;
    justify-content: center;
  }

  .hero__mark-wrap {
    width: clamp(8rem, 35vw, 11.5rem);
    margin-bottom: 2rem;
  }

  .hero__mark-wrap::before {
    filter: blur(26px);
  }

  .hero__title {
    max-width: 88vw;
    font-size: clamp(1.41rem, 6.3vw, 2.25rem);
    line-height: 1;
  }

  .hero__scroll {
    bottom: 1.15rem;
    transform: translate(-50%, 18px);
  }
}
