/*.hero-platform-background {*/
/*    background: linear-gradient(135deg,*/
/*    #1a1a2e 0%,*/
/*    #16213e 25%,*/
/*    #0f3460 50%,*/
/*    #533483 75%,*/
/*    #bd3794 100%) !important;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background-size: cover;*/
/*}*/

.hero-platform-background {
    background: url('/wp-content/uploads/2025/06/Microsoft-annoucement-website-background-2000x1000-ver-2.png') no-repeat top center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
}


@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.integration-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 0;   /* lowered from 1 */
    opacity: 0.9;
}

.hero-platform-background .fl-row-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-platform-background .fl-heading-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-platform-background .fl-rich-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


.platform {
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 0;


    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.platform {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 30%, rgba(0,0,0,0.6) 100%);
    box-shadow:
            0 0 8px 2px rgba(255, 255, 255, 0.15),
            0 0 20px 6px rgba(255, 255, 255, 0.05) !important;
}

.platform svg {
    opacity: 0.7;
}
.platform.hub svg {
    opacity: 0.7;
}

.platform::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: haloFade 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.5;
}

.platform.hub::after {
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    animation: haloFade 3.5s ease-in-out infinite;
}

@keyframes haloFade {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}


.platform.hub {
    width: 80px !important;
    height: 80px !important;
    font-size: 36px !important;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 30%, rgba(0,0,0,0.5) 100%) !important;
    box-shadow:
            0 0 6px 2px rgba(255, 255, 255, 0.3),
            0 0 15px 6px rgba(255, 255, 255, 0.15),
            0 0 25px 12px rgba(255, 255, 255, 0.08) !important;
}


@keyframes pulseRing {
    0%, 100% {
        box-shadow:
                0 0 10px 3px rgba(255, 150, 100, 0.4),
                0 0 25px 10px rgba(255, 150, 100, 0.2),
                0 0 40px 18px rgba(255, 150, 100, 0.1);
    }
    50% {
        box-shadow:
                0 0 15px 6px rgba(255, 150, 100, 0.6),
                0 0 35px 15px rgba(255, 150, 100, 0.3),
                0 0 50px 25px rgba(255, 150, 100, 0.15);
    }
}

.platform.hub {
    animation: pulseRing 4s ease-in-out infinite;
}


.platform i {
    font-size: calc(var(--platform-height, 30px) * 0.7) !important;
    opacity: 0.5;
}

.platform.hub i {
    font-size: calc(var(--platform-height, 60px) * 0.6) !important;
}


.network-line {

}

.network-line::before {

}

@keyframes glowMove {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}




@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.orbit-ring {
    display: none;
}

.fast-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 100, 255, 0.9);
    box-shadow: 0 0 8px rgba(200, 100, 255, 0.5);
}



@media (max-width: 768px) {
    .platform {
        display: none !important;
    }
}