/* =============================================
   BAND — Scrolling trust marquee
   ============================================= */

.band {
  position: relative;
  z-index: 1;
  background: var(--blue);
  padding: 18px 0;
  overflow: hidden;
}

.band-track {
  display: flex;
  width: max-content;
  animation: mq 24s linear infinite;
}

.bi {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  white-space: nowrap;
}

.bd {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  flex-shrink: 0;
}
