@charset "utf-8";
/* ==========================================================================
   LINKALL 모션 은닉 레이어
   로드 순서: linkall.css(토큰) → linkall-brand.css(히어로·시그니처) → 이 파일
   .js-anim 이 붙었을 때만 감추고, motion.js 가 실패하면 클래스를 뗀다.
   ========================================================================== */
html.js-anim [data-anim="rise"]{opacity:0}
html.js-anim [data-anim="stagger"] > *{opacity:0}
/* mask 는 SplitText 가 자체 마스크로 처리하므로 미리 감추지 않는다.
   감추면 분할 실패 시 영영 안 보인다. */

@media(prefers-reduced-motion:reduce){
  html.js-anim [data-anim],
  html.js-anim [data-anim] > *{opacity:1 !important;transform:none !important}
}
