body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, var(--font-size-3xl));
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

strong {
  font-weight: 600;
}

::selection {
  background-color: var(--color-primary-light);
  color: var(--color-text);
}
