.global-3d-stage {
    position: absolute;
    inset: -4% -8% -2% -4%;
    z-index: 3;
    overflow: visible;
    pointer-events: auto;
    transform:
        translate3d(0, calc(var(--globe-scroll, 0) * -46px), 0)
        scale(calc(1 - var(--globe-scroll, 0) * 0.09));
    transform-origin: 50% 48%;
    transition: opacity 180ms linear;
}

.global-3d-stage canvas {
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 38px 74px rgba(0, 0, 0, 0.34));
}

.global-3d-stage::before {
    content: "";
    position: absolute;
    inset: 12% 8% 9%;
    z-index: -1;
    border: 1px solid rgba(104, 227, 255, 0.12);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 115, 152, 0.13), transparent 66%);
    box-shadow:
        inset 0 0 70px rgba(46, 211, 255, 0.08),
        0 0 80px rgba(46, 211, 255, 0.06);
    pointer-events: none;
}

.global-3d-stage::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 13%;
    bottom: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 211, 255, 0.65), transparent);
    box-shadow: 0 0 20px rgba(46, 211, 255, 0.44);
    pointer-events: none;
}

.global-node-labels {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.global-node-label {
    position: absolute;
    display: grid;
    gap: 0.18rem;
    min-width: 118px;
    padding: 0.58rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(5, 24, 34, 0.58);
    color: white;
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.global-node-label strong {
    color: #f7c948;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.global-node-label small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.66rem;
    font-weight: 750;
    white-space: nowrap;
}

.global-node-label[data-hub="true"] {
    border-color: rgba(247, 201, 72, 0.42);
    background: rgba(7, 32, 42, 0.74);
}

.global-node-label[data-hub="true"]::before {
    content: "";
    position: absolute;
    left: -0.32rem;
    top: 50%;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 16px rgba(247, 201, 72, 0.8);
    transform: translate(-50%, -50%);
}

.global-3d-status {
    position: absolute;
    right: 6%;
    top: 5%;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.48rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.global-3d-status::before {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #39e6be;
    box-shadow: 0 0 14px rgba(57, 230, 190, 0.85);
    animation: globalStatusPulse 2.2s ease-in-out infinite;
}

.hero-visual > .supply-orbit,
.hero-visual > .hero-product-card,
.hero-visual > .feature-chip,
.hero-visual > .hero-metric {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hero-visual::before {
    inset: 4% -4% 2% !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle at 50% 50%, rgba(46, 211, 255, 0.14), transparent 58%),
        radial-gradient(circle at 68% 38%, rgba(247, 201, 72, 0.08), transparent 28%) !important;
}

.experience-band {
    transition: transform 180ms linear, opacity 180ms linear;
    transform: translateY(calc((1 - var(--globe-scroll, 0)) * 22px));
}

@keyframes globalStatusPulse {
    0%, 100% { opacity: 0.62; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.22); }
}

@media (max-width: 980px) {
    .global-3d-stage {
        inset: -6% 0 -4%;
    }

    .global-node-label {
        min-width: 104px;
        padding: 0.48rem 0.58rem;
    }
}

@media (max-width: 640px) {
    .global-3d-stage {
        inset: -8% -12% -5%;
        pointer-events: none;
    }

    .global-node-label {
        min-width: 92px;
        padding: 0.42rem 0.48rem;
    }

    .global-node-label strong {
        font-size: 0.66rem;
    }

    .global-node-label small {
        font-size: 0.58rem;
    }

    .global-3d-status {
        right: 1%;
        top: 3%;
        font-size: 0.58rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .global-3d-stage {
        transform: none;
        pointer-events: none;
    }

    .global-3d-status::before {
        animation: none;
    }
}
