.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible { opacity: 1; transform: translateY(0); }

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--color-ink);
  background: var(--color-ink);
  color: var(--color-paper);
  padding-block: var(--space-2);
  position: relative;
  /* Fade both edges instead of a hard clip — signals "this is a continuous
     loop" rather than reading as content abruptly cut off by the box. */
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--space-4);
  animation: marquee-scroll 24s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
}
.marquee__track span.marquee__dot { color: var(--color-kekuatan); font-size: 0.9rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
