/* Frosster's Wallet — Sovereign Privacy Absolute–inspired dark HUD */
:root {
  --bg-deep: #000000;
  --bg-panel: #0a0a0c;
  --bg-panel-2: #101014;
  --bg-elevated: #14141a;
  --border: #1c1c24;
  --border-glow: #00f0ff44;
  --text: #e6e6ea;
  --text-muted: #8a8a96;
  --text-dim: #5a5a66;
  --accent: #00f0ff;
  --accent-2: #c084fc;
  --accent-cyan: #00f0ff;
  --accent-gold: #ffd700;
  --accent-warm: #ffd700;
  --good: #3dd68c;
  --warn: #ffd700;
  --bad: #ff5c7a;
  --frost: #00f0ff;
  --pink: #ff6b9d;
  --radius: 8px;
  --font: "Share Tech Mono", "SF Mono", "Cascadia Code", ui-monospace, monospace;
  --mono: "Share Tech Mono", "SF Mono", "Cascadia Code", ui-monospace, monospace;
  --shadow: 0 0 24px rgba(0, 240, 255, 0.08);
  --nav-h: 64px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --phone-max: 430px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.45;
  background-image:
    radial-gradient(ellipse 70% 40% at 15% -5%, rgba(0, 240, 255, 0.07), transparent),
    radial-gradient(ellipse 50% 35% at 95% 5%, rgba(192, 132, 252, 0.05), transparent),
    linear-gradient(180deg, #000000 0%, #0a0a0c 100%);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  letter-spacing: 0.02em;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

.app-shell {
  max-width: var(--phone-max);
  margin: 0 auto;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(10, 10, 12, 0.92);
  border-left: 1px solid rgba(0, 240, 255, 0.12);
  border-right: 1px solid rgba(0, 240, 255, 0.12);
  box-shadow: var(--shadow);
}

.app-header {
  padding: calc(0.75rem + var(--safe-t)) 1rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00f0ff22, #ffd70022);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pill {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 215, 0, 0.08);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pill.demo {
  background: rgba(0, 240, 255, 0.08);
  color: var(--accent-cyan);
  border-color: rgba(0, 240, 255, 0.35);
}

.main {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem calc(var(--nav-h) + var(--safe-b) + 1rem);
  -webkit-overflow-scrolling: touch;
}

.screen { display: none; animation: fadeIn 0.18s ease; }
.screen.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.card {
  background: var(--bg-panel);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.card.glow {
  border-color: rgba(0, 240, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 240, 255, 0.06), transparent 55%),
    var(--bg-panel);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.06);
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.balance-toggle {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.balance-toggle:focus-visible {
  outline: 1px solid var(--accent-cyan);
  outline-offset: 4px;
}

.balance-value {
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--accent-gold);
  font-family: var(--mono);
}

.balance-value small {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 400;
  margin-left: 0.35rem;
  letter-spacing: 0.08em;
}

.balance-hint {
  margin: 0.45rem 0 0;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

body:not(.balance-revealed) .balance-value {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.muted {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.dim { color: var(--text-dim); font-size: 0.8rem; }

.address-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg-panel-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.address-row code {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.72rem;
  word-break: break-all;
  color: var(--accent-cyan);
}

.btn {
  appearance: none;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn:hover {
  border-color: var(--accent-cyan);
  background: #18181f;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.12);
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.btn-primary:hover { filter: brightness(1.05); }

.btn-danger {
  background: rgba(255, 92, 122, 0.12);
  border-color: rgba(255, 92, 122, 0.4);
  color: var(--bad);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
  min-height: 40px;
  padding: 0.4rem 0.6rem;
}

.btn-block { width: 100%; }
.btn-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-row .btn { flex: 1; min-width: 120px; }

.icon-btn {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
}

label.field {
  display: block;
  margin-bottom: 0.85rem;
}

label.field > span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

input[type="text"],
input[type="number"],
input[type="password"],
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-panel-2);
  color: var(--text);
  outline: none;
  min-height: 44px;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61, 184, 255, 0.15);
}

textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--mono);
  font-size: 0.8rem;
}

.qr-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  margin: 0.75rem auto;
  width: fit-content;
}

.qr-wrap canvas, .qr-wrap img {
  display: block;
  width: 200px;
  height: 200px;
}

.tx-list { list-style: none; margin: 0; padding: 0; }

.tx-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.tx-item:last-child { border-bottom: none; }

.tx-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--bg-elevated);
}

.tx-icon.in { color: var(--good); background: rgba(61, 214, 140, 0.12); }
.tx-icon.out { color: var(--accent); background: rgba(61, 184, 255, 0.12); }

.tx-body { flex: 1; min-width: 0; }
.tx-body strong { display: block; font-size: 0.9rem; }
.tx-meta { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.15rem; word-break: break-all; }

.tx-amt {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.tx-amt.pos { color: var(--good); }
.tx-amt.neg { color: var(--text); }

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--phone-max);
  height: calc(var(--nav-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 240, 255, 0.18);
  z-index: 50;
}

.nav-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem;
  min-height: var(--nav-h);
}

.nav-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-btn.active {
  color: var(--accent);
}

.banner {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.22);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}

.banner strong { color: var(--accent-cyan); }

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: calc(var(--nav-h) + var(--safe-b) + 12px);
  max-width: calc(var(--phone-max) - 2rem);
  width: calc(100% - 2rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border-glow);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  z-index: 100;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  text-align: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-color: rgba(255, 92, 122, 0.5); color: var(--bad); }

.onboarding {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1rem;
}

.hidden { display: none !important; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  padding-bottom: calc(1rem + var(--safe-b));
}

.modal {
  width: 100%;
  max-width: var(--phone-max);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px 16px 12px 12px;
  padding: 1.15rem;
  max-height: 80vh;
  overflow-y: auto;
}

.modal h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.stub-chip {
  display: inline-block;
  margin: 0.25rem 0.35rem 0.25rem 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  color: var(--text-dim);
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  body {
    padding: 1rem 0;
  }
  .app-shell {
    min-height: calc(100dvh - 2rem);
    border-radius: 20px;
    overflow: hidden;
  }
  .bottom-nav {
    border-radius: 0 0 20px 20px;
  }
}

/* --- OAuth / wallet.dat / portfolio enhancements --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.oauth-chip {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.35);
}

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

.oauth-help {
  margin: 0;
  font-size: 0.75rem;
}

.oauth-help code,
.path-hint code,
.banner code,
.card code {
  font-family: var(--mono);
  font-size: 0.78em;
}

.path-hint {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-cyan);
  background: var(--bg-panel-2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  margin: 0 0 0.75rem;
  word-break: break-all;
}

.gis-host {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.soft-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.asset-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.asset-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.asset-item:last-child { border-bottom: none; }

.asset-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(192, 132, 252, 0.12));
  color: var(--accent-cyan);
  border: 1px solid var(--border);
}

.asset-icon.nft {
  background: rgba(124, 92, 255, 0.18);
  color: #c4b5ff;
}

.asset-body { flex: 1; min-width: 0; }
.asset-body strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.asset-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
  word-break: break-word;
}
.asset-meta.mono { font-family: var(--mono); }
.asset-meta a { color: var(--accent); text-decoration: none; }
.asset-meta a:hover { text-decoration: underline; }

.asset-bal {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
}

.asset-badge {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-weight: 700;
}
.asset-badge.demo {
  color: var(--warn);
  border-color: rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.1);
}
.asset-badge.live {
  color: var(--good);
  border-color: rgba(61, 214, 140, 0.4);
  background: rgba(61, 214, 140, 0.1);
}
.asset-badge.pending {
  color: var(--accent-2);
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.12);
}
.asset-badge.watch,
.asset-badge.rpc\? {
  color: var(--text-muted);
}

.warn-tag {
  color: var(--warn);
  font-weight: 600;
}

.bottom-nav {
  grid-template-columns: repeat(6, 1fr);
}

.nav-btn { font-size: 0.58rem; }
.nav-btn svg { width: 20px; height: 20px; }

select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-panel-2);
  color: var(--text);
  outline: none;
  min-height: 44px;
}

/* Recovery PIN inputs */
.pin-input {
  font-family: var(--mono);
  font-size: 1.35rem;
  letter-spacing: 0.35em;
  text-align: center;
  max-width: 10rem;
}
#pin-status {
  color: var(--accent-cyan);
}

/* Frost ↔ Base identity card */
.identity-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.identity-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.identity-label {
  flex: 0 0 3.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
}
.identity-row code {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-cyan);
  word-break: break-all;
}
.identity-row code.dim { color: var(--text-dim); }
.id-status {
  font-size: 0.85rem;
}
.id-status.linked {
  color: var(--good);
}
.id-status.unlinked {
  color: var(--text-muted);
}
.id-status.partial {
  color: var(--warn);
}


/* --- OAuth Client ID panel + FNR ledger badge --- */
.oauth-setup-panel {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: var(--bg-panel-2);
  margin: 0.15rem 0 0.35rem;
}

.base-link-cta h2 {
  margin-bottom: 0.35rem;
}

.asset-badge.ledger {
  background: rgba(61, 184, 255, 0.2);
  color: var(--accent-cyan);
  border: 1px solid rgba(61, 184, 255, 0.4);
}

.asset-badge.reserved {
  background: rgba(124, 92, 255, 0.18);
  color: #c4b5ff;
  border: 1px solid rgba(124, 92, 255, 0.35);
}

#oauth-settings-card .field {
  margin-bottom: 0.25rem;
}

/* HUD privacy + monospace polish */
.address-row {
  border-radius: 6px;
  border-color: rgba(0, 240, 255, 0.2);
  background: #000;
}
.modal {
  border-radius: 10px;
  border-color: rgba(0, 240, 255, 0.25);
  background: #0a0a0c;
}
.stub-chip {
  border-radius: 4px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  letter-spacing: 0.06em;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.12);
}

/* --- Login gate · Apple / Base providers --- */
.login-gate-card h2 {
  margin-bottom: 0.35rem;
}
.btn-apple {
  background: #fff;
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.btn-apple:hover {
  filter: brightness(0.95);
}
.btn-apple:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn-base {
  background: rgba(0, 82, 255, 0.22);
  color: #9ec0ff;
  border: 1px solid rgba(0, 82, 255, 0.45);
}
.btn-base:hover {
  filter: brightness(1.08);
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.55rem 0 0.15rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 240, 255, 0.18);
}
.login-providers .oauth-setup-panel {
  margin-top: 0.35rem;
}

.asset-badge.receive {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

/* BIP39 seed + Trocador swap */
.seed-words {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(120, 200, 255, 0.25);
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 0.85rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--accent-cyan, #7dd3fc);
}
.trocador-embed {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(120, 200, 255, 0.2);
  background: #0a0a0c;
}
.trocador-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  background: #0a0a0c;
}
#seed-confirm-input {
  width: 100%;
  min-height: 4.5rem;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 0.85rem;
}


/* --- Send / Receive · frost↔hex + Doge Funnel --- */
.send-alt-panel {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 240, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
}
.recv-id-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}
.recv-id-row code {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  word-break: break-all;
  color: var(--accent-cyan);
}
.recv-id-row.dim-row code {
  color: var(--text-dim);
}
#send-resolve-hint.warn-text { color: var(--warn); }
#send-resolve-hint.ok-text { color: var(--good); }
.doge-funnel h2 {
  margin-bottom: 0.35rem;
}
.funnel-block {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
}
.funnel-block:first-of-type {
  border-top: none;
  padding-top: 0;
}
.funnel-step {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent-cyan);
}
.funnel-formula {
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.45;
  color: #fff;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #000;
  border: 1px solid rgba(255, 200, 50, 0.35);
}
.funnel-note {
  opacity: 0.92;
}


/* --- Trust-style multi-chain receive tabs --- */
.recv-chain-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0.85rem;
}
.recv-chain-tab {
  appearance: none;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-dim, #9ab);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.recv-chain-tab:hover {
  border-color: rgba(0, 240, 255, 0.55);
  color: var(--text, #e8f6ff);
}
.recv-chain-tab.is-active {
  background: rgba(0, 240, 255, 0.16);
  border-color: var(--accent-cyan, #00f0ff);
  color: var(--accent-cyan, #00f0ff);
}
#recv-chain-addr-row.dim-row {
  opacity: 0.55;
}

/* Today's news strip — 2026-09-25 lock */
.news-strip {
  border: 1px solid rgba(0, 240, 255, 0.35);
  background: rgba(0, 40, 50, 0.55);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  line-height: 1.45;
}
.news-strip strong { color: var(--accent-cyan, #00f0ff); letter-spacing: 0.04em; }
.news-strip .news-comment {
  margin-top: 0.4rem;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  word-break: break-all;
  color: var(--text-dim, #9ab);
}
.news-strip .news-fda {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  color: var(--text-dim, #6a7a80);
}

<!-- pages-build 1790315195159 -->
