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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #020617; /* Slate 950 */
    color: #f8fafc; /* Slate 50 */
    overflow-x: hidden;
}

/* Background effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(2,6,23,0) 70%);
    top: -200px;
    left: -200px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-glow-right {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, rgba(2,6,23,0) 70%);
    bottom: -100px;
    right: -100px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

/* Glassmorphism */
.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Chat Mockup Animations */
@keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes clickPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

@keyframes selectButton {
    0% { background-color: #ffffff; color: #0f172a; }
    50% { background-color: #cbd5e1; color: #0f172a; }
    100% { background-color: #3b82f6; color: #ffffff; }
}
