/* =================================================================
   CLEAN THERMAL UI - CUSTOM UTILITIES
================================================================= */

/* --- Custom Scrollbar --- */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f5f5f4; /* stone-100 */
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d6d3d1; /* stone-300 */
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f97316; /* orange-500 */
}

/* --- Global Scrollbar --- */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #fafaf9;
}

body::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 5px;
    border: 2px solid #fafaf9;
}

body::-webkit-scrollbar-thumb:hover {
    background: #ea580c; /* orange-600 */
}

/* --- Animations --- */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* --- Smooth Scroll Behavior --- */
html {
    scroll-behavior: smooth;
}

/* --- Header Scrolled State --- */
.vision-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.vision-header.scrolled .brand-logo {
    color: #1c1917; /* stone-900 */
}