/* Advanced Particles & Flares */
.hero-flare {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 124, 73, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: drift 20s infinite alternate linear;
    pointer-events: none;
}
.hero-flare-2 {
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(7, 24, 13, 0.8) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: drift2 25s infinite alternate linear;
    pointer-events: none;
}
@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 50px); }
}
@keyframes drift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, -100px) scale(1.1); }
}\n
