body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 1.5rem + 4.2vw, 4.4rem);
}
h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
}
h3 {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}