body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--text-base);
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  color: var(--white);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}

h4 {
  font-size: var(--text-lg);
  line-height: 1.3;
}

/* ── Body text ── */
p {
  color: var(--grey-6);
  line-height: 1.7;
  font-size: var(--text-lg);
}

strong {
  color: var(--pearl);
  font-weight: 600;
}

/* ── Utility classes ── */
.text-brand {
  color: var(--brand-400);
}

.text-glow {
  color: var(--brand-400);
  text-shadow: 0 0 60px rgba(132, 204, 22, 0.4);
}

::selection {
  background: var(--brand-500);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}
