/* PMP Create Studio v198 — transparent lettering lockup.
 * The animated PMP OS icon remains unchanged; only the supplied badge lettering
 * is used beside it, without a tile, frame, crop, or background.
 */

.topbar .brand {
  position: relative;
  isolation: isolate;
  overflow: visible;
  gap: 9px;
  padding-inline: 12px 10px;
}

.topbar .brand::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 50%;
  width: 10px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 194, 201, .2), #0bc2c9 48%, #1978d2);
  box-shadow: 0 0 8px rgba(10, 169, 192, .34);
  transform: translateY(-50%);
  z-index: -1;
}

.topbar .brand-orb {
  flex: 0 0 auto;
  z-index: 2;
}

.brand-wordmark {
  position: relative;
  display: grid;
  place-items: center;
  width: 105px;
  height: 56px;
  flex: 0 0 105px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-wordmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .72)) drop-shadow(0 3px 5px rgba(24, 73, 105, .13));
  transform: translateZ(0);
  transition: transform .2s ease, filter .2s ease;
}

.topbar .brand:hover .brand-wordmark img {
  transform: translateY(-1px);
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .85)) drop-shadow(0 5px 8px rgba(20, 103, 142, .18));
}

@media (max-width: 900px) {
  .topbar .brand { gap: 7px; padding-inline: 9px 7px; }
  .brand-wordmark { width: 82px; height: 49px; flex-basis: 82px; }
  .topbar .brand::before { left: 51px; width: 8px; }
}

@media (max-width: 620px) {
  .topbar .brand { gap: 5px; padding-inline: 6px; }
  .brand-wordmark { width: 69px; height: 42px; flex-basis: 69px; }
  .topbar .brand::before { display: none; }
}

@media (max-width: 430px) {
  .topbar .brand { gap: 4px; }
  .brand-wordmark { width: 42px; height: 32px; flex-basis: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-wordmark img { transition: none; }
}
