/* ============================================================
   wordmark.css - logo + app name above the card
   ============================================================ */

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  max-width: 100%;
  user-select: none;
}

.wordmark-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(139,92,246,0.42), 0 1px 0 rgba(255,255,255,0.14) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wordmark-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.wordmark-text .name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
}

.wordmark-text .sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 7px;
  white-space: normal;
}
