:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #082f49;
  background: #f7fafc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(
      circle at top right,
      rgb(250 190 65 / 12%),
      transparent 35rem
    ),
    #f7fafc;
}

a {
  color: #075985;
}

a:hover {
  color: #0e7490;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: white;
  background: #082f49;
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 6.5rem;
  padding: 0.45rem clamp(1rem, 4vw, 3rem);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid #dbe7ec;
  box-shadow: 0 0.25rem 1.25rem rgb(8 47 73 / 7%);
  backdrop-filter: blur(0.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
}

.brand:focus-visible {
  outline: 0.2rem solid #f4b942;
  outline-offset: 0.2rem;
}

.brand-logo {
  display: block;
  width: min(19rem, 72vw);
  height: 5.5rem;
  object-fit: cover;
  object-position: center;
}

.site-main {
  flex: 1;
  width: min(70rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  font-size: 0.95rem;
  text-align: center;
  background: white;
  border-top: 1px solid #dbe7ec;
}

.site-footer nav {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.footer-separator {
  color: #688998;
}

.footer-contact {
  display: inline-block;
}

.hero,
.page-heading {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: #0e7490;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #082f49;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-top: 4rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

p {
  color: #365b6d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.action-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.action-list a {
  display: block;
  min-height: 100%;
  padding: 1.25rem;
  color: #083344;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  background: white;
  border: 1px solid #d7e5ea;
  border-radius: 0.9rem;
  box-shadow: 0 0.5rem 1.5rem rgb(8 47 73 / 6%);
}

.action-list a:hover {
  border-color: #67a9b8;
  transform: translateY(-0.1rem);
}

.legal-page {
  max-width: 52rem;
}

.legal-page section {
  scroll-margin-top: 7rem;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
}

.legal-page h2 {
  margin-top: 3rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.legal-page li {
  margin-block: 0.65rem;
  color: #365b6d;
  line-height: 1.65;
}

.legal-date {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.legal-callout {
  margin: 2.5rem 0;
  padding: 1.25rem 1.5rem;
  color: #083344;
  font-weight: 700;
  background: #fff8e8;
  border: 1px solid #f4cf78;
  border-radius: 0.9rem;
}

.legal-uppercase {
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
}

pre {
  max-width: 100%;
  margin-top: 2rem;
  padding: 1.25rem;
  overflow: auto;
  color: #e5edf0;
  background: #082f49;
  border-radius: 0.9rem;
  box-shadow: 0 0.75rem 2rem rgb(8 47 73 / 12%);
}

@media (max-width: 36rem) {
  .site-header {
    min-height: 6rem;
  }

  .brand-logo {
    width: min(16rem, 78vw);
    height: 5rem;
  }
}
