/* ==========================================================================
   ASSURIFY LANDING PAGE ENHANCEMENT LAYER (progressive overrides)
   ========================================================================== */

/* --- Ambient Floating Orbs for Hero Background --- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 380px;
    height: 380px;
    background: var(--violet, #7C3AED);
    top: 15%;
    right: 10%;
    animation: orbFloat1 22s ease-in-out infinite;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    background: var(--blue, #2563EB);
    bottom: 10%;
    left: 8%;
    animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.15); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
}

/* --- Interactive Hover Enhancements for Cards & Mockups --- */
.feat-card, .why-col, .comp-card, .infra-card, .prod-hl, .plan-card, .faq-item {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease !important;
}

.feat-card:hover, .why-col:hover, .infra-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(10, 15, 30, 0.08), 
                0 0 32px rgba(79, 70, 229, 0.06) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
}

.prod-hl:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.06) !important;
}

/* --- Consistent Buttons & Hover States --- */
.btn {
    border-radius: 12px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
}

.btn i {
    transition: transform 0.2s ease;
}

.btn:hover i.fa-arrow-right, 
.btn:hover i.fa-arrow-up-right-from-square {
    transform: translate(3px, -1px);
}

/* --- Keyboard Navigation Focus Outline (Accessibility) --- */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible,
.faq-btn:focus-visible {
    outline: 2px solid var(--blue, #2563EB) !important;
    outline-offset: 4px !important;
}

/* --- Sticky Nav Transition --- */
.nav {
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, height 0.3s ease !important;
}

.nav.scrolled {
    height: 64px !important;
    background: rgba(10, 15, 30, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

/* --- Smooth Mobile Nav Drawer Slide-down --- */
.nav-drawer {
    display: flex !important;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- Workspace Transition Launcher Overlay --- */
.workspace-launcher {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.workspace-launcher.active {
    opacity: 1;
    pointer-events: auto;
}

.launcher-card {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(99, 102, 241, 0.15);
    transform: scale(0.96);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.workspace-launcher.active .launcher-card {
    transform: scale(1);
}

.launcher-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launcher-spinner {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(99, 102, 241, 0.08);
    border-top: 3px solid var(--blue, #2563EB);
    border-radius: 50%;
    animation: launcherSpin 0.8s linear infinite;
}

.launcher-icon {
    font-size: 1.8rem;
    color: #818CF8;
    filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.4));
}

.launcher-title {
    font-family: var(--font-display, 'Syne', sans-serif);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.launcher-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.launcher-progress-bar-wrap {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.launcher-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--indigo, #4F46E5), var(--blue, #2563EB));
    border-radius: 999px;
    transition: width 0.7s cubic-bezier(0.1, 0.8, 0.25, 1);
}

@keyframes launcherSpin {
    to { transform: rotate(360deg); }
}
