.top,
.appbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-card-strong) 86%, transparent);
  backdrop-filter: blur(14px);
}

.top-inner,
.appbar-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.appbar-inner {
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--accent-2, #173633);
  text-decoration: none;
  white-space: nowrap;
  font-family: "SF Pro Text", "PingFang SC", "Noto Sans SC", sans-serif;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--accent, var(--brand, #204f4a));
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-type {
  margin-left: 10px;
  color: var(--ink, var(--text, #171714));
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .16em;
}

.brand-divider {
  height: 16px;
  margin: 0 12px;
  border-left: 1px solid #cbd5e1;
}

.brand-slogan {
  color: var(--nav-slogan, #94a3b8);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .06em;
}

@media (max-width: 760px) {
  .top,
  .appbar {
    padding: 0 14px;
  }

  .top-inner,
  .appbar-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand-divider,
  .brand-slogan {
    display: none !important;
  }
}
