:root {
  --ink: #18202a;
  --muted: #5b6675;
  --line: #d9dee7;
  --soft: #f4f6f9;
  --soft-red: #fff1f1;
  --surface: #ffffff;
  --red: #e95754;
  --red-dark: #b93432;
  --brand-blue: #15367f;
  --brand-blue-dark: #102a62;
  --brand-navy: #0b1f49;
  --brand-sky: #eef4fb;
  --green: #087f5b;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--surface);
  scroll-padding-top: 86px;
}

a {
  color: var(--red-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--brand-blue-dark);
  background: var(--brand-blue);
  box-shadow: 0 1px 0 rgba(11, 31, 73, .12);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
}

.brand span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  color: #fff;
}

.hero {
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-blue) 72%, #1f4b9a 100%);
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.section-inner,
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 24px;
}

.hero-inner {
  max-width: 1280px;
  height: 430px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 680px minmax(460px, 1fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  width: 680px;
  max-width: 680px;
  min-width: 0;
}

.hero-visual {
  position: relative;
  justify-self: stretch;
  height: 360px;
  min-width: 320px;
  overflow: hidden;
  background: transparent;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.hero--home .hero-visual img {
  object-fit: contain;
  object-position: right center;
  transform: scale(1);
  transform-origin: right center;
}

.hero h1,
.hero .lead,
.hero .cta-row,
.hero .hero-note {
  width: 100%;
  max-width: 680px;
  overflow-wrap: break-word;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.12;
  margin: 10px 0 18px;
}

.hero .lead {
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 44px;
  margin: 10px 0 18px;
}

h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

.lead {
  max-width: 850px;
  color: var(--muted);
  font-size: 19px;
  margin: 0 0 24px;
}

.hero .eyebrow {
  color: #fff;
}

.hero-note {
  color: #fff;
  font-size: 13px;
  margin: 16px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: var(--surface);
  color: var(--brand-blue);
  border-color: var(--surface);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(11, 31, 73, .03);
}

.card p,
.answer p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.topic-links {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.topic-links h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.topic-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.topic-link {
  display: block;
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.topic-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.topic-link strong {
  display: block;
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.35;
}

.band {
  background: var(--brand-sky);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer {
  border-left: 5px solid var(--red);
  background: #fff7f7;
  padding: 18px 20px;
  margin: 24px 0;
}

.brand-panel {
  background: var(--surface);
  border-top: 4px solid var(--brand-blue);
}

.resource-lite {
  background: var(--surface);
}

.resource-lite .hero {
  background: var(--brand-blue);
}

.resource-lite .hero-inner {
  padding-top: 34px;
  padding-bottom: 34px;
  min-height: 320px;
}

.resource-lite .answer {
  background: var(--brand-sky);
  border-left-color: var(--brand-blue);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--brand-blue);
  color: #fff;
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  background: #eef4fb;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.source-card {
  border-top: 4px solid var(--brand-blue);
}

.source-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.lead-panel h2,
.lead-panel h3,
.lead-panel p {
  margin: 0;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-meta {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--brand-blue);
  color: #fff;
}

.site-footer a,
.site-footer .note {
  color: #dce7f4;
}

@media (max-width: 1240px) {
  .hero-inner {
    grid-template-columns: 620px minmax(360px, 1fr);
    gap: 32px;
  }

  .hero-copy {
    width: 620px;
    max-width: 620px;
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero .hero-note {
    max-width: 620px;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 620px minmax(260px, 1fr);
    gap: 32px;
  }

  .hero-copy {
    width: 620px;
    max-width: 620px;
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero .hero-note {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    min-width: 0;
    gap: 14px 20px;
  }

  .nav-links a {
    overflow-wrap: anywhere;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-inner {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 42px;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    height: 0;
    min-height: 0;
    background: transparent;
    overflow: hidden;
  }

  .grid,
  .grid.two,
  .faq,
  .topic-link-grid {
    grid-template-columns: 1fr;
  }
}
