.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
}

.brand-wordmark {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1;
}

.brand-title {
  min-width: 0;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.brand-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-meta .app-version {
  margin: 0;
  color: inherit;
}

.deployment-time {
  color: inherit;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .brand {
    align-items: flex-start;
    gap: 2px;
  }

  .brand-wordmark {
    font-size: 17px;
    letter-spacing: 0.025em;
  }

  .brand-title {
    display: none;
  }

  .brand-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    font-size: 10px;
  }
}
