.site-header-public {
  border-bottom: 1px solid var(--border);
  background: rgba(13, 15, 18, 0.86);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.site-header__logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(99, 254, 31, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header__login {
  padding-inline: 18px;
}

@media (max-width: 640px) {
  .site-header__inner {
    padding: 14px 16px;
  }

  .site-header__brand {
    font-size: 0.98rem;
  }

  .site-header__logo {
    width: 40px;
    height: 40px;
  }
}
