.public-nav,
.public-nav *,
body *,
body *::before,
body *::after {
  cursor: default !important;
}

.public-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  padding: 0 14px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.public-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1060px;
  min-height: 54px;
  margin: 14px auto 0;
  padding: 7px 8px 7px 16px;
  color: #101010;
  background: rgba(246, 246, 242, .94);
  border: 1px solid rgba(16, 16, 16, .13);
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .065), inset 0 1px 0 rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.public-nav__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.public-nav__logo img {
  display: block;
  width: 88px;
  height: auto;
  filter: none;
}

.public-nav__links {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
}

.public-nav__links a {
  color: rgba(16, 16, 16, .58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.public-nav__links a:hover,
.public-nav__links a:focus-visible { color: #101010; }

.public-nav__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.public-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 15px;
  color: #101010;
  background: transparent;
  border: 1px solid rgba(16, 16, 16, .18);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.public-nav__button:hover,
.public-nav__button:focus-visible {
  color: #101010;
  background: rgba(16, 16, 16, .055);
  border-color: rgba(16, 16, 16, .30);
  transform: translateY(-1px);
}

.public-nav__button--primary {
  color: #fff;
  background: #2450f5;
  border-color: #2450f5;
}

.public-nav__button--primary:hover,
.public-nav__button--primary:focus-visible {
  color: #fff;
  background: #153bd1;
  border-color: #153bd1;
  box-shadow: 0 10px 28px rgba(36, 80, 245, .20);
}

@media (max-width: 860px) {
  .public-nav__links { display: none; }
}

@media (max-width: 600px) {
  .public-nav { padding: 0 8px; }
  .public-nav__inner {
    min-height: 50px;
    margin-top: 8px;
    padding: 6px 7px 6px 12px;
    border-radius: 16px;
  }
  .public-nav__logo img { width: 80px; }
  .public-nav__button:not(.public-nav__button--primary) { display: none; }
  .public-nav__button { min-height: 37px; padding: 8px 13px; border-radius: 12px; }
}

/* Shared footer for every public Warded page. */
.site-footer {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0;
  padding: 64px 24px 28px;
  color: #fff;
  background: #101010;
  border-top: 1px solid rgba(255,255,255,.14);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer__inner { width: 100%; max-width: 1180px; margin: 0 auto; }
.site-footer__top { display: grid; grid-template-columns: minmax(260px, 1.25fr) minmax(520px, 1fr); gap: 72px; align-items: start; padding-bottom: 68px; }
.site-footer__brand img { display: block; width: 118px; height: auto; filter: brightness(0) invert(1); }
.site-footer__brand p { max-width: 32ch; margin: 18px 0 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.6; }
.site-footer__groups { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 38px; }
.site-footer__group { display: grid; align-content: start; gap: 11px; }
.site-footer__label { margin-bottom: 5px; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a,
.site-footer button { width: fit-content; padding: 0; color: rgba(255,255,255,.82); background: none; border: 0; font: 500 13px/1.4 Inter, ui-sans-serif, sans-serif; text-decoration: none; transition: color .2s ease; }
.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible { color: #fff; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.site-footer__copy { margin: 0; color: rgba(255,255,255,.54); font-size: 11px; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.site-footer__legal a,
.site-footer__legal button { color: rgba(255,255,255,.58); font-size: 11px; font-weight: 400; }

@media (max-width: 820px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 46px; padding-bottom: 48px; }
}

@media (max-width: 560px) {
  .site-footer { padding: 50px 20px 24px; }
  .site-footer__groups { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .site-footer__group:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__legal { justify-content: flex-start; gap: 14px 18px; }
}
