/* ==========================================================================
   Landing page additions (2026-07-18) — loaded on index.html only, on top of
   the shared styles.css design system. The July-17 version of this file
   forced the whole page into a dark, single-accent palette regardless of
   system theme; that's reverted here so the page goes back to the chaptered
   light/ink rhythm the base system already implements. Only the ticker
   marquee is landing-specific enough to live here.
   ========================================================================== */

.ticker {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--background-alt);
    padding: 15px 0;
}

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

.ticker-set {
    display: flex;
    flex: none;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
}

.ticker-set span {
    color: var(--foreground-muted);
    font-family: var(--font-data);
    font-size: 12.5px;
    white-space: nowrap;
}

.ticker-set i {
    width: 5px;
    height: 5px;
    flex: none;
    border-radius: 50%;
    background: var(--primary);
}

@keyframes ticker-scroll {
    to {
        transform: translateX(-50%);
    }
}

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