/* ============================================================
   CPAC — Base element defaults
   Lightweight resets + brand typographic defaults.
   ============================================================ */

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Brand utility helpers (optional, used by cards & kits) */
.cpac-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}

.cpac-divider {
  height: var(--divider);
  width: 72px;
  border-radius: var(--radius-pill);
  background: var(--grad-blue);
}

.cpac-zone {
  background: var(--bg-zone);
}
