/* Home Page Styles - Extracted from inline CSS */

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Orbs - Simplified (removed heavy blur) */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Reduced from 120px */
    opacity: 0.25;
    /* Reduced from 0.3 */
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    /* Reduced from 500px */
    height: 400px;
    background: #2dd4bf;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    /* Reduced from 400px */
    height: 300px;
    background: #f97316;
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    /* Reduced from 350px */
    height: 250px;
    background: #3b82f6;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

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

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

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

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    /* Reduced from 30px */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-5px);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    /* Reduced from 20px */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px -10px rgba(45, 212, 191, 0.3);
}

/* Stat Numbers */
.stat-number {
    background: linear-gradient(135deg, #2dd4bf 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade In Animation */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Glow - Simplified */
.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
        /* Reduced intensity */
    }

    50% {
        box-shadow: 0 0 30px rgba(45, 212, 191, 0.6);
        /* Reduced from 40px/0.8 */
    }
}

/* Mobile Optimizations - Enhanced for Performance */
@media (max-width: 768px) {

    /* Disable heavy animations on mobile for better performance */
    .scroll-fade-in,
    .fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Disable orb animations on mobile */
    .orb {
        animation: none !important;
        filter: blur(40px);
        opacity: 0.15;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 150px;
        height: 150px;
    }

    /* Reduce blur effects for better performance */
    .glass-card,
    .feature-card {
        backdrop-filter: blur(8px);
    }

    /* Disable hover effects on mobile */
    .glass-card:hover,
    .feature-card:hover {
        transform: none;
    }

    /* Disable pulse glow on mobile */
    .pulse-glow {
        animation: none !important;
    }
}