﻿.rpm-about {
    --void: #06070b;
    --panel: #0d0f16;
    --panel-2: #12151f;
    --line: rgba(255,255,255,0.08);
    --text: #edeff5;
    --muted: #8b90a3;
    --blue: #3e7bff;
    --purple: #9b5cff;
    background: var(--void);
    padding: 5rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
}

    .rpm-about::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(650px circle at 90% 5%, rgba(62,123,255,0.08), transparent 60%), radial-gradient(650px circle at 0% 95%, rgba(155,92,255,0.08), transparent 60%);
        pointer-events: none;
    }

.rpm-about-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.rpm-about-copy {
    text-align: left;
}

@media (max-width: 900px) {
    .rpm-about-copy {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rpm-logo-ring, .rpm-logo-stage img, .logo-item {
        animation: none !important;
        transition: none !important;
    }
}
.rpm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .rpm-about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
}
.rpm-logo-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.rpm-logo-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--blue), var(--purple), var(--blue));
    filter: blur(48px);
    opacity: 0.28;
    animation: rpm-ring-spin 12s linear infinite;
}
@keyframes rpm-ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rpm-logo-grid {
    position: absolute;
    inset: 20px;
    background-image: linear-gradient(rgba(62,123,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(62,123,255,0.10) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 72%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 72%);
}

.rpm-logo-stage img {
    position: relative;
    z-index: 2;
    height: 400px;
    width: auto;
    animation: rpm-float 5s ease-in-out infinite;
    filter: drop-shadow(0 0 26px rgba(62,123,255,0.25));
}

@keyframes rpm-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 900px) {
    .rpm-logo-stage {
        height: 260px;
    }

        .rpm-logo-stage img {
            height: 260px;
        }

    .rpm-logo-ring {
        width: 220px;
        height: 220px;
    }
}
/*  LOGO   */

.rpm-logos {
    margin-bottom: 4.5rem;
    background: var(--void, #141414);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 170px; 
}

    .logo-item:last-child {
        border-right: none;
    }

    .logo-item img {
        max-height: 172px; 
        width: auto;
        max-width: 85%;
        object-fit: contain;
       /* filter: brightness(0) invert(1);*/
        opacity: 0.92;
        transition: opacity 0.25s ease;
    }

    .logo-item:hover img {
        opacity: 1;
    }

@media (max-width: 1100px) {
    .logo-item {
        min-height: 150px;
    }

        .logo-item img {
            max-height: 60px;
        }
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-item:nth-child(3) {
        border-right: none;
    }

    .logo-item:nth-child(3n) {
        border-right: none;
    }

    .logo-item:nth-child(n+4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 600px) {
    .logo-item {
        padding: 2rem 1.25rem;
        min-height: 120px;
    }

        .logo-item img {
            max-height: 48px;
        }
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-item {
        padding: 1.75rem 1rem;
        min-height: 100px;
    }

        .logo-item:nth-child(2n) {
            border-right: none;
        }

        .logo-item:nth-child(n+3) {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
}