html {
  scrollbar-gutter: stable;
}
.global-nav {
  --nav-ink: #1a1613;
  --nav-muted: #6f685f;
  --nav-line: #e2dcd2;
  --nav-paper: #f6f4ef;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 68px;
  border-bottom: 1px solid var(--nav-line);
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.global-nav * {
  box-sizing: border-box;
}
.global-nav__inner {
  width: min(1120px, calc(100% - 48px));
  height: 67px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.global-nav__brand {
  display: flex;
  align-items: baseline;
  flex: 0 0 154px;
  gap: 9px;
  color: var(--nav-ink);
  text-decoration: none;
  white-space: nowrap;
}
.global-nav__brand strong {
  font:
    500 26px Georgia,
    "Times New Roman",
    serif;
  letter-spacing: 0;
}
.global-nav__brand strong span {
  color: #e4572e;
}
.global-nav__brand em {
  color: var(--nav-muted);
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.global-nav__links {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.global-nav__links a,
.global-nav__login {
  position: relative;
  color: var(--nav-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.global-nav__links a[aria-current="page"] {
  color: var(--nav-ink);
  font-weight: 700;
}
.global-nav__links a[aria-current="page"]:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 2px;
  background: #e4572e;
}
.global-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.global-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 17px;
  background: #2b2f6f;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .global-nav__links {
    display: none;
  }
  .global-nav__brand {
    flex-basis: auto;
  }
  .global-nav__actions {
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .global-nav__inner {
    width: calc(100% - 28px);
    gap: 12px;
  }
  .global-nav__brand em,
  .global-nav__login {
    display: none;
  }
  .global-nav__cta {
    padding: 10px 13px;
  }
}
