@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  font-size: var(--fs-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, var(--fs-h1));
  font-weight: var(--fw-semibold);
  letter-spacing: -0.018em;
  max-width: 22ch;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
}

p {
  margin: 0;
  line-height: var(--lh-relaxed);
  max-width: var(--measure);
}

a {
  color: inherit;
}

.eyebrow {
  display: block;
  color: var(--color-brand);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  color: var(--color-text);
  font-size: clamp(1.075rem, 2vw, var(--fs-lead));
  font-weight: var(--fw-medium);
  line-height: 1.65;
  max-width: var(--measure);
}

.muted {
  color: var(--color-muted);
}

.section-title {
  display: grid;
  gap: var(--space-2);
  max-width: 52ch;
}

.section-title p {
  color: var(--color-muted);
  font-size: var(--fs-body);
  max-width: var(--measure);
  line-height: var(--lh-relaxed);
}
