/* Evergreen vignette + faint center glow */
.bg-ambient {
    position: fixed;
    inset: 0;
    z-index: -10;

    background:
        radial-gradient(circle at center,
                        rgba(255,255,255,0.05) 0%,
                        transparent 40%
),
        radial-gradient(circle,
                        transparent 55%,
                        rgba(16,185,129,0.22) 100%
);
}

.hero-title {
    display: inline-block; /* important for transform */
    transform-origin: center;
    cursor: pointer;

    transition:
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title:hover {
    transform: scale(1.04);

    text-shadow:
        0 0 0px rgba(255, 255, 255, 0.0),
        0 0 12px rgba(255, 255, 255, 0.18),
        0 0 30px rgba(255, 255, 255, 0.10);
}

.nav-link {
    color: rgb(212 212 216); /* zinc-300 */
    /* text-decoration: underline; */

    transition:
        color 200ms ease,
        text-shadow 200ms ease;
}

.nav-link:hover {
    color: rgb(255 255 255);

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.15);
}
