/* ── Proof-Point Marquee Strip ───────────────────── */
#marquee-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

/* Edge fade masks */
#marquee-strip::before,
#marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

#marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt) 0%, transparent 100%);
}

#marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}

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

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-stat {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink-secondary);
  letter-spacing: -0.01em;
}

.marquee-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-ink-muted);
  letter-spacing: 0.005em;
}

.marquee-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
  flex-shrink: 0;
}

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