
/* Custom animations & polish */
:root { --brand:#12355b; --accent:#ffb703; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeInUp { animation: fadeInUp .8s ease both; }
.animate-section { animation: fadeInUp .6s ease both; }
@media (prefers-reduced-motion: reduce) {
  .animate-fadeInUp, .animate-section { animation: none !important; }
}
[data-elevate]{transition: box-shadow .2s ease;}
@supports (animation-timeline: scroll()) {
  [data-elevate]{animation: headerElevate linear both; animation-timeline: scroll(); animation-range: 0 200px;}
  @keyframes headerElevate { from { box-shadow: none;} to { box-shadow: 0 10px 30px rgba(2,6,23,.12);} }
}
