:root {
  --bg: #050505;
  --card: #0c0c0c;
  --card-hover: #111;
  --line: #ffffff17;
  --line-faint: #ffffff0d;
  --ink: #e9e9e6;
  --ink-dim: #8c8c8a;
  --ink-faint: #4c4c4b;
  --lime: #d7ff3a;
  --blue: #3d7fff;
  --up: #5fe3a1;
  --down: #ef6a5c;
  --font-head: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.mono { font-family: var(--font-mono); }
button { font: inherit; }

/* ---- ambient background ---- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
}
.orb-1 { width: 520px; height: 520px; background: var(--lime); top: -160px; left: -120px; animation: drift1 26s ease-in-out infinite; }
.orb-2 { width: 600px; height: 600px; background: var(--blue); top: 5%; right: -200px; animation: drift2 32s ease-in-out infinite; }
.orb-3 { width: 420px; height: 420px; background: var(--blue); opacity: 0.08; bottom: -180px; left: 30%; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,60px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,40px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(#ffffff06 1px, transparent 1px), linear-gradient(90deg, #ffffff06 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 0, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0, #000, transparent 75%);
}

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  background: #050505db;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-faint);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 24px; height: 24px; object-fit: contain; border-radius: 6px; }
.wordmark { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: 0.01em; }
.wordmark .x { background: linear-gradient(120deg, var(--lime), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); animation: pulseDot 1.8s ease-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 #5fe3a180; } 70% { box-shadow: 0 0 0 6px #5fe3a100; } 100% { box-shadow: 0 0 0 0 #5fe3a100; } }

.wallet-chip-wrap { position: relative; }
.wallet-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 9px 14px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.15s;
}
.wallet-chip:hover { border-color: #ffffff33; }
.wallet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); }
.wallet-dot.on { background: var(--up); box-shadow: 0 0 8px #5fe3a199; }
.wallet-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 60;
}
.wallet-panel.open { display: block; }
.wallet-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 12.5px; }
.wallet-row span:first-child { color: var(--ink-faint); }
.wallet-row span:last-child { color: var(--ink); }
.wallet-panel .btn { width: 100%; margin-top: 10px; }

/* ---- buttons ---- */
.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-dim);
  padding: 12px 22px;
  transition: all 0.15s;
}
.btn-primary { color: var(--bg); background: linear-gradient(100deg, var(--lime), var(--blue)); border-color: transparent; font-weight: 700; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost:hover { color: var(--ink); border-color: #ffffff33; }
.btn:disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.btn-block { width: 100%; }

.btn-link {
  background: none; border: none; color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 12px;
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer; padding: 0;
}
.btn-link:hover { color: var(--ink); }

/* ---- layout ---- */
main { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; padding: 0 32px; }
.block { padding: 96px 0; border-bottom: 1px solid var(--line-faint); }
.block:last-of-type { border-bottom: none; }

.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.s-label { display: block; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.block-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.01em; margin: 0 0 16px; }
.block-head { margin-bottom: 44px; }
.lede { color: var(--ink-dim); font-size: 16px; line-height: 1.7; max-width: 560px; margin: 0; }

/* ---- hero ---- */
.hero { padding-top: 100px; padding-bottom: 60px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(36px, 5.6vw, 60px); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 24px; }
.hero-title-solo { font-size: clamp(32px, 4vw, 46px); line-height: 1.2; max-width: 560px; margin-bottom: 36px; }
.hero .lede { margin: 0 0 34px; font-family: var(--font-mono); font-size: 16px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-visual { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.floating-card {
  position: relative;
  width: 300px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 26px 24px;
  animation: floaty 5s ease-in-out infinite;
  box-shadow: 0 40px 60px -20px #000000cc;
}
.floating-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(120deg, #d7ff3a59, transparent 30% 70%, #3d7fff59);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 5s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes borderGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.fc-label { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.fc-value { font-family: var(--font-head); font-size: 32px; font-weight: 700; margin-bottom: 6px; }
.fc-change { color: var(--up); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.fc-spark { width: 100%; height: 44px; }
.fc-spark .chart-fill { fill: url(#sparkGradHero); stroke: none; }
.fc-spark .chart-line { fill: none; stroke: var(--up); stroke-width: 1.6; }
.card-glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7ff3a22, #3d7fff14 55%, transparent 72%);
  filter: blur(6px);
  z-index: -1;
}

.logo-float {
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px #000000cc);
}
.logo-float img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 900px) {
  .logo-float { width: 220px; height: 220px; }
  .card-glow { width: 320px; height: 320px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; height: 260px; }
}

/* ---- basket ---- */
.basket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-faint); border: 1px solid var(--line-faint); }
.basket-cat { background: var(--card); padding: 30px 28px; cursor: pointer; transition: background 0.2s; }
.basket-cat:hover, .basket-cat.expanded { background: var(--card-hover); }
.bc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.bc-name { font-family: var(--font-head); font-size: 17px; font-weight: 600; }
.bc-weight { font-family: var(--font-head); font-size: 26px; font-weight: 700; background: linear-gradient(100deg, var(--lime), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bc-bar { height: 3px; background: var(--line-faint); margin-bottom: 18px; overflow: hidden; }
.bc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--lime), var(--blue)); width: 0; transition: width 0.8s ease; }
.bc-assets { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease; opacity: 0; }
.basket-cat.expanded .bc-assets { max-height: 200px; opacity: 1; }
.bc-assets li { padding: 6px 0; font-size: 13.5px; color: var(--ink-dim); border-top: 1px solid var(--line-faint); }
.bc-assets li:first-child { border-top: none; }
.bc-hint { font-size: 11px; color: var(--ink-faint); }

@media (max-width: 860px) { .basket-grid { grid-template-columns: 1fr; } }

/* ---- performance chart ---- */
.perf-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.perf-price { font-family: var(--font-head); font-size: 40px; font-weight: 700; }
.perf-change { font-size: 14px; font-weight: 600; margin-top: 6px; }
.perf-change.up { color: var(--up); }
.perf-change.down { color: var(--down); }
.perf-tabs { display: flex; gap: 2px; border: 1px solid var(--line); }
.perf-tab { background: transparent; border: none; color: var(--ink-dim); padding: 8px 14px; font-family: var(--font-mono); font-size: 11.5px; cursor: pointer; letter-spacing: 0.04em; }
.perf-tab.active { background: var(--ink); color: var(--bg); font-weight: 700; }

.chart-wrap { background: var(--card); border: 1px solid var(--line); padding: 24px 20px 10px; margin-bottom: 1px; }
.chart-svg { width: 100%; height: 260px; display: block; }
.chart-wrap .chart-line, .position-chart-wrap .chart-line { fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chart-wrap .chart-fill { fill: url(#chartGradLanding); }
.position-chart-wrap .chart-fill { fill: url(#chartGradPosition); }

.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-faint); border: 1px solid var(--line-faint); border-top: none; }
.metric-box { background: var(--card); padding: 22px 24px; }
.metric-value { font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.perf-note { color: var(--ink-faint); font-size: 10px; margin-top: 14px; opacity: 0.7; }

@media (max-width: 860px) { .metrics-row { grid-template-columns: repeat(2, 1fr); } }

/* ---- how it works ---- */
.grid { display: grid; gap: 1px; background: var(--line-faint); border: 1px solid var(--line-faint); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }
.card { background: var(--card); padding: 26px; transition: background 0.2s; }
.card:hover { background: var(--card-hover); }
.card h3 { font-family: var(--font-head); font-size: 16.5px; font-weight: 600; margin: 0 0 10px; }
.card p { color: var(--ink-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }
.step-num { display: inline-block; color: var(--blue); font-size: 12px; margin-bottom: 14px; }
@media (max-width: 860px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---- footer ---- */
.site-footer {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 30px 32px 56px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 11px; color: var(--ink-faint);
}
.site-footer .disclosure { max-width: 560px; line-height: 1.6; }

/* =========================================================
   CITADEX APP OVERLAY
   ========================================================= */
.app-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.app-overlay.open { display: flex; }

.app-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; border-bottom: 1px solid var(--line-faint);
  position: sticky; top: 0; background: #050505db; backdrop-filter: blur(10px); z-index: 5;
}
.app-close {
  background: none; border: 1px solid var(--line); color: var(--ink-dim);
  width: 34px; height: 34px; cursor: pointer; font-size: 16px; line-height: 1;
}
.app-close:hover { color: var(--ink); border-color: #ffffff33; }

.app-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px 80px; }
.app-content { width: 100%; max-width: 620px; }
.app-stage { width: 100%; }
.app-stage[hidden] { display: none; }

/* -- scanning -- */
.scan-wrap { text-align: center; }
.scan-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; margin-bottom: 30px; }
.scan-ring {
  width: 64px; height: 64px; margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--lime);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scan-log { text-align: left; max-width: 320px; margin: 0 auto; min-height: 170px; }
.scan-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-dim);
  padding: 6px 0; opacity: 0; transform: translateX(-8px);
  transition: opacity 0.35s, transform 0.35s;
}
.scan-line.show { opacity: 1; transform: translateX(0); }
.scan-line .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); flex-shrink: 0; box-shadow: 0 0 8px #5fe3a199; }
.scan-line.summary { color: var(--ink); font-weight: 600; }

/* -- holdings / select -- */
.stage-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; margin-bottom: 8px; text-align: center; }
.stage-sub { color: var(--ink-dim); font-size: 13.5px; text-align: center; margin-bottom: 34px; }

.holdings-select { list-style: none; margin: 0 0 24px; padding: 0; border: 1px solid var(--line-faint); }
.holdings-select li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-faint);
  cursor: pointer; transition: background 0.15s;
}
.holdings-select li:last-child { border-bottom: none; }
.holdings-select li:hover { background: #ffffff06; }
.h-check {
  width: 18px; height: 18px; border: 1px solid var(--line); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.holdings-select li.checked .h-check { background: linear-gradient(100deg, var(--lime), var(--blue)); border-color: transparent; }
.h-check::after { content: ""; width: 8px; height: 5px; border-left: 2px solid var(--bg); border-bottom: 2px solid var(--bg); transform: rotate(-45deg) translateY(-1px); opacity: 0; }
.holdings-select li.checked .h-check::after { opacity: 1; }
.h-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.h-sym { font-weight: 600; }
.h-chain { font-weight: 500; font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
.h-qty { font-size: 11px; color: var(--ink-faint); }
.h-val { color: var(--ink-dim); }

.select-all-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }

.selected-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 4px; border-top: 1px solid var(--line); }
.selected-total .val { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.priced-note { color: var(--ink-faint); font-size: 11px; text-align: right; margin: 0 0 24px; }

/* -- converge animation -- */
.converge-stage { position: relative; height: 340px; display: flex; align-items: center; justify-content: center; }
.converge-center {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--bg);
  box-shadow: 0 0 60px #3d7fff55;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.5s, transform 0.5s;
}
.converge-center.show { opacity: 1; transform: scale(1); }
.converge-chip {
  position: absolute;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600;
  transition: top 1s cubic-bezier(.6,0,.3,1), left 1s cubic-bezier(.6,0,.3,1), opacity 1s ease, transform 1s cubic-bezier(.6,0,.3,1);
  opacity: 1;
}
.converge-chip.merged { opacity: 0; transform: scale(0.3); }
.converge-result { text-align: center; margin-top: 24px; opacity: 0; transition: opacity 0.6s; }
.converge-result.show { opacity: 1; }
.converge-result .val { font-family: var(--font-head); font-size: 36px; font-weight: 700; }

/* -- position -- */
.position-hero { text-align: center; margin-bottom: 34px; }
.position-value { font-family: var(--font-head); font-size: 44px; font-weight: 700; }
.position-delta { font-size: 14px; font-weight: 600; margin-top: 8px; }
.position-delta.up { color: var(--up); }

.position-chart-wrap { background: var(--card); border: 1px solid var(--line); padding: 20px 18px 6px; margin-bottom: 1px; }
.position-chart { width: 100%; height: 140px; display: block; }

.position-rows { border: 1px solid var(--line); border-top: none; margin-bottom: 28px; }
.position-row { display: flex; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line-faint); font-size: 13.5px; }
.position-row:last-child { border-bottom: none; }
.position-row span:first-child { color: var(--ink-faint); }
.position-row span:last-child { color: var(--ink); font-weight: 600; }

/* -- payout -- */
.payout-avail { text-align: center; margin-bottom: 30px; }
.payout-avail .val { font-family: var(--font-head); font-size: 30px; font-weight: 700; }
.payout-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }

.asset-pill {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s;
}
.asset-pill:hover { color: var(--ink); border-color: #ffffff33; }
.asset-pill.active {
  color: var(--bg);
  background: linear-gradient(100deg, var(--lime), var(--blue));
  border-color: transparent;
  font-weight: 700;
}
.payout-result-box { background: #ffffff08; border: 1px solid var(--line-faint); padding: 26px; text-align: center; margin-bottom: 24px; }
.payout-result-box .qty { font-family: var(--font-head); font-size: 32px; font-weight: 700; }

/* -- confirmed -- */
.confirmed-wrap { text-align: center; }
.confirm-check {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--up), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.confirm-check svg { width: 26px; height: 26px; stroke: var(--bg); stroke-width: 2.4; fill: none; }

.app-disclosure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center; color: var(--ink-faint); font-size: 10.5px;
  margin-top: 22px; padding-top: 14px; border-top: 1px solid var(--line-faint);
  line-height: 1.5;
}
.disclosure-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px #d7ff3a99; flex-shrink: 0; }

.preview-note { text-align: center; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); opacity: 0.85; margin: 0 0 14px; }
.example-note { text-align: center; font-size: 11px; color: var(--ink-faint); margin-top: 6px; }

.scan-notice { text-align: center; font-size: 11.5px; color: var(--ink-dim); margin-top: 14px; }
.scan-error, .scan-empty { text-align: center; margin-top: 18px; }
.scan-error .stage-sub, .scan-empty .stage-sub { margin-bottom: 14px; }
.scan-error .btn, .scan-empty .btn { display: inline-block; width: auto; padding-left: 24px; padding-right: 24px; }

@media (max-width: 600px) {
  .app-header { padding: 16px 18px; }
  .position-value { font-size: 34px; }
}

/* ---- wallet picker modal ---- */
.wallet-picker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #000000b3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wallet-picker-overlay.open { display: flex; }
.wallet-picker {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px;
}
.wallet-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}
.wallet-picker-close {
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.wallet-picker-close:hover { color: var(--ink); }
.wallet-picker-list { display: flex; flex-direction: column; gap: 8px; }
.wallet-picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-mono);
  text-align: left;
}
.wallet-picker-row:hover { border-color: #ffffff33; background: var(--card-hover); }
.wallet-picker-row.disabled { opacity: 0.55; }
.wp-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--lime); flex-shrink: 0; }
.wp-icon img { width: 22px; height: 22px; border-radius: 5px; }
.wp-meta { display: flex; flex-direction: column; gap: 2px; }
.wp-name { font-size: 13px; color: var(--ink); }
.wp-sub { font-size: 11px; color: var(--ink-faint); }
.wallet-picker-empty { color: var(--ink-dim); font-size: 12.5px; text-align: center; padding: 10px 0; }
.wallet-picker-demo {
  width: 100%;
  margin-top: 14px;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--line-faint);
  color: var(--ink-dim);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-mono);
}
.wallet-picker-demo:hover { color: var(--lime); }
