/* =========================================================
   01 — RESET + BASE
   PURPOSE: Browser reset and sitewide foundation.
   RULE: Keep this boring. Do not place component/page styles here.
   ========================================================= */

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--cpc-bg);
  color: var(--cpc-body);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(10, 79, 163, 0.35);
  outline-offset: 3px;
}

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
