body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(102, 167, 232, 0.18), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(245, 197, 66, 0.10), transparent 55%),
              var(--bg);
}
h1, h2, h3 { color: var(--text); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.125rem; margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

a { color: inherit; }
