#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0f172a;
    /* Fallback */
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-20) 0;
    overflow: visible;
    /* Corrected to visible to prevent clipping aura animation */
    background: transparent;
    /* Transparent to show the fixed background */
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8);
    background: rgba(15, 23, 42, 0.4);
    /* Subtle protection layer */
    backdrop-filter: blur(8px);
    /* Blur to make text pop */
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    background: var(--aurora-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /* Shadow for legibility */
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: white;
    /* Changed from secondary for more contrast */
    margin-bottom: var(--space-10);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}






/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-32) 0 var(--space-16);
        min-height: 80vh;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
        padding: 0 var(--spacing-md);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-xl);
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-buttons {
        padding: 0 var(--spacing-md);
    }
}