@font-face {
  font-family: "DM Sans";
  src: url(../fonts/dmsans-lat.woff2) format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url(../fonts/dmserif-lat.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --molina-night: #14171c;
  --molina-panel: #1d2127;
  --molina-mint: #4fe3ae;
  --molina-silver: #c9d0d9;
  --molina-edge: #2b323b;
  --molina-muted: #949eaa;
  --molina-mint-soft: #d9f7ec;
  --molina-mint-deep: #10402f;
  --molina-panel-hi: #232a33;
  --wrap-max: 1180px;
  --pad-x: 20px;
  --rad: 14px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.42'/%3E%3C/svg%3E");
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--molina-night);
  color: var(--molina-silver);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  color: #f2f5f8;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 1.3rem + 3.1vw, 3.45rem);
}
h2 {
  font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.4rem);
}
h3 {
  font-size: clamp(1.15rem, 1rem + 0.55vw, 1.4rem);
}
p {
  margin: 0 0 16px;
}
a {
  color: var(--molina-mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: #7bf0c6;
}
:focus-visible {
  outline: 2px solid var(--molina-mint);
  outline-offset: 3px;
}
ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
li {
  margin-bottom: 7px;
}
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.wrap--tight {
  max-width: 760px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.lede {
  font-size: 1.12rem;
  color: #dbe2ea;
  max-width: 62ch;
}
.muted {
  color: var(--molina-muted);
}
.eyebrow {
  font-size: 0.79rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--molina-mint);
  margin: 0 0 12px;
  font-weight: 500;
}
section {
  position: relative;
}
@media (min-width: 700px) {
  body {
    font-size: 18px;
  }
  :root {
    --pad-x: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}