body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Chat Bubbles */
.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(4px);
    animation: fadeIn 0.4s ease-out forwards;
}

.chat-user {
    background-color: #6366f1;
    /* Indigo 500 */
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    margin-left: auto;
}

.chat-ai {
    background-color: #f4f4f5;
    /* Zinc 100 */
    color: #18181b;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid #e4e4e7;
}

/* Dark Mode Hero Chat */
.hero-chat-ai {
    background-color: #27272a;
    /* Zinc 800 */
    color: #e4e4e7;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid #3f3f46;
}

.typing-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #a1a1aa;
    animation: typing 1.4s infinite ease-in-out both;
    margin: 0 1.5px;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.bg-grid-pattern {
    background-image: linear-gradient(to right, #27272a 1px, transparent 1px),
        linear-gradient(to bottom, #27272a 1px, transparent 1px);
    background-size: 40px 40px;
}

.glass-panel {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}