/* ============================================
   BASE — Reset, Typography, Utilities
   ============================================ */

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  color: var(--navy);
}

a { cursor: pointer; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* Utilities */
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error   { color: var(--error); }
.text-info    { color: var(--info); }
.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--primary); }
