/* ============================================================
   PFAI Web Common — site-base.css
   홈/testbed/admin 모두 공유하는 baseline reset 및 utility.
   design-tokens.css 다음, page-specific CSS 보다 먼저 import 한다.

   Phase A scope: box-sizing reset + body margin reset.
   Phase B 에서 scrollbar / animation utility 가 본 파일로 이전된다.
   ============================================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}
