/* =========================================================================
   Homepage Specific Styles (index.css)
   ========================================================================= */

/* Utilities */
.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-sm {
    font-size: 0.9rem;
}

.text-muted {
    color: var(--text-muted)
}

.font-bold {
    font-weight: 700;
}

.tracking-tight {
    letter-spacing: -0.04em;
}

/* Premium Glassmorphism Lava Lamp Background */
.lava-glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #030014;
    /* Deep, dark space-like violet-black */
}

.lava-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatingBlobs 12s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF3D00, #FF007A);
    /* Vibrant neon red/pink */
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3D5AFE, #00D4FF);
    /* Deep blue to cyan */
    bottom: -20%;
    right: -5%;
    animation-delay: -3s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #7B1FA2, #E040FB);
    /* Rich purple */
    top: 30%;
    right: 20%;
    animation-delay: -6s;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF9100, #FFEA00);
    /* Glowing orange/yellow */
    bottom: 10%;
    left: 5%;
    animation-delay: -9s;
}

.lava-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 20, 0.4);
    z-index: 1;
}

@keyframes floatingBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(150px, -150px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 150px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 12, 0.85);
    /* Slightly darker for better contrast */
    border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo span {
    font-size: 1.25rem;
}

a.logo {
    text-decoration: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--trans-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grad-purple);
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    align-items: center;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Removed old hero visual animations */

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-card {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-left: 4px solid var(--grad-purple);
    padding: 1.5rem 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 6px;
}

.dot.purple {
    background: var(--grad-purple);
    box-shadow: 0 0 10px var(--grad-purple);
}

.dot.pink {
    background: var(--grad-pink);
    box-shadow: 0 0 10px var(--grad-pink);
}

.dot.teal {
    background: var(--grad-teal);
    box-shadow: 0 0 10px var(--grad-teal);
}

/* Audience Section (Now Dashboard Features) */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--trans-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive adjustments */
@media(max-width: 900px) {

    .hero-content,
    .problem-grid,
    .audience-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-ctas,
    .feature-list li {
        justify-content: center;
    }

    .problem-grid .reveal.glass-card {
        text-align: center;
    }

    /* Fix alignment for How It Works on mobile */
    .quote-card {
        text-align: left;
    }

    .nav-links {
        display: none;
    }

    /* Add mobile dropdown later if asked */
    .orb-container {
        margin: 0 auto;
    }
}