/* ============================================
   Scrolling Ticker Strip
   Infinite right-to-left scroll below hero
   ============================================ */

.ticker-strip {
    background: linear-gradient(135deg, #162544 0%, #1e3a5f 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
}

/* Fade edges */
.ticker-strip::before,
.ticker-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-strip::before {
    left: 0;
    background: linear-gradient(90deg, #162544 0%, transparent 100%);
}

.ticker-strip::after {
    right: 0;
    background: linear-gradient(270deg, #1e3a5f 0%, transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #CBD5E1;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticker-dot.green {
    background: #10B981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.ticker-dot.blue {
    background: #3B82F6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
}

.ticker-dot.cyan {
    background: #06B6D4;
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.4);
}

.ticker-highlight {
    color: #10B981;
    font-weight: 700;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-strip {
        padding: 10px 0;
    }

    .ticker-item {
        font-size: 0.8125rem;
    }

    .ticker-track {
        gap: 2rem;
    }

    .ticker-strip::before,
    .ticker-strip::after {
        width: 40px;
    }
}
