:root {
  color: #14213d;
  background: #f5f7fb;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgb(28 89 244 / 10%), transparent 34rem),
    #f5f7fb;
}

a {
  color: #0f56e8;
}

a:hover {
  color: #093fae;
}

a:focus-visible {
  border-radius: 0.25rem;
  outline: 3px solid rgb(15 86 232 / 35%);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid #dfe5f0;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.page,
.site-footer__inner {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 2rem;
}

.header-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.page {
  padding-block: clamp(2.5rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #0f56e8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  color: #101c36;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1;
}

h2 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

p,
li {
  color: #49566f;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.lede {
  max-width: 46rem;
  margin: 0;
  color: #34425d;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.effective-date {
  margin-top: 1rem;
  color: #6a768c;
  font-size: 0.85rem;
}

.content {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid #dfe5f0;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgb(31 54 101 / 7%);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul {
  padding-left: 1.25rem;
}

.notice {
  border-color: #b9cef9;
  background: #f1f6ff;
}

.steps {
  counter-reset: support-step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding-left: 2.5rem;
}

.steps li + li {
  margin-top: 0.75rem;
}

.steps li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: #0f56e8;
  color: #fff;
  content: counter(support-step);
  counter-increment: support-step;
  font-size: 0.75rem;
  font-weight: 800;
}

.card > p:has(+ .button) {
  margin-bottom: 0;
}

.card > .button {
  margin-top: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #0f56e8;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #093fae;
  color: #fff;
}

.button--secondary {
  border: 1px solid #c8d2e2;
  background: #fff;
  color: #18345f;
}

.button--secondary:hover {
  background: #edf2fa;
  color: #18345f;
}

.site-footer {
  border-top: 1px solid #dfe5f0;
  background: #fff;
}

.site-footer__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6a768c;
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.site-footer nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

@media (max-width: 36rem) {
  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-header__inner {
    padding-block: 1rem;
  }

  .site-footer__inner {
    padding-block: 1.25rem;
  }
}
