/* Keeps the topology artwork as a quiet, transparent brand object. */
.hero-grid {
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 550px;
  gap: 32px;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  margin: 0;
}

.hero-art::before {
  display: none;
}

.hero-art img {
  position: static;
  inset: auto;
  display: block;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-note {
  right: 7%;
  bottom: 14%;
}

@media (max-width: 820px) {
  .hero-art {
    min-height: 300px;
    margin: 0;
  }

  .hero-art img {
    width: min(88%, 390px);
    height: auto;
  }
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 52px 0 26px;
  color: #8fa2c1;
  border-top: 1px solid #203d69;
  background: #0d254e;
}

.site-footer__container { width: min(1200px, calc(100% - 48px)); margin: auto; }

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(100px, 0.7fr));
  gap: 34px;
  padding-bottom: 45px;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 15px 0 0;
  color: #a9bad3;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__logo { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 19px; font-weight: 760; letter-spacing: -.04em; }
.site-footer__logo img { width: 31px; height: 31px; object-fit: contain; }
.site-footer__group { display: grid; align-content: start; gap: 11px; }
.site-footer__group b { margin-bottom: 4px; color: #dce8fa; font-size: 12px; letter-spacing: .08em; }
.site-footer__group a { width: fit-content; color: #9db1ce; font-size: 13px; transition: color .16s ease; }
.site-footer__group a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid #203d69; color: #7189ac; font-size: 12px; }

@media (max-width: 820px) {
  .site-footer { padding: 40px 0 24px; }
  .site-footer__container { width: min(100% - 32px, 620px); }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding-bottom: 34px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { display: grid; gap: 8px; }
}
