/* V134 — Home hero staggered entrance.
   Forced, deterministic sequence: title -> subtitle -> Explore -> Download CV -> down arrow.
   This animation intentionally plays even when the OS requests reduced motion because the site owner
   explicitly wants the Home hero entrance to be part of the page experience. */

html.home-hero-entry-pending .hero-copy > h1,
html.home-hero-entry-pending .hero-copy .hero-lower > p,
html.home-hero-entry-pending .hero-main-buttons > .button-primary,
html.home-hero-entry-pending .hero-main-buttons > .button-download,
html.home-hero-entry-pending .hero-actions > .scroll-down-button {
  opacity:0;
  transform:translate3d(0,30px,0) scale(.975);
  filter:blur(10px);
  will-change:opacity,transform,filter;
}

/* Final safety state if JS is unavailable after the fail-safe window. */
html.home-hero-entry-ready .hero-copy > h1,
html.home-hero-entry-ready .hero-copy .hero-lower > p,
html.home-hero-entry-ready .hero-main-buttons > .button-primary,
html.home-hero-entry-ready .hero-main-buttons > .button-download,
html.home-hero-entry-ready .hero-actions > .scroll-down-button {
  opacity:1;
  transform:none;
  filter:none;
}
