/* ================================
   DEV TEST UI (hidden hotspot)
================================ */

.devBtn{
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10080;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  border: 0;
  background: rgba(0,0,0,.02);
  color: rgba(0,0,0,0);
  cursor: pointer;

  outline: none;
  box-shadow: none;
  opacity: 1;

  -webkit-tap-highlight-color: transparent;
}

.devBtn:hover{
  background: rgba(0,0,0,.06);
}

.devBtn:focus-visible{
  outline: 1px solid rgba(215,192,138,.25);
  outline-offset: 2px;
}

.devModal{ display:none; }
.devModal.is-open{ display:block; }

.devModal__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10060;
}

.devModal__panel{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 28px));
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(700px 280px at 20% 10%, rgba(215,192,138,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 10070;
}

.devModal__close{
  position:absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  cursor: pointer;
}

.devModal__title{ font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.devModal__sub{ margin-top: 6px; color: rgba(255,255,255,.65); font-size: 12px; }

.devModal__row{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}
.devModal__row .input{ margin-top:0; flex: 1 1 220px; }
