/* ─────────────────────────────────────────────────────────────
   12-ticker.css
   Marquee credibility ticker — infinite horizontal scroll strip
   Sits between the hero and the Who section.
   Not a <section> so it is always visible (no fade-in).
───────────────────────────────────────────────────────────── */

.ticker {
  width: 100%;
  overflow: hidden;
  background-color: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 14px 0;
  /* Prevent text selection during scroll */
  user-select: none;
}

/* Inner track — duplicated twice in HTML for seamless loop */
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  gap: 0;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

/* Individual text item */
.ticker__item {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #444;
  white-space: nowrap;
  padding: 0 28px;
}

/* Accent dot separator */
.ticker__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #C8F04A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Highlight a few items in accent color */
.ticker__item--accent {
  color: #C8F04A;
}

/* ── Keyframe: scroll left by exactly 50% (one full copy) ── */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
