.nyx-brand-lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: .62rem;
  color: var(--text, #f0f4fc);
  line-height: 1.05;
  text-decoration: none;
}

.nyx-brand-lockup:hover {
  color: var(--text, #f0f4fc);
}

.nyx-brand-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .24), transparent 28%),
    linear-gradient(145deg, rgba(29, 38, 61, .96), rgba(4, 7, 14, .94));
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .38),
    0 0 22px rgba(124, 58, 237, .3),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.nyx-prism-mark {
  display: block;
  width: 32px;
  height: 32px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 31%;
  filter:
    drop-shadow(0 0 8px rgba(167, 139, 250, .55))
    drop-shadow(0 0 13px rgba(34, 211, 238, .2));
}

.nyx-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.nyx-brand-wordmark {
  color: var(--text, #f0f4fc);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.nyx-brand-wordmark em {
  color: var(--accent-bright, #a78bfa);
  font-style: normal;
}

.nyx-brand-company {
  margin-top: .16rem;
  color: var(--muted, #6b7d96);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nyx-brand-lockup--compact .nyx-brand-company {
  display: none;
}

.nyx-brand-lockup--hero {
  gap: .8rem;
}

.nyx-brand-lockup--hero .nyx-brand-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 10px;
}

.nyx-brand-lockup--hero .nyx-prism-mark {
  width: 43px;
  height: 43px;
}

.nyx-brand-lockup--hero .nyx-brand-wordmark {
  font-size: 1.35rem;
}

.nyx-brand-lockup--hero .nyx-brand-company {
  font-size: .62rem;
}

@media (max-width: 520px) {
  .nyx-brand-company {
    display: none;
  }
}