/* ==========================================================================
   Index Page CSS - MoltShell Homepage
   Hero, Features, Stats, Use Cases, Code Section
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 1.5rem 6.25rem;
    background: var(--gradient-hero);
    position: relative;
}

/* Subtle EU stars pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 51, 153, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(77, 124, 201, 0.08) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    box-shadow: var(--card-shadow);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5em, 6vw, 3.8em);
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-tagline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Responsive Hero
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.25rem 4rem;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-tagline {
        font-size: 1.1em;
    }
    
    .hero-subtitle {
        font-size: 1.05em;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-ctas .btn {
        justify-content: center;
    }
}
