/* Modern Gradient Enhancements for Infinity Signals */

/* 1. Glossy Glass Cards */
.feature, .pricing__card, .stat-card {
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover, .pricing__card:hover {
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0.15) 0%, 
        rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(109, 40, 217, 0.3);
}

/* 2. Vibrant Gradient Buttons */
.btn--primary {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

/* 3. Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(109, 40, 217, 0.1),
        rgba(16, 185, 129, 0.1),
        rgba(109, 40, 217, 0.1));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

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

/* 4. Neon Glow Effects */
.pricing__card--popular {
    background: linear-gradient(145deg, 
        rgba(109, 40, 217, 0.2),
        rgba(139, 92, 246, 0.1));
    box-shadow: 
        0 0 20px rgba(109, 40, 217, 0.3),
        0 0 40px rgba(109, 40, 217, 0.2),
        0 0 60px rgba(109, 40, 217, 0.1);
}

/* 5. Modern Text Gradients */
.hero h1 {
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #c084fc 25%,
        #a78bfa 50%,
        #10b981 75%,
        #34d399 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s ease infinite;
}

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

/* 6. Glossy Stat Cards */
.stat {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.stat:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

/* 7. Mesh Gradient Backgrounds */
.pricing {
    position: relative;
    background: 
        radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

/* 8. Aurora Effect for Headers */
.header {
    background: linear-gradient(180deg, 
        rgba(16, 16, 16, 0.95) 0%,
        rgba(16, 16, 16, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: linear-gradient(180deg, 
        rgba(16, 16, 16, 0.98) 0%,
        rgba(26, 26, 36, 0.95) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* 9. Iridescent Hover Effects */
.nav__link {
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav__link:hover {
    color: var(--color-text) !important;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* 10. Modern Color Suggestions */
:root {
    /* Alternative Modern Palettes */
    
    /* Option 1: Cyberpunk Neon */
    --modern-primary: #bd00ff;
    --modern-secondary: #00d4ff;
    --modern-accent: #ff006e;
    
    /* Option 2: Aurora Borealis */
    --aurora-1: #00f5ff;
    --aurora-2: #05ffa1;
    --aurora-3: #b967ff;
    --aurora-4: #fffb96;
    
    /* Option 3: Subtle Luxury */
    --luxury-primary: #9333ea;
    --luxury-secondary: #14b8a6;
    --luxury-gold: #fbbf24;
    
    /* Your current colors are good! But here are tweaks: */
    --enhanced-primary: #7c3aed; /* Brighter purple */
    --enhanced-secondary: #10b981; /* Keep the green */
    --enhanced-accent: #f59e0b; /* Add amber accent */
} 