html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    overflow-y: scroll;
    font-family: 'Sora', sans-serif;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.scroll-left {
    animation: scroll-left 32s linear infinite;
}

.scroll-right {
    animation: scroll-right 32s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* Sticky nav shadow once page is scrolled */
.nav-scrolled {
    box-shadow: 0 1px 0 rgba(10, 95, 89, 0.08);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

/* Chat bubble float used on hero / agent illustrations */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes nudge-x {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.arrow-nudge {
    display: inline-block;
    animation: nudge-x 1.2s ease-in-out infinite;
}

/* Soft drifting background blobs used behind hero copy */
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(16px, -18px) scale(1.06); }
    66% { transform: translate(-14px, 12px) scale(0.96); }
}

.blob-float {
    animation: blobFloat 9s ease-in-out infinite;
}

.blob-float-slow {
    animation: blobFloat 13s ease-in-out infinite;
}

/* Pulsing glow ring for primary CTAs */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253, 195, 73, 0.55); }
    50% { box-shadow: 0 0 0 14px rgba(253, 195, 73, 0); }
}

.pulse-glow {
    animation: pulseGlow 2.4s ease-out infinite;
}

/* Small pop-in used for badges / chips appearing on screen */
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.6); }
    70% { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.pop-in {
    opacity: 0;
    animation: popIn 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
}

/* Three-dot typing indicator loop */
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.typing-dot {
    animation: typingDot 1.3s ease-in-out infinite;
}

/* Slow continuous pulse for "live" status indicators */
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 95, 89, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(10, 95, 89, 0); }
}

.live-pulse {
    animation: livePulse 1.8s ease-out infinite;
}
