:root {
    --bg-deep: #05070A; /* Midnight Navy */
    --teal-accent: #2DD4BF; /* Electric Teal */
    --blue-accent: #3B82F6; /* Royal Indigo */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: #f8fafc;
    /* The Midnight Blueprint + Mesh Clouds */
    background-image: 
        /* Thin Grid Lines */
        linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px),
        /* Soft Mesh Clouds */
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(45, 212, 191, 0.08), transparent 35%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

h1, h2, h3, .font-display { font-family: 'Outfit', sans-serif; }

/* Premium Glassmorphism */
.glass-object {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-object:hover {
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 20px 50px -10px rgba(45, 212, 191, 0.1);
}

/* The 'Claim My Demo' Button Glow */
.btn-primary-glow {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.4);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}
.btn-primary-glow:hover {
    background: rgba(45, 212, 191, 0.2);
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
    transform: translateY(-2px);
}

/* Animations - GPU Accelerated for Zero Lag */
@keyframes breathing {
    0%, 100% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.02) translateZ(0); box-shadow: 0 25px 50px -10px rgba(45, 212, 191, 0.15); }
}
.bot-alive { animation: breathing 6s ease-in-out infinite; }

.text-gradient-premium {
    background: linear-gradient(to right, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--teal-accent) 0%, var(--blue-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typing Indicator for Eden */
.typing-dot {
    width: 5px; height: 5px; background: var(--teal-accent); border-radius: 50%;
    display: inline-block; animation: typing 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

.eden-transition { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

/* Custom Chat Scrollbar */
.chat-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.chat-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.chat-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(45, 212, 191, 0.3); /* Teal accent */
    border-radius: 10px;
}
.chat-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 212, 191, 0.6);
}