/* Kinetic marquee */
.marquee-stage {
  display: grid;
  min-height: 72vh;
  align-content: center;
  overflow: hidden;
  padding: 32px 0;
}

.marquee-copy {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(54px, 12vw, 150px);
  font-weight: 950;
  line-height: 0.9;
  white-space: nowrap;
}

.marquee-dot {
  width: 0.22em;
  height: 0.22em;
  border-radius: 999px;
  background: var(--coral);
}

