/* ===========================================================================
   AI Sales Agent — Base / reset
   Thin element defaults so specimen cards and kits inherit brand type & color.
   Keep this minimal; components carry their own styling.
   ===========================================================================*/

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

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

body {
  margin: 0;
  font: var(--type-body);
  color: var(--text-strong);
  background: var(--surface-card);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; color: var(--text-strong); text-wrap: balance; }
h1 { font: var(--type-display); }
h2 { font: var(--type-h2); }
h3 { font: var(--type-title); }
p  { margin: 0; text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

strong, b { font-weight: var(--fw-bold); }
code, kbd, samp { font-family: var(--font-mono); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Numeric figures (prices, totals, refs) read best tabular + mono */
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
