/* Tech Global Institute — Base element styles + helpers
   Minimal resets and defaults wired to the tokens. */

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ui);
  color: var(--text-strong);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-4);
  font-weight: var(--fw-bold);
}

/* Display headings (campaign / slides) opt in to Montserrat */
.tgi-display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
}

/* Eyebrow / kicker label */
.tgi-eyebrow {
  font-family: var(--font-ui);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--brand-secondary);
}

p { margin: 0 0 var(--space-4); text-wrap: pretty; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--text-link-hover); text-decoration: underline; }

code, pre { font-family: var(--font-mono); font-size: 0.9em; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

::selection { background: var(--tgi-mint); color: var(--tgi-deep-teal); }
