/* Small overrides on top of Tailwind. Most styling lives in index.html via utility classes. */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem; /* account for sticky header on anchor jumps */
}

body {
  font-feature-settings: "ss01", "cv11";
}

/* Subtle entry animation for hero content */
@keyframes asl-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

#top h1,
#top p,
#top .mt-8 {
  animation: asl-fade-up 0.6s ease-out both;
}
#top p          { animation-delay: 0.08s; }
#top .mt-8      { animation-delay: 0.16s; }
