.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(126, 181, 255, 0.12);
  background: rgba(2, 5, 11, 0.78);
  backdrop-filter: blur(18px);
}

.site-wrap {
  width: min(1120px, calc(100% - 38px));
  margin: 0 auto;
}

.site-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f2f7ff;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-brand img {
  width: clamp(60px, 4.6vw, 78px);
  height: clamp(60px, 4.6vw, 78px);
  border-radius: clamp(17px, 1.2vw, 21px);
  object-fit: cover;
  border: 0;
  box-shadow: 0 16px 44px rgba(22, 136, 255, 0.18);
  background: transparent;
}

.site-brand span {
  font-size: clamp(1.14rem, 1.55vw, 1.38rem);
}

.site-brand-company {
  gap: 14px;
}

.site-brand-company img {
  width: clamp(50px, 4vw, 66px);
  height: clamp(50px, 4vw, 66px);
  object-fit: contain;
  object-position: center;
  background: #020814;
}

.site-brand-company span {
  color: #f8fbff;
  font-size: clamp(1.36rem, 2vw, 1.76rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(22, 136, 255, 0.28);
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #aebbd0;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav-links a {
  color: inherit;
  text-decoration: none;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  color: #e8f2ff;
}

.site-nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: #06101f !important;
  background: #e8f2ff;
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid rgba(126, 181, 255, 0.12);
  background: rgba(2, 5, 11, 0.78);
  color: #74829a;
}

.site-footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  font-size: 0.88rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a {
  color: #aebbd0;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f2f7ff;
}

@media (max-width: 760px) {
  .site-brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .site-brand span {
    font-size: 1.16rem;
  }

  .site-brand-company span {
    font-size: 1.24rem;
  }

  .site-wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-nav-inner {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
  }

  .site-nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav-links::-webkit-scrollbar {
    display: none;
  }

  .site-nav-cta {
    padding: 10px 14px;
  }

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

  .site-footer-links {
    justify-content: flex-start;
  }
}
