.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, transparent 0%, rgba(200,255,0,0.025) 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
  z-index: 3;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw + 0.5rem, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
}

.marquee__text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.marquee__text--filled {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.marquee__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .marquee { padding: 0.7rem 0; }
  .marquee__item {
    gap: 1.2rem;
    padding-right: 1.2rem;
    font-size: clamp(1rem, 5.5vw, 1.8rem);
  }
  .marquee__dot { width: 6px; height: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
