/* ============================================================
   Base / reset / typography
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-blue); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--c-blue-600); }
ul, ol { padding-left: 1.2em; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Headings */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; font-weight: 800; letter-spacing: -0.01em; color: var(--c-ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Display utility — Anton condensed caps */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; line-height: .92; text-transform: uppercase; }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--font-head);
  font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: .5em;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--c-volt); border-radius: 2px; }
.on-dark .kicker { color: #9db8ff; }

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 7vw, 96px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.on-dark { background: var(--c-dark); color: #C9D2E6; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.bg-mist { background: var(--c-mist); }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(16px, 2vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .cols-4 { grid-template-columns: repeat(2,1fr); } .cols-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 640px; margin-bottom: clamp(24px, 3vw, 40px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .4rem; }
.section-head p { color: var(--c-muted); font-size: var(--fs-lead); margin-top: .6rem; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px 16px; z-index: 1000; border-radius: var(--r-sm); }

:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 2px; }
