/* =============================================================
   Reset + base styles + font CDN imports
   Loaded after tokens.css and theme-light.css.

   Fonts: Satoshi (Fontshare) + JetBrains Mono (Google).
   For offline Puppeteer renders, see /ds/fonts/ for self-hosted
   versions and switch the CDN imports for @font-face declarations.
   ============================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--aise-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--aise-text);
  background: var(--aise-canvas);
}

img, svg, video {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--aise-selection-bg);
  color: var(--aise-selection-fg);
}
