@import "./tokens.css";
@font-face {
  font-family: "Geist Sans";
  src: url("/fonts/geist-sans-latin-400-normal.woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geist Sans";
  src: url("/fonts/geist-sans-latin-500-normal.woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Geist Sans";
  src: url("/fonts/geist-sans-latin-600-normal.woff2");
  font-weight: 600;
  font-display: swap;
}

.np-global {
  font-family: var(--np-font);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--np-charcoal);
}
.np-global * {
  box-sizing: border-box;
}
.np-global a {
  color: inherit;
  text-decoration: none;
}
.np-global :is(a, summary):focus-visible {
  outline: 3px solid var(--np-purple);
  outline-offset: 5px;
}
.np-global-wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.np-global-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}
header.np-global-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: var(--np-background);
  border: 0;
  border-bottom: 1px solid #e3e2e5;
  padding: 0;
}
.np-global-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.np-global-brand img {
  width: 39px;
  height: 26px;
  display: block;
  margin: 0;
}
.np-global-audiences {
  display: flex;
  align-items: center;
  gap: 23px;
  border-left: 1px solid #e3e2e5;
  padding-left: 28px;
}
.np-global-audiences a {
  padding: 15px 0 12px;
  font-size: 13px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  color: #625c68;
}
.np-global-audiences a[aria-current] {
  color: var(--np-purple);
  border-bottom-color: var(--np-purple);
}
.np-global a:hover {
  color: var(--np-purple);
}
.np-global-local {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  white-space: nowrap;
}
.np-global-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid #d6d2d9;
  border-radius: 6px;
  padding: 12px 18px;
  min-height: 46px;
}
.np-global-menu {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.np-global-menu summary {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  border: 1px solid #d6d2d9;
  border-radius: 5px;
  padding: 9px 12px;
  min-height: 44px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}
.np-global-menu summary::-webkit-details-marker {
  display: none;
}
.np-global-menu nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--np-background);
  border-bottom: 1px solid #e3e2e5;
  padding: 12px 28px 20px;
  box-shadow: 0 18px 24px #14110e0a;
}
.np-global-menu nav a {
  display: flex;
  padding: 14px 0;
  min-height: 48px;
}
.np-global-menu nav .np-global-cta {
  padding: 12px 16px;
  margin-top: 8px;
}
.np-global-menu:not([open]) nav {
  display: none;
}
footer.np-global-footer {
  padding: 25px 0 18px;
  background: var(--np-charcoal);
  color: #fafaf8;
  border: 0;
}
.np-global-footer .np-global-row {
  min-height: 72px;
}
.np-global-footer .np-global-audiences {
  border: 0;
  padding: 0;
}
.np-global-footer .np-global-audiences a {
  color: #dfd9e2;
}
.np-global-footer .np-global-audiences a[aria-current] {
  color: #d7b4f2;
  border-color: #d7b4f2;
}
.np-global-footer .np-global-brand img {
  filter: brightness(0) saturate(100%) invert(81%) sepia(15%) saturate(905%)
    hue-rotate(225deg);
}
.np-global-email {
  margin-left: auto;
  color: #c9c3c9 !important;
  font-size: 13px;
}
.np-global-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ffffff25;
  padding-top: 19px;
  margin-top: 12px;
  color: #b9b2bb;
  font-size: 12px;
}
.np-global-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.np-global-footer a:hover {
  color: #e5c6ff;
}
.np-global-footer :is(a, summary):focus-visible {
  outline-color: #d7b4f2;
}
@media (max-width: 1100px) {
  .np-global-wrap {
    width: calc(100% - 56px);
  }
  .np-global-local {
    display: none;
  }
  .np-global-menu {
    display: block;
    margin-left: auto;
  }
  .np-global-row {
    min-height: 80px;
    gap: 24px;
  }
  .np-global-footer .np-global-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .np-global-email {
    margin-left: auto;
  }
}
@media (max-width: 760px) {
  .np-global-wrap {
    width: calc(100% - 40px);
  }
  .np-global-header .np-global-row {
    flex-wrap: wrap;
    gap: 0;
    min-height: 0;
    padding: 14px 0 0;
  }
  .np-global-brand {
    font-size: 23px;
  }
  .np-global-header .np-global-audiences {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    border: 0;
    padding: 0;
    gap: 28px;
    margin-top: 6px;
  }
  .np-global-audiences a {
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 11px;
  }
  .np-global-menu {
    order: 2;
  }
  .np-global-header .np-global-menu nav {
    padding-inline: 20px;
  }
  .np-global-footer .np-global-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .np-global-email {
    margin-left: 0;
  }
  .np-global-footer .np-global-audiences {
    gap: 24px;
  }
  .np-global-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .np-global-bottom nav {
    gap: 16px;
  }
  .np-global-footer {
    padding-top: 30px;
  }
  html {
    scroll-padding-top: 136px;
  }
}
