/*
 * Public hero atmosphere v3.
 *
 * Physical market atmosphere only. The projected radar is the sole system
 * permitted to emit an outward sweep, ring, cone, or beam through open space.
 * These grounded pools add depth without inventing a second route or ray.
 */
.sh-public-home .sh-public-hero-atmosphere {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.sh-public-home .sh-public-hero-atmosphere::before {
    background:
        radial-gradient(ellipse 40% 24% at 73% 76%, rgba(20,203,238,.18), transparent 72%),
        radial-gradient(ellipse 18% 9% at 55% 67%, rgba(255,178,50,.12), transparent 75%);
    content: "";
    inset: 0;
    opacity: .52;
    position: absolute;
}

.sh-public-home .sh-public-hero-atmosphere::after {
    content: none;
}

/* The authored plate previously added a second scene-wide diagonal sweep.
 * Keep its market image and radar, but never emit a non-radar light shaft. */
.sh-public-home .sh-public-hero-art::after {
    animation: none;
    content: none;
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .sh-public-home .sh-public-hero-atmosphere::before {
        animation: none;
        opacity: .34;
    }
}
