@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700;800&display=swap');

:root {
    --bg-cyber-dark: #070709;
    --bg-cyber-card: #0f0f13;
    --bg-cyber-hover: #16161d;
    --color-primary: #06b6d4; /* cyan-500 */
    --color-secondary: #6366f1; /* indigo-500 */
    --color-accent: #a855f7; /* purple-500 */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-cyber-dark);
    color: #e4e4e7;
    overflow-x: hidden;
}

.font-display {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(15, 15, 19, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.glass-panel-glow {
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.glass-panel-glow:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.2);
}

/* Premium Animations */
.transition-premium {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    background-color: var(--bg-cyber-hover);
    border-color: rgba(6, 182, 212, 0.3);
}

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

.animate-float {
    animation: float 6s infinite ease-in-out;
}

/* Decorative Backgrounds */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
}

.cyber-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.03) 50%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Custom form scrollbar & active states */
input:focus, textarea:focus {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

/* FAQ slide-down styling */
#faq-ans-1, #faq-ans-2, #faq-ans-3 {
    transition: max-height 0.4s ease-out;
}

/* Toast alert animations */
.show-toast {
    transform: translateY(0) !important;
    opacity: 1 !important;
}
