.gateway-entry-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 12px;
}

.gateway-entry-choices a {
  min-width: 0;
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(229, 235, 239, .15);
  border-radius: 15px;
  padding: 15px;
  background: linear-gradient(145deg, rgba(15, 20, 24, .92), rgba(3, 5, 7, .96));
  color: #e8edef;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.gateway-entry-choices a:hover,
.gateway-entry-choices a.active {
  border-color: rgba(105, 246, 223, .48);
  background: radial-gradient(circle at 12% 0, rgba(105, 246, 223, .1), transparent 42%), #060a0d;
  transform: translateY(-1px);
}

.gateway-entry-choices a:focus-visible { outline: 2px solid #69f6df; outline-offset: 3px; }
.gateway-entry-choices span { color: #69f6df; font: 800 .52rem/1 var(--font-mono, monospace); letter-spacing: .1em; }
.gateway-entry-choices strong { font-size: .86rem; line-height: 1.2; }
.gateway-entry-choices small { color: #8f9ca2; font-size: .65rem; line-height: 1.35; }
.gateway-alias-boundary { margin: 0 0 16px; border-left: 2px solid rgba(105, 246, 223, .48); padding: 10px 12px; color: #98a5ab; font-size: .72rem; line-height: 1.5; }
.gateway-alias-boundary strong { color: #dfe7ea; }

@media (max-width: 760px) {
  .gateway-entry-choices { grid-template-columns: 1fr; }
  .gateway-entry-choices a { min-height: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .gateway-entry-choices a { transition: none; }
}
.wallet-login-handoff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wallet-login-handoff > section {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: clamp(14px, 2.5vw, 20px);
  border: 1px solid rgba(111, 255, 227, 0.22);
  border-radius: 18px;
  background: rgba(1, 5, 7, 0.72);
}

.wallet-login-handoff b {
  color: var(--aqua);
  font: 800 0.62rem/1.2 var(--font-mono);
  letter-spacing: 0.09em;
}

.wallet-login-open,
.wallet-login-qr a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wallet-login-open {
  border: 1px solid rgba(111, 255, 227, 0.35);
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
}

.wallet-login-qr {
  display: grid;
  gap: 9px;
}

.wallet-login-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  background: #f4fbfa;
}

@media (max-width: 620px) {
  .wallet-login-handoff {
    grid-template-columns: 1fr;
  }

  .wallet-login-qr img {
    width: min(100%, 220px);
    justify-self: center;
  }
}
