:root {
  --black: #05070b;
  --ink: #0b1220;
  --blue: #0858ff;
  --cyan: #20d6ff;
  --red: #e1273e;
  --paper: #f4f5f7;
  --white: #fff;
  --muted: #677080;
  --line: #d9dde4;
  --font-head: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.section-dark {
  background: var(--black);
  color: #fff;
}
.section-ink {
  background: var(--ink);
  color: #fff;
}
.section-blue {
  background: var(--blue);
  color: #fff;
}
.reading-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.topbar {
  height: 78px;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-family: var(--font-head);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}
.brand small {
  font-size: 0.67rem;
  color: #aab2c0;
  letter-spacing: 0.05em;
}
.topbar nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.84rem;
  color: #cbd1dc;
}
.topbar nav a:hover {
  color: #fff;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 16px;
}
.section-index,
.eyebrow {
  font: 700 0.72rem/1 var(--font-head);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c5ccd7;
}
.eyebrow i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.4rem, 7.6vw, 7.2rem);
  line-height: 0.94;
  margin: 28px 0 30px;
  max-width: 980px;
}
h2 {
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  line-height: 1.02;
  margin: 18px 0 25px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--blue);
}
.section-dark h1 em,
.section-dark h2 em,
.section-ink h2 em {
  color: var(--cyan);
}
.section-blue h2 em {
  color: #b8eaff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 21px;
  font-weight: 700;
  font-size: 0.9rem;
}
.button-primary {
  background: var(--blue);
  color: #fff;
}
.button-primary:hover {
  background: #2670ff;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
footer {
  background: #020305;
  color: #7f8998;
  padding: 25px 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .container,
  .topbar {
    width: min(100% - 30px, 1180px);
  }
  .topbar {
    height: 68px;
  }
  .topbar nav a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    padding: 8px 11px;
  }
  .brand small {
    display: none;
  }
  footer .container {
    gap: 15px;
    flex-direction: column;
  }
}

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  font-family: var(--font-body);
}

.institutional-logos figure {
  width: 86px !important;
  height: 74px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  overflow: visible;
}

.institutional-logos img {
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}

.site-navbar__inner {
  width: 100%;
  max-width: 1531px;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
}

.site-navbar__brand {
  max-width: 236px;
  min-width: 196px;
  height: 60px;
  display: flex;
  align-items: center;
}

.site-navbar__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-navbar__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-navbar__nav a {
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.site-navbar__toggle {
  display: none;
}

.site-navbar__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-navbar__salvador-logo {
  width: 360px;
  height: 78px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.site-navbar__cta {
  min-width: 160px;
  height: 41px;
  padding: 0 16px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #919191;
  color: #ffffff;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-navbar__cta-icon {
  width: 16px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-navbar__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-navbar__cta:hover,
.site-navbar__cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.site-navbar__cta:hover .site-navbar__cta-icon img,
.site-navbar__cta:focus-visible .site-navbar__cta-icon img {
  transform: translateX(2px);
}

.site-footer {
  width: 100%;
  min-height: 511px;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #063d8f;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: initial;
  letter-spacing: 0;
}

.site-footer__inner {
  width: 100%;
  max-width: 1498px;
  min-height: 511px;
  padding: 75px 42px 39px;
  display: flex;
  flex-direction: column;
}

.site-footer__top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}

.footer-brand {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand__logo {
  width: 109px;
  height: 109px;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 31px;
  color: #eaf4ff;
  font-size: 18px;
  line-height: 26px;
}

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

.footer-column--directions {
  width: 100%;
  max-width: 380px;
}

.footer-column--contact {
  width: 100%;
  max-width: 270px;
}

.footer-column--social {
  width: fit-content;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  line-height: 35px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-column address,
.footer-contact-list {
  max-width: 420px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  line-height: 27px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list p {
  margin: 0;
}

.footer-contact__label {
  display: block;
  margin-bottom: 2px;
  color: #d7ecff;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.footer-social__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-social__link:hover img,
.footer-social__link:focus-visible img {
  transform: scale(1.05);
}

.site-footer__bottom {
  width: 100vw;
  margin: auto 0 0 50%;
  padding-top: 32px;
  display: flex;
  border-top: 1px solid rgba(215, 236, 255, 0.35);
  transform: translateX(-50%);
}

.site-footer__bottom p {
  width: 100%;
  max-width: 1498px;
  margin: 0 42px;
  color: rgba(234, 244, 255, 0.68);
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 1360px) {
  .site-navbar__inner {
    max-width: 1240px;
    gap: 24px;
  }

  .site-navbar__brand {
    max-width: 210px;
    min-width: 180px;
  }

  .site-navbar__nav {
    gap: 20px;
  }

  .site-navbar__nav a {
    font-size: 14.5px;
  }

  .site-navbar__actions {
    gap: 14px;
  }

  .site-navbar__salvador-logo {
    width: 300px;
    height: 70px;
  }

  .site-navbar__cta {
    min-width: 148px;
    padding: 0 14px 0 18px;
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .site-navbar__inner {
    max-width: 100%;
    gap: 18px;
  }

  .site-navbar__brand {
    max-width: 188px;
    min-width: 158px;
  }

  .site-navbar__nav {
    gap: 14px;
  }

  .site-navbar__nav a {
    font-size: 13.5px;
    letter-spacing: 0;
  }

  .site-navbar__actions {
    gap: 12px;
  }

  .site-navbar__salvador-logo {
    width: 250px;
    height: 62px;
  }

  .site-navbar__cta {
    min-width: 136px;
    height: 39px;
    padding: 0 12px 0 15px;
    font-size: 13.5px;
  }
}

@media (max-width: 980px) {
  h1,
  h2,
  h3,
  p,
  a,
  span,
  small,
  td,
  th {
    overflow-wrap: anywhere;
  }

  .site-navbar {
    min-height: 78px;
    align-items: flex-start;
  }

  .site-navbar__inner {
    min-height: 78px;
    padding: 15px 20px 16px;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0;
  }

  .site-navbar__brand {
    min-width: 0;
    max-width: 196px;
    height: 50px;
  }

  .site-navbar__toggle {
    width: 44px;
    height: 44px;
    margin-left: 12px;
    order: 2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
  }

  .site-navbar__toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background-color: #ffffff;
    transform-origin: center;
    transition:
      transform 0.24s ease,
      opacity 0.2s ease;
  }

  .site-navbar__nav {
    position: static;
    left: auto;
    transform: translateY(-8px);
    width: 100%;
    max-height: 0;
    padding-top: 0;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      padding-top 0.3s ease,
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.3s ease;
  }

  .site-navbar__nav a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
    line-height: 18px;
  }

  .site-navbar__actions {
    margin-left: auto;
    display: contents;
    order: 1;
  }

  .site-navbar__salvador-logo {
    width: 210px;
    height: 54px;
    margin-left: auto;
    order: 1;
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navbar.is-open .site-navbar__nav {
    max-height: 300px;
    padding-top: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-footer__inner {
    padding: 64px 54px 38px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand,
  .footer-column--directions,
  .footer-column--contact {
    max-width: 100%;
  }

  .footer-brand p,
  .footer-column address,
  .footer-contact-list {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-navbar {
    min-height: 70px;
  }

  .site-navbar__inner {
    min-height: 70px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-navbar__salvador-logo {
    width: 180px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .site-navbar__inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .site-navbar__brand {
    max-width: 156px;
    height: 44px;
  }

  .site-navbar__toggle {
    width: 40px;
    height: 40px;
  }

  .site-navbar__salvador-logo {
    width: 130px;
    height: 44px;
  }

  .site-footer {
    min-height: auto;
  }

  .site-footer__inner {
    min-height: auto;
    padding: 46px 28px 34px;
  }

  .site-footer__top {
    gap: 36px;
  }

  .footer-brand,
  .footer-column--directions,
  .footer-column--contact,
  .footer-column--social {
    width: 100%;
  }

  .footer-brand p,
  .footer-column h2,
  .footer-column address,
  .footer-contact-list,
  .site-footer__bottom p {
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer__bottom {
    margin-top: 52px;
    padding-top: 28px;
  }

  .site-footer__bottom p {
    margin: 0;
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 360px) {
  .site-footer__inner {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer__bottom p {
    padding-left: 22px;
  }
}
