.company-brand {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 3px 2px 30px;
}

.company-logo-frame {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.company-logo-frame::after {
    content: "";
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -42%;
    width: 28%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(130, 255, 212, .18), transparent);
    animation: company-logo-shine 7s ease-in-out infinite;
}

.company-logo-full {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 7px 15px rgba(0, 0, 0, .22));
}

.company-logo-mark {
    display: none;
}

.brand-product-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #9faeb9;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.55px;
}

.brand-product-name i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3690d4;
    box-shadow: 0 0 10px rgba(54, 212, 154, .8);
}

.mobile-brand img {
    display: block;
    width: 175px;
    height: auto;
}

@keyframes company-logo-shine {
    0%,
    45% {
        left: -42%;
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    75%,
    100% {
        left: 118%;
        opacity: 0;
    }
}

.sidebar {
    overflow: hidden;
    isolation: isolate;
}

.sidebar::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(circle at 15% 34%, rgba(36, 203, 147, .12), transparent 25%),
        radial-gradient(circle at 92% 68%, rgba(51, 145, 190, .11), transparent 28%),
        linear-gradient(rgba(113, 223, 187, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(113, 223, 187, .035) 1px, transparent 1px);
    background-size: auto, auto, 34px 34px, 34px 34px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 8%, #000 22%, #000 88%, transparent);
    mask-image: linear-gradient(to bottom, transparent 8%, #000 22%, #000 88%, transparent);
    pointer-events: none;
}

.sidebar > .brand,
.sidebar > nav,
.sidebar > .sidebar-foot {
    position: relative;
    z-index: 3;
}

.sidebar-service-art {
    position: absolute;
    z-index: 1;
    inset: 112px 0 92px;
    overflow: hidden;
    opacity: .58;
    pointer-events: none;
    transition: opacity .3s ease;
}

.anonymous-page .sidebar-service-art {
    opacity: .95;
}

.service-bubble {
    --service-size: 62px;
    --service-shift-x: 14px;
    --service-shift-y: -22px;
    --service-motion-offset: 0s;
    position: absolute;
    display: grid;
    width: var(--service-size);
    height: var(--service-size);
    place-items: center;
    border: 1px solid rgba(112, 235, 193, .27);
    border-radius: 50%;
    color: rgba(135, 239, 205, .78);
    background:
        radial-gradient(circle at 30% 22%, rgba(194, 255, 234, .18), transparent 27%),
        linear-gradient(145deg, rgba(18, 104, 82, .38), rgba(23, 58, 66, .42));
    box-shadow:
        inset 0 0 20px rgba(116, 246, 202, .08),
        0 12px 32px rgba(0, 0, 0, .18),
        0 0 24px rgba(33, 187, 137, .07);
    backdrop-filter: blur(3px);
    animation: service-bubble-float 8s ease-in-out infinite;
    animation-delay: calc(var(--service-motion-offset) + var(--motion-shift, 0s));
}

.service-bubble::before {
    content: "";
    position: absolute;
    top: 14%;
    left: 20%;
    width: 24%;
    height: 12%;
    border-radius: 50%;
    background: rgba(218, 255, 243, .22);
    transform: rotate(-28deg);
}

.service-bubble svg {
    width: 55%;
    height: 55%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-bubble-1 {
    --service-size: 70px;
    --service-shift-x: 18px;
    --service-shift-y: -26px;
    top: 7%;
    left: 18px;
    animation-duration: 9s;
}

.service-bubble-2 {
    --service-size: 52px;
    --service-shift-x: -15px;
    --service-shift-y: -20px;
    top: 24%;
    right: 16px;
    --service-motion-offset: -4s;
    animation-duration: 7.5s;
}

.service-bubble-3 {
    --service-size: 82px;
    --service-shift-x: -20px;
    --service-shift-y: -30px;
    top: 42%;
    left: 82px;
    --service-motion-offset: -6s;
    animation-duration: 11s;
}

.service-bubble-4 {
    --service-size: 48px;
    --service-shift-x: 16px;
    --service-shift-y: -18px;
    top: 63%;
    left: 20px;
    --service-motion-offset: -2s;
}

.service-bubble-5 {
    --service-size: 64px;
    --service-shift-x: -17px;
    --service-shift-y: -24px;
    top: 76%;
    right: 18px;
    --service-motion-offset: -7s;
    animation-duration: 10s;
}

.service-bubble-6 {
    --service-size: 38px;
    --service-shift-x: 12px;
    --service-shift-y: -15px;
    top: 17%;
    left: 105px;
    --service-motion-offset: -5s;
    animation-duration: 6.5s;
}

@keyframes service-bubble-float {
    0%,
    100% {
        transform: translate3d(0, 12px, 0) rotate(-5deg);
    }

    50% {
        transform: translate3d(var(--service-shift-x), var(--service-shift-y), 0) rotate(7deg);
    }
}

.sidebar nav a:first-child {
    background: transparent;
    color: #c6ced4;
}

.sidebar nav a.active,
.sidebar nav a.active:hover {
    background: var(--green);
    color: #fff;
}

.it-animation {
    position: relative;
    margin: 30px 6px 0;
    padding: 12px 10px 14px;
    overflow: hidden;
    border: 1px solid rgba(66, 211, 159, .2);
    border-radius: 16px;
    background:
        radial-gradient(circle at 75% 20%, rgba(21, 128, 94, .25), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(21, 128, 94, .08));
}

.it-animation::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(100deg, transparent 25%, rgba(126, 255, 208, .08), transparent 75%);
    animation: tech-scan 5s ease-in-out infinite;
}

.it-network {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 150px;
}

.wire {
    fill: none;
    stroke: #2f82c1;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    opacity: .55;
    animation: data-flow 5s linear infinite;
}

.wire-two { animation-duration: 6.5s; }
.wire-three { animation-duration: 4.5s; }

.node {
    fill: #55a4e0;
    filter: drop-shadow(0 0 7px rgba(85, 224, 173, .75));
    transform-box: fill-box;
    transform-origin: center;
    animation: node-pulse 2.4s ease-in-out infinite;
}

.node-two { animation-delay: .5s; }
.node-three { animation-delay: 1s; }
.node-four { animation-delay: 1.5s; }

.server-device,
.screen-device {
    fill: rgba(16, 48, 55, .92);
    stroke: #8fc1e8;
    stroke-width: 2;
    animation: device-float 4s ease-in-out infinite;
}

.screen-device {
    animation-delay: -1.8s;
}

.signal {
    fill: none;
    stroke: #55a4e0;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.it-copy {
    position: relative;
    z-index: 1;
    text-align: center;
}

.it-copy span {
    display: block;
    color: #d9efff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.it-copy small {
    color: #8399a9;
    font-size: 10px;
}

@keyframes data-flow {
    to { stroke-dashoffset: -64; }
}

@keyframes node-pulse {
    0%, 100% { transform: scale(.75); opacity: .55; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes device-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes tech-scan {
    0%, 30% { transform: translateX(-120%); }
    65%, 100% { transform: translateX(120%); }
}

@media (max-width: 1000px) {
    .company-brand {
        align-items: center;
        padding: 2px 5px 28px;
    }

    .company-logo-frame {
        width: 48px;
        overflow: visible;
    }

    .company-logo-full,
    .brand-product-name {
        display: none;
    }

    .company-logo-mark {
        display: block;
        width: 48px;
        height: 48px;
        object-fit: contain;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .22));
    }

    .it-animation {
        display: none;
    }

    .sidebar-service-art {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .it-animation *,
    .it-animation::after,
    .service-bubble,
    .company-logo-frame::after {
        animation: none !important;
    }
}
