.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--grey-15);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
  flex: none;
}

.brand-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.brand-wordmark { height: 18px; display: block; }

.site-nav {
  display: flex;
  gap: 4px;
}

.site-nav a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-60);
  transition: background 120ms, color 120ms;
}

.site-nav a:hover {
  background: var(--grey-05);
  color: var(--brand);
}

.site-nav a.is-active {
  background: var(--grey-05);
  color: var(--brand);
}
