/* Shared typography system — consistent across every public page. */
:root {
  --type-display: "Bebas Neue", Impact, sans-serif;
  --type-body: "Inter", Arial, sans-serif;
  --type-editorial: Georgia, "Times New Roman", serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: var(--type-body);
}

main h1 {
  font-family: var(--type-display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

main h2,
main h3 {
  text-wrap: balance;
}

.eyebrow,
.section-label,
.kicker {
  font-family: var(--type-display);
}

.site-nav > a,
.site-nav > .nav-item > a,
.cert-nav > a,
.cert-nav > .nav-item > a {
  font-family: var(--type-body);
  font-size: 15px;
}

.button,
.call-button {
  font-family: var(--type-body);
  font-size: 16px;
  line-height: 1.1;
}

.unified-footer .footer-brand p,
.unified-footer a,
.unified-footer span {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  main h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .site-nav > a,
  .site-nav > .nav-item > a,
  .cert-nav > a,
  .cert-nav > .nav-item > a {
    font-size: 14px;
  }
}
