.top, .top-inner { overflow: visible; }
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
  position: relative;
  z-index: 30;
}
.header-end { min-width: 0; }
.qr-flyout { position: relative; }
.qr-btn {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgba(154, 175, 185, 0.45);
  border-radius: 4px;
  background: #e8eef2;
  color: #48bb9b;
  cursor: pointer;
}
.qr-btn svg { width: 12px; height: 12px; display: block; }
.qr-flyout:hover .qr-btn,
.qr-flyout.is-open .qr-btn,
.qr-btn:focus-visible {
  background: #26364a;
  color: #48bb9b;
  border-color: rgba(72, 187, 155, 0.55);
}
.qr-pop {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  padding: 12px;
  background: #141c28;
  border: 1px solid rgba(154, 175, 185, 0.36);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  z-index: 50;
}
.qr-flyout:hover .qr-pop,
.qr-flyout:focus-within .qr-pop,
.qr-flyout.is-open .qr-pop { display: block; }
.qr-pop-title {
  margin: 0 0 8px;
  text-align: center;
  color: #eef2f6;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.qr-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 148px;
  height: 24px;
  margin: 0 auto 8px;
  gap: 4px;
}
.qr-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #eef2f6;
  font: 400 12px/1 inherit;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
}
.qr-tabs button.is-on {
  background: #48bb9b;
  color: #0e1620;
  font-weight: 600;
}
.qr-pop-img {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
}
.qr-pop-cap {
  margin: 8px 0 0;
  text-align: center;
  color: #9aaab8;
  font-size: 12px;
  line-height: 1.3;
}
