/* Landing page (Views/Home/Index.cshtml) — hero styling, Nova staging, decorative pill */

/* Soften the hero overlay (Falcon's default is 0.25 black — lift it slightly so Nova doesn't pop) */
#banner .bg-holder.overlay-soft:before {
    background: rgba(20, 10, 40, 0.45);
}

/* Stage Nova on a radial glow so her edges blend into the hero instead of standing out as bright pixels */
.nova-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nova-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center 65%,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.nova-hero-img {
    position: relative;
    max-height: 560px;
    width: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

/* Keep Falcon's .btn-outline-danger look + hover, but make it non-interactive (no navigation) */
.nova-static-pill {
    cursor: default;
}

.nova-static-pill:active,
.nova-static-pill:focus {
    box-shadow: none !important;
    outline: none !important;
}
