.wz-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 68px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--line, #1f2d49) 80%, transparent);
  background: var(--bg, #080c15);
  background: color-mix(in srgb, var(--bg, #080c15) 92%, transparent);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.wz-site-header,
.wz-site-header * {
  box-sizing: border-box;
}

.wz-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
}

.wz-site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  margin-left: 26px;
  color: var(--text, var(--ink, #e8eefb));
  font-family: Poppins, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3px;
  text-decoration: none;
}

.wz-site-header__mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}

.wz-site-header__ai {
  background: linear-gradient(
    120deg,
    var(--accent2, #34e3cf),
    var(--accent, #4d8bff)
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wz-site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.wz-site-header__nav > a:not(.wz-site-header__cta) {
  color: var(--muted, #8ea2c2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wz-site-header__nav > a:hover,
.wz-site-header__nav > a[aria-current="page"] {
  color: var(--text, var(--ink, #e8eefb));
}

.wz-site-header__theme {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line, #1f2d49);
  border-radius: 9px;
  background: transparent;
  color: var(--text, var(--ink, #e8eefb));
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.wz-site-header__cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #4d8bff;
  border-radius: 10px;
  background: #4d8bff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .wz-site-header,
  .wz-site-header__inner {
    height: 68px;
  }

  .wz-site-header__brand {
    margin-left: 10px;
  }

  .wz-site-header__inner {
    width: min(calc(100% - 28px), 1180px);
    gap: 16px;
    overflow: hidden;
  }

  .wz-site-header__nav {
    min-width: 0;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

@media (max-width: 480px) {
  .wz-site-header__brand {
    font-size: 18px;
  }

  .wz-site-header__cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
}
