/* Brand Styles */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  opacity: 0.9;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg,var(--accent),#7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.brand__title {
  line-height: 1;
}

.brand__title h1 {
  font-size: 18px;
  margin: 0;
  color: inherit;
}

.brand__title p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}