/* ================== AURORA ОРБЫ — заменили fog ================== */
/* Вторая орба внизу hero для глубины */
.hero::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30%;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(244, 228, 188, 0.18), transparent 60%);
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
    animation: auroraFloat 30s ease-in-out infinite;
}
