@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .7) 42%, rgba(15, 23, 42, .2) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, .35), rgba(15, 23, 42, .05));
}

.section-kicker {
    color: #f97316;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.focus-ring:focus {
    outline: 3px solid rgba(249, 115, 22, .32);
    outline-offset: 2px;
}

[x-cloak] {
    display: none !important;
}

.brand-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
}

.brand-track {
    display: flex;
    gap: 0;
    min-width: max-content;
    white-space: nowrap;
    width: max-content;
    animation: brand-marquee 28s linear infinite;
    will-change: transform;
}

.brand-group {
    display: flex;
    flex: 0 0 auto;
    gap: 24px;
    padding-right: 24px;
}

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

.brand-card {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex: 0 0 220px;
    height: 92px;
    justify-content: center;
    padding: 18px 30px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    width: 220px;
}

.brand-card:hover {
    border-color: #f97316;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
    transform: translateY(-2px);
}

.brand-card img {
    max-height: 44px;
    max-width: 150px;
}

@keyframes brand-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-track {
        animation: none;
        overflow-x: auto;
    }
}
