/**
 * Site document base — ALWAYS ON for every site-hub site.
 * Global reset + body typography. Never toggle per section.
 * Shell chrome (#pf-site-chrome) and section roots inherit from here.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans, system-ui, sans-serif);
  background: var(--color-bg, #0d0f18);
  color: var(--color-text-primary, #e3e3e4);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

#pf-site-chrome,
#pf-app,
#rs-app {
  font-family: inherit;
  color: inherit;
}
