.scroll-indicator {
  --scroll-indicator-bottom: clamp(1.6rem, 4vh, 2.8rem);
  --scroll-indicator-scale: 1;
  --scroll-indicator-label-size: 0.7rem;
  --scroll-indicator-arrow-size: 16px;
  --scroll-indicator-gap: 0.35rem;
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
  --scroll-indicator-color: var(
    --scroll-label-color,
    var(--scroll-arrow-color, #142a29)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scroll-indicator-gap);
  opacity: 0;
  transform: translateY(8px) scale(var(--scroll-indicator-scale));
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
  z-index: 3;
}

.scroll-indicator.revealed {
  opacity: 1;
  transform: translateY(0) scale(var(--scroll-indicator-scale));
  pointer-events: auto;
  cursor: pointer;
}

.scroll-label {
  padding: 0.2em 0.55em;
  background: var(--scroll-label-bg, #fff);
  color: var(--scroll-indicator-color);
  font-size: var(--scroll-indicator-label-size);
  font-family: var(--font-inter);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-kerning: none;
  text-rendering: geometricPrecision;
}

.scroll-arrow {
  width: var(--scroll-indicator-arrow-size);
  height: var(--scroll-indicator-arrow-size);
  border-right: 2px solid var(--scroll-arrow-color, #fff);
  border-bottom: 2px solid var(--scroll-arrow-color, #fff);
  transform: rotate(45deg);
  animation: scrollBounce 1.2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}