/* ===========================================================
   TYPOGRAPHY
   =========================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.eyebrow--light {
  color: var(--gold-300);
}

.h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

.body-lg {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mono-stat {
  font-family: var(--font-mono);
  font-size: var(--fs-stat);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.text-on-dark {
  color: var(--text-on-dark);
}

.text-on-dark-muted {
  color: var(--text-on-dark-muted);
}

.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-600);
}

em.serif-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--blue-600);
}