.navHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  color: #f7f8f8;
  background: rgba(8, 9, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navInner {
  display: grid;
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
}

.navBrand {
  justify-self: start;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.navDesktop {
  display: flex;
  align-items: center;
  gap: 29px;
}

.navDesktop a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #8a8f98;
  font-size: 13px;
  transition: color 160ms ease;
}

.navDesktop a:hover {
  color: #f7f8f8;
}

.navActions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  font-size: 13px;
}

.navQuiet {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  padding: 0 10px;
  color: #c2c5ca;
}

.navPrimary,
.navMobileCta {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  background: #ff5c57;
  border-radius: 999px;
  font-weight: 600;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.navPrimary:hover,
.navMobileCta:hover {
  background: #ff6b66;
  transform: translateY(-1px);
}

.navPrimary svg {
  width: 14px;
  height: 14px;
}

.navMobile {
  display: none;
  justify-self: end;
}

.navMobile summary {
  display: grid;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #d7d9dd;
  background: #101113;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  list-style: none;
  place-items: center;
}

.navMobile summary::-webkit-details-marker {
  display: none;
}

.navMobile summary svg {
  width: 19px;
  height: 19px;
}

.navMobile nav {
  position: fixed;
  top: 75px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 18px 24px 24px;
  background: #0c0d0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.navMobile nav > a:not(.navMobileCta) {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #b8bbc1;
  font-size: 14px;
}

.navMobileCta {
  margin-top: 9px;
}

@media (max-width: 900px) {
  .navInner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .navDesktop {
    display: none;
  }

  .navMobile {
    display: block;
  }
}

@media (max-width: 600px) {
  .navInner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .navActions {
    display: none;
  }
}
