#platforms {
    padding: 0 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 0 -48px -80px; /* bleed to hero edges, stick to bottom */
}
.platforms-track {
    display: flex;
    align-items: stretch;
}
.platform-label {
    flex-shrink: 0;
    padding: 32px 40px 32px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-muted);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap;
}
.platforms-scroll {
    display: flex;
    gap: 0;
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}
.platforms-inner {
    display: flex;
    gap: 0;
    animation: scrollLeft 25s linear infinite;
    white-space: nowrap;
}
.platform-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.platform-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface2);
    border: 1px solid var(--border-bright);
    flex-shrink: 0;
}
.platform-info {
    min-width: 0;
}
.platform-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}
.platform-company {
    font-size: 11px;
    color: var(--white-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
