.site-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(90deg, rgba(16, 17, 24, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(16, 17, 24, 0.08) 1px, transparent 1px);
  background-size: 7px 7px;
}

.cursor-orb {
  position: fixed;
  z-index: 998;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 255, 69, 0.22), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) rotate(0.35deg);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.ticker {
  padding-block: var(--space-4);
  color: var(--color-paper);
  background: var(--color-ink);
  border-block: 3px solid var(--color-ink);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker__track span::after {
  content: "✦";
  margin-left: var(--space-5);
  color: var(--color-acid);
}

.shape {
  position: absolute;
  display: block;
  border: 3px solid var(--color-ink);
  box-shadow: var(--shadow-hard);
  animation: drift 12s ease-in-out infinite alternate;
}

.shape--one {
  top: 11%;
  right: 8%;
  width: 7rem;
  height: 7rem;
  background: var(--color-blue);
  border-radius: 44% 56% 48% 52%;
}

.shape--two {
  bottom: 12%;
  left: 3%;
  width: 5.5rem;
  height: 12rem;
  background: var(--color-brick);
  transform: rotate(-18deg);
  animation-delay: -2s;
}

.shape--three {
  right: 42%;
  bottom: 2%;
  width: 9rem;
  height: 4rem;
  background: var(--color-acid);
  transform: rotate(12deg);
  animation-delay: -4s;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes drift {
  from { translate: 0 0; rotate: 0deg; }
  to { translate: 0.8rem -1rem; rotate: 8deg; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-orb {
    display: none;
  }
}

@media (max-width: 820px) {
  .cursor-orb {
    display: none;
  }
}
