/* Бегущая строка с этапами работы под первым экраном */
.ticker {
  margin-top: 44px;
  border-block: 1px solid var(--line);
  padding-block: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 36px;
  animation: tick 42s linear infinite;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -.01em;
}
.ticker-track > span { display: inline-flex; align-items: center; gap: 36px; }
.ticker .chip {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--sage);
  color: var(--moss);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ticker .chip .icon { width: 16px; height: 16px; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker.is-js .ticker-track { animation: none; will-change: transform; }   /* с JS лента едет и тормозит сама, scripts/ticker.js */
@keyframes tick { to { transform: translateX(calc(-50% - 18px)); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
