/* ═══════════════════════════════════════════════
   APEX COACH — Base styles (reset + typography)
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Utility classes */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-2); }
