:root {
  --tanom-orange: #ff6a00;
  --tanom-orange-deep: #f14b00;
  --tanom-lime: #c9ff54;
  --tanom-midnight: #07111c;
  --tanom-ink: #101a26;
  --tanom-mist: #eaf0f5;
  --tanom-slate: #8d9aaa;
  --orange: var(--tanom-orange);
  --orange-soft: rgba(255, 106, 0, .14);
  --lime: var(--tanom-lime);
}

.brand {
  direction: ltr;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand .brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 106, 0, .16), transparent 48%),
    linear-gradient(145deg, #152230, #07111c);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.brand .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  align-content: center;
  gap: 0;
  min-width: 0;
  text-align: left;
}

.brand-wordmark b {
  color: var(--text, #f7fafc);
  font-family: Barlow, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .13em;
}

.brand-wordmark small {
  margin-top: 4px;
  color: var(--muted, #8d9aaa);
  font-family: Estedad, Vazirmatn, sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.light-mode .brand .brand-mark {
  border-color: rgba(7, 17, 28, .09);
  box-shadow: 0 9px 22px rgba(20, 36, 51, .13);
}

.light-mode .brand-wordmark b {
  color: #07111c;
}

.tanom-gradient-text {
  color: var(--tanom-orange);
  background: linear-gradient(92deg, var(--tanom-orange), #ff9147 62%, var(--tanom-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 560px) {
  .brand {
    gap: 8px;
  }

  .brand .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    padding: 6px;
    border-radius: 13px;
  }

  .brand-wordmark b {
    font-size: 15px;
    letter-spacing: .11em;
  }

  .brand-wordmark small {
    display: none;
  }
}
