body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Simplified Branded Cursor Aura */
#cursor-dot, #cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

.cursor-dot-main {
    width: 6px;
    height: 6px;
    background-color: #facc15;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.8);
}

.cursor-dot-outline {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(250, 204, 21, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s cubic-bezier(0.23, 1, 0.32, 1), 
                height 0.2s cubic-bezier(0.23, 1, 0.32, 1), 
                border-color 0.2s;
}

/* Hover Interaction: Aura Expands */
.cursor-hover-active .cursor-dot-outline {
    width: 50px;
    height: 50px;
    border-color: rgba(250, 204, 21, 0.9);
    background-color: rgba(250, 204, 21, 0.1);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
}

.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-mesh {
    background-image: 
        radial-gradient(at 0% 0%, rgba(250, 204, 21, 0.06) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.08) 0px, transparent 40%);
}

@keyframes scroll-v {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.animate-scroll-v {
    animation: scroll-v 40s linear infinite;
}

.animate-scroll-v-reverse {
    animation: scroll-v 55s linear infinite reverse;
}

/* Static Display Carousel */
.carousel-track > div {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.chat-bubble-float {
    position: absolute;
    top: 45%;
    left: 1rem;
    right: 1rem;
    background: white;
    color: black;
    padding: 0.75rem;
    border-radius: 1.25rem;
    border-top-left-radius: 0;
    font-size: 10px;
    font-weight: 700;
    animation: bounce 4s infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

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

/* Logo Slow Dynamic Rotation */
@keyframes logo-slow-pulse {
    0% { transform: rotate(-12deg) scale(1); box-shadow: 0 0 20px rgba(250, 204, 21, 0.3); }
    50% { transform: rotate(-8deg) scale(1.05); box-shadow: 0 0 35px rgba(250, 204, 21, 0.5); }
    100% { transform: rotate(-12deg) scale(1); box-shadow: 0 0 20px rgba(250, 204, 21, 0.3); }
}
.logo-dynamic {
    animation: logo-slow-pulse 6s ease-in-out infinite;
}

/* Error Shake Effect */
@keyframes shake-error {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}
.shake-animate {
    animation: shake-error 0.4s cubic-bezier(.36,.07,.19,.97) both;
    border-color: rgba(239, 68, 68, 0.5) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

/* Carousel Fade Overlays */
#carousel-container::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, #020617 0%, transparent 10%, transparent 90%, #020617 100%);
    z-index: 21;
}

/* FAQ Details */
details summary::-webkit-details-marker {
    display: none;
}
details[open] {
    border-color: rgba(250, 204, 21, 0.3);
}
