/*
  Longevity Suite — shared brand header pattern
*/

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.brand h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.2px;
}
.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Vivid gradient — overridden per-app below */
  background: linear-gradient(127deg, #4299e1, #7551ff);
  box-shadow: 0 4px 20px -4px rgba(66,153,225,0.6);
  color: #fff;
}
.brand-icon svg {
  width: 20px;
  height: 20px;
}
