body { font-family: 'Inter', sans-serif; }

#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
}

.glass-card {
    background: rgba(28, 25, 23, 0.2);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.glass-card-2 {
    background: rgba(28, 25, 23, 0.7);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.glass-card-hover {
    background: rgba(28, 25, 23, 0.2);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.glass-card-hover:hover {
	box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), inset 0 0 20px rgba(245, 158, 11, 0.1);
}

.glow-text { 
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3); 
}

.glow-border {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), inset 0 0 20px rgba(245, 158, 11, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card { transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4); }
.pricing-card.popular { border: 2px solid #f59e0b; box-shadow: 0 0 40px rgba(245, 158, 11, 0.5); }

.scan-line {
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    animation: scan 1.5s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}