.social-proof {
    position: relative;
}

.social-proof-marquee {
    overflow: hidden;
    padding-inline: 2rem;
}

.social-proof-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    animation: social-proof-marquee 22s linear infinite;
    will-change: transform;
}

.social-proof-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    flex: 0 0 auto;
    width: max-content;
}

.company-name {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2b2b2b;
    white-space: nowrap;
    opacity: 0.85;
}

@keyframes social-proof-marquee {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-proof-rail {
        animation: none;
    }
}
