.hero__ticker {
    position: absolute;
    top: 120px;
    left: -8%;
    right: -10%;
    overflow: hidden;
    transform: rotate(-2.4deg);
    z-index: 2;
    pointer-events: none;
}

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

.hero__ticker-row {
    display: flex;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
    background: #258bff;
    padding: 9px 0;
}

.hero__ticker-item {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.hero__ticker-dot {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13'%3E%3Ccircle cx='6.5' cy='6.5' r='2' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13'%3E%3Ccircle cx='6.5' cy='6.5' r='2' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
    color: #fff;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / var(--ticker-copies, 2))); }
}

@media (max-width: 1280px) {
    .hero__ticker {
        top: 90px;
        left: -5%;
        right: -5%;
    }

    .hero__ticker-item {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero__ticker {
        top: 70px;
        left: -3%;
        right: -3%;
        transform: rotate(-3deg);
    }

    .hero__ticker-row {
        gap: 20px;
        padding-right: 20px;
        padding: 7px 0;
    }

    .hero__ticker-item {
        font-size: 10px;
    }

    .hero__ticker-dot {
        width: 10px;
        height: 10px;
    }
}
