/* SolCleaner × Emblem — base shell styles. Mobile-first. */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ambient glow backdrop */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 360px at 50% -8%, rgba(57, 255, 122, 0.12), transparent 70%),
    radial-gradient(560px 320px at 90% 12%, rgba(20, 241, 149, 0.06), transparent 70%);
}

header, main, footer { position: relative; z-index: 1; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 12, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--bg-button);
  border: 1px solid var(--ring);
}
.brand-name { font-size: 17px; }
.brand-accent { color: var(--accent); }

/* ---- Hero ---- */
.hero { padding: 64px 0 40px; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}
.hero-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.grad {
  background: linear-gradient(92deg, var(--accent) 0%, var(--accent-success) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  margin: 0 0 28px;
  max-width: 760px;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.6;
  color: var(--text-secondary);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* ---- 3-step indicator ---- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step.is-active {
  border-color: var(--ring);
  box-shadow: var(--shadow-glow);
}
.step-dot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-button);
  border: 1px solid var(--ring);
}
.step.is-active .step-dot {
  color: var(--bg-base);
  background: var(--accent);
  border-color: var(--accent);
}
.step-body { display: flex; flex-direction: column; gap: 3px; }
.step-title { font-size: 15px; font-weight: 600; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.step-link { display: none; }

/* Completed step: success-tinted dot + check feel */
.step.is-done .step-dot {
  color: var(--bg-base);
  background: var(--accent-success);
  border-color: var(--accent-success);
}
.step.is-done { border-color: rgba(20, 241, 149, 0.25); }

/* ---- Dashboard ---- */
.dashboard { padding: 8px 0 72px; }
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.pill.is-ok { color: var(--accent-success); border-color: rgba(20, 241, 149, 0.3); }
.pill.is-bad { color: var(--accent-danger); border-color: rgba(248, 113, 113, 0.3); }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.empty-state { text-align: center; padding: 44px 24px; }
.empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--accent-secondary);
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
}
.empty-state h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.empty-state p {
  margin: 0 auto;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---- Connected wallet button ---- */
.btn--connected {
  border-color: rgba(20, 241, 149, 0.4);
  font-variant-numeric: tabular-nums;
}
.btn--connected:hover {
  border-color: var(--accent-danger);
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.18);
}
.btn--connected .wallet-x {
  opacity: 0;
  width: 0;
  margin-left: -8px;
  font-size: 16px;
  line-height: 1;
  transition: opacity var(--transition);
}
.btn--connected:hover .wallet-x { opacity: 1; width: auto; margin-left: 0; }
.btn--connected:hover .wallet-addr { opacity: 0.6; }
.dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-success);
  box-shadow: 0 0 8px rgba(20, 241, 149, 0.7);
}

/* ---- Scan spinner ---- */
.spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state.is-error h3 { color: var(--accent-danger); }
.link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---- Scan summary card ---- */
.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.summary-wallet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
}
.stat--good { border-color: rgba(20, 241, 149, 0.3); }
.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat--good .stat-value { color: var(--accent-success); }
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Token-account list (multi-select) ---- */
.accounts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.accounts-title { margin: 0; font-size: 15px; font-weight: 600; }

.select-all {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.select-all:hover { border-color: var(--accent); background: var(--bg-button); }
.select-all:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---- Value filter bar ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.filter-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}
.filter-btn:hover { border-color: var(--ring); color: var(--text); }
.filter-btn.is-active {
  color: var(--bg-base);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.filter-caption {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ---- Account rows ---- */
.acct-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.acct-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(10, 30, 18, 0.35);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  transition: border-color var(--transition);
}
.acct-row:hover { border-color: var(--ring); }
.acct-row.is-locked { opacity: 0.6; }

.acct-check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-success);
  cursor: pointer;
}
.acct-check:disabled { cursor: not-allowed; }

.acct-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* When a token logo is available, the <img> fills the avatar circle. On image
   error the JS removes this modifier and falls back to the initials glyph. */
.acct-avatar--img {
  text-shadow: none;
}
.acct-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.acct-id {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.acct-mint {
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Token label links out to Solscan to inspect the real contract address. */
.acct-mint--link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition), text-shadow var(--transition);
}
.acct-mint--link:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(57, 255, 122, 0.35);
}
.acct-ext {
  font-size: 11px;
  opacity: 0.55;
  flex: 0 0 auto;
}
.acct-mint--link:hover .acct-ext { opacity: 1; color: var(--accent); }
.acct-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.acct-prog {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(57, 255, 122, 0.1);
  border: 1px solid var(--ring);
}
.acct-prog.is-2022 {
  color: var(--accent-secondary);
  background: rgba(46, 230, 194, 0.1);
  border-color: rgba(46, 230, 194, 0.3);
}

.acct-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.tag-empty {
  color: var(--accent-success);
  background: rgba(20, 241, 149, 0.1);
  border: 1px solid rgba(20, 241, 149, 0.28);
}
.tag-dust {
  color: var(--accent-warning);
  background: rgba(247, 147, 38, 0.1);
  border: 1px solid rgba(247, 147, 38, 0.28);
}
.tag-held {
  color: var(--accent-secondary);
  background: rgba(46, 230, 194, 0.1);
  border: 1px solid rgba(46, 230, 194, 0.25);
}
.acct-hint { font-size: 11px; color: var(--text-muted); }

.acct-rent {
  flex: 0 0 auto;
  color: var(--accent-success);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.acct-empty {
  padding: 18px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Sticky recover action bar ---- */
.recover-bar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px -20px -20px;
  padding: 14px 20px;
  background: rgba(8, 8, 12, 0.92);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.recover-figure { display: flex; flex-direction: column; gap: 2px; }
.recover-amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-success);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.recover-meta { font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* ---- Burn surface (#1272) ---- */
.burn-card { margin-top: 16px; }

/* "Safe Burn Recommended" guidance panel */
.burn-rec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 14px;
  padding: 14px 16px;
  background: rgba(20, 241, 149, 0.05);
  border: 1px solid rgba(20, 241, 149, 0.22);
  border-radius: var(--radius);
}
.burn-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-success);
  text-transform: uppercase;
}
.burn-rec-star { color: var(--accent-warning); font-size: 13px; }
.burn-rec-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.burn-rec-text strong { color: var(--text); font-weight: 600; }
.burn-rec-text em { color: var(--accent-danger); font-style: normal; font-weight: 600; }

/* Per-row token balance (burn list) */
.acct-bal {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* Burn action bar reuses .recover-bar; its amount is a neutral tone (rent, not net) */
.burn-bar .recover-amount { color: var(--accent); }
.burn-actions { display: flex; gap: 10px; flex: 0 0 auto; }

/* ---- Swap surface (#1273) ------------------------------------------------- */
.swap-card { margin-top: 16px; }
.swap-intro {
  margin: 4px 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.swap-intro strong { color: var(--text); font-weight: 600; }

/* SOL / USDC segmented toggle */
.swap-toggle {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 14px;
  padding: 4px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.swap-tog {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.swap-tog:hover { color: var(--text-secondary); }
.swap-tog.is-active {
  color: var(--text);
  background: var(--bg-button);
  border-color: var(--border);
  box-shadow: var(--shadow-glow);
}
.swap-tog-glyph {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.swap-tog.is-active .swap-tog-glyph { color: var(--accent-success); }

/* Per-row estimated swap output (reuses .acct-rent slot) */
.swap-out-est {
  color: var(--accent-secondary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Swap action bar reuses .recover-bar; amount is a neutral count line */
.swap-bar .recover-amount { color: var(--text); font-size: 15px; }
.swap-bar .recover-meta { color: var(--accent-secondary); }

@media (max-width: 560px) {
  .swap-toggle { display: flex; }
  .swap-tog { flex: 1; justify-content: center; }
  .swap-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .swap-bar .btn { width: 100%; }
}

/* Permanent-burn warning line inside the confirm modal */
.sc-modal-warn {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent-danger);
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius);
}
.sc-modal-warn::before { content: "⚠"; flex: 0 0 auto; }

/* ---- Toast ---- */
.sc-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  z-index: 50;
  max-width: 90vw;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-button-hover);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.sc-toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ---- Close result modal ---- */
.sc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-modal);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.sc-modal-overlay.is-show { opacity: 1; pointer-events: auto; }
.sc-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 86vh;
  overflow-y: auto;
  padding: 22px 20px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-glow);
  transform: translateY(8px);
  transition: transform var(--transition);
}
.sc-modal-overlay.is-show .sc-modal { transform: translateY(0); }
.sc-modal.is-ok { border-color: rgba(20, 241, 149, 0.4); }
.sc-modal.is-warn { border-color: rgba(247, 147, 38, 0.4); }
.sc-modal.is-error { border-color: rgba(248, 113, 113, 0.4); }
.sc-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.sc-modal-x:hover { color: var(--text); background: var(--bg-button); }
.sc-modal-head { margin: 0 28px 14px 0; font-size: 17px; font-weight: 600; color: var(--text); }
.sc-modal-figure {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.sc-modal-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-success);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sc-modal-sub { font-size: 12px; color: var(--text-muted); }
.sc-modal-msg { margin: 0 0 14px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.sc-modal-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sc-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.sc-li-icon { flex: 0 0 auto; width: 16px; text-align: center; font-weight: 700; }
.sc-modal-list li.is-ok .sc-li-icon { color: var(--accent-success); }
.sc-modal-list li.is-err .sc-li-icon { color: var(--accent-danger); }
.sc-modal-list li.is-pending .sc-li-icon { color: var(--accent-warning); }
.sc-modal-skipped { margin-bottom: 14px; font-size: 12px; color: var(--text-muted); }
.sc-modal-skipped summary { cursor: pointer; color: var(--text-secondary); }
.sc-modal-skipped ul { margin: 8px 0 0; padding-left: 16px; display: flex; flex-direction: column; gap: 4px; }
.sc-modal-done { width: 100%; }

/* ---- Pre-confirm fee breakdown ---- */
.sc-fee-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.sc-fee-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.sc-fee-label { color: var(--text-muted); }
.sc-fee-value { color: var(--text); font-weight: 600; }
.sc-fee-row.is-fee .sc-fee-value { color: var(--accent-warning); }
.sc-fee-row.is-net {
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
  padding-top: 12px;
}
.sc-fee-row.is-net .sc-fee-label { color: var(--text-secondary); }
.sc-fee-row.is-net .sc-fee-value {
  color: var(--accent-success);
  font-size: 18px;
  font-weight: 700;
}
.sc-confirm-actions { display: flex; gap: 10px; }
.sc-confirm-actions .btn { flex: 1; }
.sc-confirm-cancel {
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.sc-confirm-cancel:hover { color: var(--text); }

/* ---- Welcome / onboarding modal (#1269) ---- */
.sc-modal.sc-welcome { max-width: 480px; }
.sc-welcome-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}
.sc-welcome .sc-modal-head { margin-bottom: 6px; line-height: 1.3; }
.sc-welcome-lede {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.sc-welcome-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: none;
}
.sc-welcome-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 12px 12px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.sc-welcome-step:hover {
  background: var(--bg-button);
  border-color: var(--border-subtle);
}
.sc-welcome-num {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-button);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.sc-welcome-ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(57, 255, 122, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.sc-welcome-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sc-welcome-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sc-welcome-step-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
}
.sc-welcome-actions { display: flex; flex-direction: column; gap: 10px; }
.sc-welcome-actions .btn { width: 100%; }

@media (min-width: 480px) {
  .sc-welcome-actions { flex-direction: row-reverse; }
  .sc-welcome-actions .sc-welcome-tour { flex: 1.4; }
  .sc-welcome-actions .sc-welcome-skip { flex: 1; }
}

@media (min-width: 560px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-status { color: var(--accent-secondary); }

/* ---- Responsive: tablet/desktop ---- */
@media (min-width: 720px) {
  .hero { padding: 88px 0 56px; }
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
  }
  .step-link {
    display: block;
    align-self: center;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
  }
}

/* ---- Demo mode ---- */
.pill.is-demo {
  color: var(--accent-warning);
  border-color: rgba(247, 147, 38, 0.35);
}

.btn--demo.is-active {
  color: var(--accent-warning);
  border-color: rgba(247, 147, 38, 0.5);
  background: rgba(247, 147, 38, 0.08);
}
.btn--demo.is-active:hover {
  border-color: var(--accent-warning);
  box-shadow: 0 0 20px rgba(247, 147, 38, 0.18);
}

.demo-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 147, 38, 0.3);
  background: linear-gradient(90deg, rgba(247, 147, 38, 0.1), rgba(247, 147, 38, 0.03));
  box-shadow: 0 0 18px rgba(247, 147, 38, 0.08);
}
.demo-badge {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-base);
  background: var(--accent-warning);
  padding: 4px 9px;
  border-radius: 999px;
}
.demo-text {
  flex: 1 1 240px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.demo-text strong { color: var(--text); font-weight: 600; }
.demo-exit {
  flex: none;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-warning);
  background: transparent;
  border: 1px solid rgba(247, 147, 38, 0.4);
  border-radius: var(--radius);
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.demo-exit:hover {
  border-color: var(--accent-warning);
  background: rgba(247, 147, 38, 0.1);
}

/* ===========================================================================
   Recovered summary + live recent-recoveries feed (#1267)
   =========================================================================== */
.recoveries { padding: 8px 0 72px; }
.pill.is-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-success);
  border-color: rgba(20, 241, 149, 0.3);
}
.pill.is-live .dot-live { animation: live-pulse 1.8s ease-in-out infinite; }
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.recoveries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* --- Summary tile (session + all-time) --- */
.recovered-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.recovered-divider {
  height: 1px;
  background: var(--border-subtle);
}
.recovered-tile { display: flex; flex-direction: column; gap: 4px; }
.recovered-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.recovered-value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-success);
  font-variant-numeric: tabular-nums;
}
.recovered-value.alt { color: var(--text); }
.recovered-sub {
  font-size: 12px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* --- Recent feed --- */
.recent-card { padding-top: 16px; }
.recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.recent-title { margin: 0; font-size: 15px; font-weight: 600; }
.recent-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  line-height: 1;
  color: var(--text-secondary);
  background: var(--bg-button);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.recent-refresh:hover {
  color: var(--accent);
  border-color: var(--ring);
  background: var(--bg-button-hover);
}
.recent-list { list-style: none; margin: 0; padding: 0; }
.recent-empty {
  padding: 18px 4px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.recent-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.recent-item:first-child { border-top: 0; }
.recent-wallet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
}
.recent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
  flex: none;
}
.recent-sol { color: var(--accent-success); font-weight: 600; }
.recent-accts { color: var(--text-muted); }
.recent-ago { color: var(--text-muted); text-align: right; }

@media (min-width: 760px) {
  .recoveries-grid { grid-template-columns: 0.9fr 1.4fr; align-items: start; }
  .recovered-card { grid-template-columns: 1fr 1px 1fr; align-items: center; }
  .recovered-divider { width: 1px; height: 100%; }
}

/* ===========================================================================
   Guided tour (#1270) — spotlight overlay + popover
   Box-shadow cutout: the ring element's enormous spread dims everything
   EXCEPT its own rect, producing the spotlight. Popover floats near the
   target on desktop, becomes a bottom sheet on narrow screens.
   =========================================================================== */
.sc-tour {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;          /* clicks pass through except on the popover */
  opacity: 0;
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-tour.is-show { opacity: 1; }

.sc-tour-ring {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 8px;
  /* The dim everywhere-but-here + an accent halo on the cutout edge. */
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.72),
              0 0 0 2px var(--accent),
              var(--shadow-glow);
  pointer-events: none;
  transition: top 180ms cubic-bezier(0.4, 0, 0.2, 1),
              left 180ms cubic-bezier(0.4, 0, 0.2, 1),
              width 180ms cubic-bezier(0.4, 0, 0.2, 1),
              height 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-tour-pop {
  position: fixed;
  width: min(340px, calc(100vw - 24px));
  max-width: 340px;
  padding: 16px 16px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 160ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 160ms cubic-bezier(0.4, 0, 0.2, 1),
              top 180ms cubic-bezier(0.4, 0, 0.2, 1),
              left 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-tour.is-show .sc-tour-pop { opacity: 1; transform: scale(1); }

.sc-tour-x {
  position: absolute;
  top: 8px; right: 10px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.sc-tour-x:hover { color: var(--text); background: var(--bg-button); }

.sc-tour-counter {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.sc-tour-title {
  margin: 0 24px 6px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.sc-tour-desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.sc-tour-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sc-tour-nav { display: flex; gap: 8px; }
.sc-tour-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}
.sc-tour-back:disabled { opacity: 0.4; cursor: not-allowed; }

/* Mobile: full-width bottom sheet so the popover never overflows. */
@media (max-width: 600px) {
  .sc-tour-pop,
  .sc-tour-pop.is-sheet {
    top: auto !important;
    left: 12px !important;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    transform: translateY(8px);
  }
  .sc-tour.is-show .sc-tour-pop { transform: translateY(0); }
  .sc-tour-actions .btn { flex: 1; }
  .sc-tour-skip { flex: 0 0 auto; }
}

/* ===========================================================================
   #1271 — Mobile-first onboarding polish
   Full-screen modals, >=44px touch targets, responsive lists, collapsible nav.
   Scoped to <=600px so the dark-luxury desktop density is untouched.
   =========================================================================== */

/* Header layout: brand on the left, a relative right cluster that hosts the
   hamburger + the actions (which collapse into a dropdown on mobile). */
.header-right { display: flex; align-items: center; gap: 10px; position: relative; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 600px) {
  /* ---- Collapsible nav ---- */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    color: var(--text);
    background: var(--bg-button);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
  }
  .nav-toggle:hover { border-color: var(--accent); }
  .nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .header-actions {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 220px;
    padding: 10px;
    background: rgba(8, 8, 12, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow), 0 14px 44px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 30;
  }
  .header-actions.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .header-actions .btn { width: 100%; min-height: 44px; justify-content: center; }

  /* ---- Touch targets >= 44px ---- */
  .btn { min-height: 44px; }
  .sc-modal-x { width: 44px; height: 44px; top: 8px; right: 8px; font-size: 24px; }
  .sc-tour-x { width: 44px; height: 44px; top: 6px; right: 6px; font-size: 24px; }
  .recent-refresh { width: 44px; height: 44px; }
  .select-all { min-height: 44px; padding: 8px 16px; }
  .filter-btn { min-height: 44px; padding: 10px 16px; }
  .demo-exit { min-height: 44px; padding: 10px 14px; }
  .acct-check { width: 24px; height: 24px; }
  .sc-tour-actions .btn { min-height: 44px; }

  /* Burn action bar: stack the figure + both buttons on narrow screens. */
  .burn-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .burn-actions { width: 100%; }
  .burn-actions .btn { flex: 1; }

  /* ---- Full-screen modals (welcome / confirm / result) ---- */
  .sc-modal-overlay { padding: 0; }
  .sc-modal,
  .sc-modal.sc-welcome {
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 20px 18px calc(22px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    transform: translateY(16px);
  }
  .sc-modal-overlay.is-show .sc-modal { transform: translateY(0); }
  /* Pin the primary actions to the bottom of the full-screen sheet. */
  .sc-welcome-actions,
  .sc-confirm-actions {
    flex-direction: column;
    margin-top: auto;
    padding-top: 16px;
  }
  .sc-welcome-actions .btn,
  .sc-confirm-actions .btn { width: 100%; }
  .sc-modal-done { margin-top: auto; }

  /* ---- Responsive recoveries feed: 4-col grid -> 2x2 card ---- */
  .recent-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "wallet sol"
      "accts  ago";
    gap: 3px 10px;
    padding: 13px 4px;
  }
  .recent-wallet {
    grid-area: wallet;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .recent-sol { grid-area: sol; text-align: right; }
  .recent-accts { grid-area: accts; }
  .recent-ago { grid-area: ago; text-align: right; }
}

/* ============================================================
   Content pages — FAQ / About (hash-routed views, #1274)
   ============================================================ */

/* Honour the [hidden] attribute even on flex/grid descendants. */
.route-view[hidden] { display: none !important; }

/* Header + footer nav links */
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-button); }
.nav-link.is-active { color: var(--accent); }

.footer-nav { display: flex; gap: 16px; }
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a.is-active { color: var(--accent); }

/* Page shell */
.page { padding: 56px 0 80px; }
.page-inner { max-width: 760px; }
.page-title {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  color: var(--text);
}
.page-sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 60ch;
}
.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* FAQ accordion */
.faq-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.is-open { border-color: var(--ring); box-shadow: var(--shadow-glow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-item.is-open .faq-chevron { transform: rotate(-135deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition), padding var(--transition);
  padding: 0 20px;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
  opacity: 1;
  padding: 0 20px 18px;
}
.faq-a p { margin: 0; color: var(--text-secondary); line-height: 1.65; font-size: 0.96rem; }
.faq-a strong { color: var(--text); font-weight: 600; }
.faq-a em { color: var(--accent-secondary); font-style: normal; }

/* About feature grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.about-card { display: flex; flex-direction: column; gap: 8px; }
.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--bg-button);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 4px;
}
.about-card h3 { margin: 2px 0 0; font-size: 1.02rem; font-weight: 600; color: var(--text); }
.about-card p { margin: 0; color: var(--text-secondary); line-height: 1.55; font-size: 0.92rem; }

/* About page widens past the 760px reading column for its grid. */
#view-about .page-inner { max-width: 920px; }

/* Mobile-first refinements */
@media (max-width: 600px) {
  .page { padding: 36px 0 60px; }
  .faq-q { padding: 16px; font-size: 0.98rem; }
  .faq-item.is-open .faq-a { padding: 0 16px 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .page-cta .btn { flex: 1 1 auto; justify-content: center; }
  /* Stack nav links full-width inside the mobile dropdown menu. */
  .header-actions.is-open .nav-link { width: 100%; justify-content: center; }
  .footer-nav { gap: 14px; }
}

/* ===========================================================================
   TERMINAL SKIN — green-ASCII / CRT layer for "sol RENT shredder".
   Sits on top of the token-driven base; purely cosmetic, no layout changes.
   =========================================================================== */

/* CRT scanlines over everything (non-interactive). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.18) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* Phosphor selection. */
::selection { background: rgba(57, 255, 122, 0.3); color: #eafff0; }

/* Faint CRT vignette for depth (the .bg-glow radials are now green). */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---- Brand wordmark: ASCII prompt + blinking cursor ---- */
.brand-mark {
  font-family: var(--font);
  color: var(--accent);
  text-shadow: var(--shadow-glow);
}
.brand-mark svg { display: none; }            /* drop the old shield glyph */
.brand-mark::before {
  content: ">_";
  font-weight: 700;
  letter-spacing: -1px;
}
.brand-name {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  text-shadow: var(--gx) var(--gy) 14px rgba(57, 255, 122, 0.6);
  transition: text-shadow 120ms linear;
}
.brand-accent {
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Blinking block cursor trailing the wordmark. */
.brand-name::after {
  content: "█";
  margin-left: 3px;
  color: var(--accent);
  animation: term-blink 1.05s steps(1) infinite;
}
@keyframes term-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---- Terminal-flavored headings / labels ---- */
.eyebrow {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.eyebrow::before { content: "// "; opacity: 0.7; }
.hero-title,
.page-title {
  text-shadow: var(--gx) var(--gy) 22px rgba(57, 255, 122, 0.45);
  transition: text-shadow 120ms linear;
}
.grad {
  text-shadow: var(--gx) var(--gy) 26px rgba(57, 255, 122, 0.65);
  transition: text-shadow 120ms linear;
}
.section-title,
.recovered-value {
  text-shadow: var(--gx) var(--gy) 16px rgba(57, 255, 122, 0.4);
  transition: text-shadow 120ms linear;
}

/* Phosphor glow on the live dot — also rides the cursor light. */
.dot-live {
  box-shadow: var(--gx) var(--gy) 14px var(--accent-success);
  transition: box-shadow 120ms linear;
}

/* Buttons read as terminal chips: uppercase, tracked. */
.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

/* Respect reduced-motion: kill the blink + flicker. */
@media (prefers-reduced-motion: reduce) {
  .brand-name::after { animation: none; }
  body::before { opacity: 0.35; }
}
