/* Shared global layout chrome for the static pages */
:root {
  --layout-max: 1280px;
  --layout-navy: #0a2540;
  --layout-ink: #1b1c1e;
  --layout-muted: #5b6472;
  --layout-border: rgba(148, 163, 184, 0.25);
  --layout-surface: rgba(255, 255, 255, 0.84);
}

.site-header,
.site-footer {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--layout-border);
  background: var(--layout-surface);
}

.site-header__inner,
.site-footer__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

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

.site-brand {
  color: var(--layout-navy);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a,
.site-footer a {
  color: var(--layout-muted);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--layout-navy);
}

.site-nav a[aria-current="page"] {
  color: var(--layout-navy);
  font-weight: 700;
  border-bottom: 2px solid var(--layout-navy);
  padding-bottom: 0.25rem;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.1rem;
  border-radius: 0.75rem;
  border: 0;
  background: var(--layout-navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.site-cta:hover {
  opacity: 0.92;
}

.site-mobile-toggle {
  display: none;
  border: 1px solid var(--layout-border);
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #fff;
}

.site-mobile-panel {
  display: none;
  border-top: 1px solid var(--layout-border);
  padding: 0 1.5rem 1rem;
}

.site-mobile-panel.is-open {
  display: block;
}

.site-mobile-panel a {
  display: block;
  padding: 0.6rem 0;
}

.site-footer {
  margin-top: 4rem;
  background: #091a2f;
  color: #d9e2ef;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer p,
.site-footer li {
  color: #9fb0c7;
  line-height: 1.6;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__bottom {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8ea1bb;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .site-mobile-toggle {
    display: inline-flex;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .site-header__inner,
  .site-footer__inner,
  .site-footer__bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}