/* =========================================================================
   IMPERSONAS — DESIGN SYSTEM
   Global stylesheet entry point. Consumers link THIS file only.
   Keep this as @import lines + a light reset. No component rules here.
   ========================================================================= */

@import "tokens/fonts.css";
@import "tokens/colors.css";
@import "tokens/typography.css";
@import "tokens/spacing.css";

/* ---- Minimal reset shared by every surface ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Every rectangle is hard-edged unless an element is explicitly a circle/square selector. */
button, input, select, textarea { font-family: inherit; border-radius: var(--radius); }
img { display: block; max-width: 100%; }
