:root { --primary: #4f46e5; }
body { font-family: 'Inter', sans-serif; background: #f8fafc; }
.animate-fadeIn { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px);} to {opacity:1; transform:translateY(0);} }
.animate-slideInLeft { animation: slideInLeft 0.25s ease-out; }
@keyframes slideInLeft { from { transform: translateX(-100%);} to { transform: translateX(0);} }
.glass { backdrop-filter: blur(12px); }
.scrollbar-thin::-webkit-scrollbar { width:6px; height:6px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background:#cbd5e1; border-radius:9999px; }
.focus-ring:focus { outline:none; ring:2px; ring-color: #6366f1; }
