.site-header {
  height: 81px;
  background: #fff;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, #2f7bff, #2761e7);
  font-size: 16px;
  line-height: 1;
}

.brand-name {
  font-size: 22px;
  letter-spacing: 0;
}

.brand-icon-only .brand-name {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #0F172A;
  font-size: 16px;
  text-align: justify;
}

.site-nav a {
  position: relative;
  line-height: 72px;
  transition: color 0.2s ease;
}

.compact-header .site-nav a {
  line-height: 64px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active {
  font-weight: 600;
}

.site-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: translateX(-50%);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 44px;
  padding: 0 18px;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 16px;
  font-weight: 600;
  margin-right: 24px;
}

.dark-action {
  background: #071123;
  box-shadow: none;
}
