/* ===========================================================================
   Get Responsive — Base element defaults & text utilities
   Optional but recommended layer: sets sensible document defaults from the
   tokens so plain HTML already looks on-brand. Consumers can override freely.
   =========================================================================== */

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-snug);
  margin: 0 0 .5em;
}
h1 { font-size: var(--fs-display); font-weight: var(--fw-black); letter-spacing: var(--ls-display-xl); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-extrabold); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-bold); }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: inherit; }

code, kbd, samp { font-family: var(--font-mono); font-size: .92em; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Text utility classes ---- */

/* Eyebrow / kicker — caps label, optionally with a yellow number chip */
.gr-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0 0 18px;
}
.gr-eyebrow .num {
  font-family: var(--font-mono);
  font-weight: var(--fw-bold);
  font-size: var(--fs-eyebrow);
  color: var(--gr-black);
  background: var(--gr-yellow);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: .05em;
}

/* Section title */
.gr-title {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: 0 0 18px;
  color: var(--text-strong);
}

/* Lede / intro paragraph */
.gr-lede {
  font-size: var(--fs-lede);
  max-width: 62ch;
  color: var(--text-body);
}

.gr-muted { color: var(--text-muted); }

/* Yellow highlight for a word inside a heading */
.gr-hl { color: var(--gr-yellow); }
.gr-hl-amber { color: var(--gr-amber); font-style: normal; }
