/**
 * PCC marketing typography — shared tokens and utilities for patientcoverageconnect.com
 * static pages (home, providers, agents, FMO, investors, register, etc.).
 *
 * Tiers (aligned with PCC Direct referral form):
 *   eyebrow / section — uppercase small caps (11–12px)
 *   field label       — uppercase labels (12px)
 *   body              — paragraphs (16px)
 *   body-sm           — secondary copy (14px)
 */

:root {
  --pcc-font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pcc-font-serif: "DM Serif Display", Georgia, "Times New Roman", serif;

  --pcc-type-eyebrow: 11px;
  --pcc-type-section: 12px;
  --pcc-type-label: 12px;
  --pcc-type-body: 16px;
  --pcc-type-body-sm: 14px;
  --pcc-type-caption: 13px;
  --pcc-type-small: 12px;
  --pcc-type-lead: 18px;

  --pcc-eyebrow-ls: 0.15em;
  --pcc-section-ls: 0.08em;
  --pcc-label-ls: 0.05em;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--pcc-font-sans);
}

.pcc-eyebrow {
  font-size: var(--pcc-type-eyebrow);
  font-weight: 600;
  letter-spacing: var(--pcc-eyebrow-ls);
  text-transform: uppercase;
}

.pcc-section-title {
  font-size: var(--pcc-type-section);
  font-weight: 700;
  letter-spacing: var(--pcc-section-ls);
  text-transform: uppercase;
}

.pcc-field-label {
  font-size: var(--pcc-type-label);
  font-weight: 700;
  letter-spacing: var(--pcc-label-ls);
  text-transform: uppercase;
}

.pcc-body {
  font-size: var(--pcc-type-body);
  line-height: 1.6;
}

.pcc-body-sm {
  font-size: var(--pcc-type-body-sm);
  line-height: 1.55;
}

.pcc-caption {
  font-size: var(--pcc-type-caption);
  line-height: 1.5;
}

.pcc-serif-display {
  font-family: var(--pcc-font-serif);
}
