.hero.hero-interactive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
    padding: 7rem 0 5rem;
}

.hero.hero-interactive .hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(1200px 600px at 10% 10%, rgba(148, 163, 255, 0.35), transparent 60%),
        radial-gradient(1000px 500px at 90% 90%, rgba(126, 75, 162, 0.45), transparent 55%),
        linear-gradient(135deg, #4458d4 0%, #6f45a8 45%, #1e3a8a 100%);
}

.hero.hero-interactive .hero-bg-glow {
    position: absolute;
    inset: -15%;
    z-index: -2;
    background:
        radial-gradient(circle at var(--hero-mouse-x, 50%) var(--hero-mouse-y, 50%), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
    filter: blur(12px);
    transition: opacity 0.2s ease;
}

.hero-disintegrate-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 920px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.18s ease;
}

.hero.hero-interactive .hero-title {
    text-shadow: 0 12px 40px rgba(15, 23, 42, 0.35);
}

.hero.hero-interactive .hero-subtitle {
    max-width: 760px;
}

.hero.hero-interactive .hero-price {
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.25);
}

.hero.hero-interactive .hero-cta .btn {
    min-width: 220px;
}

@media (max-width: 968px) {
    .hero.hero-interactive {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .hero.hero-interactive .hero-bg-glow,
    .hero-disintegrate-canvas {
        opacity: 0.55;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero.hero-interactive .hero-bg-glow,
    .hero-content-wrap {
        transition: none;
    }
}
