/* ============================================
   HYPNOTIC EFFECTS - ILUMINEX
   ============================================ */

/* Performance Badges */
.hero-performance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.perf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 100px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.perf-badge:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.perf-icon {
    font-size: 1.2rem;
}

.perf-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00e5ff;
    letter-spacing: 0.5px;
}

/* Badge Pulse Animation */
.badge-text {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* Glitch Effect on Hero Title */
.hero-title .gradient-text {
    animation: shimmer 3s linear infinite, glitch 8s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }

    92% {
        transform: translate(-2px, 1px);
        filter: hue-rotate(10deg);
    }

    94% {
        transform: translate(2px, -1px);
        filter: hue-rotate(-10deg);
    }

    96% {
        transform: translate(-1px, 2px);
    }
}

/* Stats Pulse Animation */
.stat-number {
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.7));
        transform: scale(1.03);
    }
}

/* Pulsing Energy Effect on CTA Button */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ctaPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 60px rgba(0, 229, 255, 0.7),
        0 0 100px rgba(139, 107, 255, 0.5);
}

/* Scarcity Message */
.hero-scarcity {
    margin-top: 24px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeInUp 0.8s ease 1s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-scarcity strong {
    color: #00ff88;
    font-weight: 700;
}

/* Animated Border Gradients on Cards */
.philosophy-card::after,
.tech-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(0, 229, 255, 0.4),
            rgba(139, 107, 255, 0.4),
            transparent 70%);
    background-size: 300% 300%;
    animation: borderGlow 6s ease infinite;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.philosophy-card:hover::after,
.tech-card:hover::after {
    opacity: 1;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Exaggerated 3D Hover Effects */
.philosophy-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.02) rotateY(2deg);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.4);
}

/* Floating Icon Animation */
.card-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Cascade Dots Breathing */
.cascade-dot {
    animation: dotBreathe 2s ease-in-out infinite;
}

@keyframes dotBreathe {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        transform: scale(1.1);
    }
}