/* AhuraAuthority — shared stylesheet (skeleton).
   Loaded by the per-program pages at ../../assets/css/styles.css.
   Real design tokens and component styles are added as each program is built. */

:root {
  --bg: #ffffff;
  --text: #1d1d1f;
  --accent: #424245; /* graphite */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}
