/* Glassmorphism Hero Section */
:root {
    --accent-blue: #00d4ff;
    --accent-purple: #a855f7;
}

body {
    background: linear-gradient(180deg, #0a0e27 0%, #0a0a1a 30%, #000 60%, #0a0a1a 80%, #0a0e27 100%) !important;
    background-attachment: fixed !important;
    position: relative;
    color: white !important;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Hero Glass */
.hero-glass {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-glass-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    color: white;
}

.hero-title-glass {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white !important;
}

.hero-title-glass .gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-glass {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: white;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.stat-desc {
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: white;
}

/* CTA Buttons */
.hero-cta-glass {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-glass-primary,
.btn-glass-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-glass-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white !important;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.5);
}

.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-glass {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title-glass {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-glass {
        font-size: 1.1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-cta-glass {
        flex-direction: column;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
        justify-content: center;
    }
}
