/* Minimal global base, matching the live pages. Kept deliberately small: the system is a
   token + component system, not a utility framework. */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font-core);color:var(--text-body);background:var(--surface-page);-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,p{margin:0}
img{max-width:100%}
a{color:var(--link);text-decoration:none;transition:color var(--dur-quick) var(--ease-standard)}
a:hover{color:var(--link-hover)}
@media (prefers-reduced-motion:reduce){*{animation:none!important;scroll-behavior:auto!important}}
