html { scroll-behavior: smooth; }
.card { background: white; border-radius: 1rem; box-shadow: 0 1px 3px rgba(15, 23, 42, .08); }
.fade-in { animation: fade-in .25s ease-out; }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
