﻿.imgbg {
    position: relative;
    overflow: hidden;
}

.imgbg_in {
    width: 75%;
}

.orbit-bg {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(var(--accent-rgb),.08);
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.orbit1 {
    width: 260px;
    height: 260px;
    animation: rotateCW 18s linear infinite;
}

.orbit2 {
    width: 360px;
    height: 360px;
    animation: rotateCCW 26s linear infinite;
}

.orbit3 {
    width: 470px;
    height: 470px;
    animation: rotateCW 32s linear infinite;
}

.orbit4 {
    width: 600px;
    height: 600px;
    animation: rotateCCW 42s linear infinite;
}

@keyframes rotateCW {

    from {
        transform: rotate(0deg);
    }

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

@keyframes rotateCCW {

    from {
        transform: rotate(360deg);
    }

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

.orb {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(var(--accent-rgb),.35);
}

.o1 {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.o2 {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.o3 {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.o4 {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient( rgba(var(--accent-rgb),.08), transparent 70% );
    filter: blur(70px);
}

.orbit-bg {
    -webkit-mask-image: radial-gradient( circle, #000 25%, rgba(0,0,0,.7) 55%, transparent 100% );
    mask-image: radial-gradient( circle, #000 25%, rgba(0,0,0,.7) 55%, transparent 100% );
}

.orb {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.8);
        opacity: 1;
    }
}








.imgbg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.feature-visual-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .feature-visual-inner img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

.blueprint-grid {
    position: absolute;
    width: 120%;
    height: 120%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.grid {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient( to right, rgba(var(--accent-rgb),.12) 0, rgba(var(--accent-rgb),.12) 1px, transparent 1px, transparent 45px ), repeating-linear-gradient( to bottom, rgba(var(--accent-rgb),.12) 0, rgba(var(--accent-rgb),.12) 1px, transparent 1px, transparent 45px );
    opacity: .55;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    opacity: .08;
    animation: pulseNode 5s ease-in-out infinite;
}

.n1 {
    top: 18%;
    left: 22%;
    animation-delay: .5s;
}

.n2 {
    top: 35%;
    left: 62%;
    animation-delay: 2s;
}

.n3 {
    top: 62%;
    left: 48%;
    animation-delay: 1s;
}

.n4 {
    top: 72%;
    left: 76%;
    animation-delay: 3s;
}

.n5 {
    top: 50%;
    left: 18%;
    animation-delay: 4s;
}

.n6 {
    top: 82%;
    left: 36%;
    animation-delay: 2.5s;
}

@keyframes pulseNode {

    0% {
        opacity: .05;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(1.7);
        box-shadow: 0 0 18px rgba(var(--accent-rgb),.25);
    }

    100% {
        opacity: .05;
        transform: scale(1);
    }
}

.packet {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--accent);
    opacity: .12;
}

.p1 {
    top: 28%;
    left: 12%;
    animation: movePacket1 12s linear infinite;
}

.p2 {
    top: 65%;
    left: 72%;
    animation: movePacket2 10s linear infinite;
}

.p3 {
    top: 42%;
    left: 52%;
    animation: movePacket3 14s linear infinite;
}

@keyframes movePacket1 {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(40px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes movePacket2 {

    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

@keyframes movePacket3 {

    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(25px,-25px);
    }

    100% {
        transform: translate(0,0);
    }
}

.blueprint-grid::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: 40%;
    top: 20%;
    background: radial-gradient( rgba(var(--accent-rgb),.08), transparent 70% );
    filter: blur(60px);
    animation: gridGlow 10s ease-in-out infinite;
}

@keyframes gridGlow {

    0% {
        transform: translate(-20px,-10px);
    }

    50% {
        transform: translate(25px,20px);
    }

    100% {
        transform: translate(-20px,-10px);
    }
}


