/* ============================================================
   EthPreneur — Auth pages + Member panel
   (reuses the design tokens from styles.css)
   ============================================================ */

/* ---------- shared bits ---------- */
.theme-toggle--fixed { position: fixed; top: 1.2rem; right: 1.2rem; z-index: 50; }

/* ============================================================
   AUTH PAGES — split layout (brand panel + form)
   ============================================================ */
.auth-body { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; grid-template-rows: minmax(100vh, auto); background: var(--bg); }
@media (max-width: 880px) { .auth-body { grid-template-columns: 1fr; } }

/* left brand panel */
.auth-aside { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, var(--mint-500) 0%, var(--mint-700) 70%, #2c6f64 100%);
  display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2.2rem, 4vw, 3.5rem); }
@media (max-width: 880px) { .auth-aside { display: none; } }
.auth-aside::before, .auth-aside::after { content: ""; position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; }
.auth-aside::before { width: 360px; height: 360px; background: rgba(255,255,255,.18); top: -120px; right: -100px; }
.auth-aside::after { width: 300px; height: 300px; background: rgba(11,42,31,.35); bottom: -120px; left: -80px; }
.auth-aside__inner { position: relative; z-index: 2; max-width: 420px; }
.auth-aside .auth-logo { color: #fff; }
.auth-aside .auth-logo span { color: #fff; }
.auth-aside .auth-logo .nav__logo-mark { color: rgba(255,255,255,.9); }
.auth-aside h2 { font-family: "Sora"; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.1; letter-spacing: -.02em; margin: 1.6rem 0 1.4rem; }
.auth-points { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.auth-points li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; color: rgba(255,255,255,.92); }
.auth-points li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.auth-aside__foot { position: relative; z-index: 2; font-size: .85rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .5rem; }
.auth-aside__dot { width: 8px; height: 8px; border-radius: 50%; background: #d6f5f0; box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: pulseDot 2s infinite; }

/* right form panel */
.auth-main { position: relative; display: grid; place-items: center; padding: 2.5rem 1.2rem; overflow: hidden;
  background: radial-gradient(130% 90% at 50% -10%, var(--mint-100), var(--bg) 58%); }
.auth-main .orb { position: absolute; opacity: .65; }
.auth-main .orb--1 { width: 380px; height: 380px; top: -120px; right: -120px; }
.auth-main .orb--2 { width: 420px; height: 420px; bottom: -160px; left: -140px; }
.auth-main .grid-overlay { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(circle at 50% 40%, #000, transparent 70%); }
.auth-wrap { width: 100%; max-width: 420px; position: relative; z-index: 2; }
.auth-card { position: relative; overflow: hidden; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  padding: clamp(2rem, 4vw, 2.8rem); box-shadow: var(--shadow); }
.auth-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--mint-400), var(--mint-600)); }
.auth-card::after { content: ""; position: absolute; top: -90px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(121,192,184,.16), transparent 70%);
  filter: blur(20px); pointer-events: none; }
.auth-card > * { position: relative; }
.auth-logo { font-family: "Sora"; font-weight: 800; font-size: 1.25rem; display: inline-flex; align-items: center; margin-bottom: 1.3rem; }
.auth-logo span { color: var(--mint-600); }
.auth-logo .nav__logo-mark { color: var(--mint-500); margin-right: .4rem; }
.auth-card h1 { font-family: "Sora"; font-size: 1.6rem; letter-spacing: -.02em; margin-bottom: .5rem; }
.auth-sub { color: var(--ink-soft); font-size: .96rem; margin: 0 auto 1.6rem; max-width: 340px; line-height: 1.55; }

/* supported-wallets strip */
.auth-wallets { margin-top: 1.3rem; }
.auth-wallets__label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .7rem; }
.auth-wallets__row { display: flex; justify-content: center; gap: .5rem; }
.auth-wallets__row img { width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s; }
.auth-wallets__row img:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.auth-divider { height: 1px; background: var(--line); margin: 1.5rem 0 1.2rem; }

.field { display: block; text-align: left; margin-bottom: 1.3rem; }
.field__label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; }
.field input { width: 100%; padding: .95rem 1.1rem; border-radius: 14px; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--line); background: var(--bg); color: var(--ink); transition: border-color .25s, box-shadow .25s;
  text-transform: uppercase; letter-spacing: .03em; }
.field input:focus { outline: none; border-color: var(--mint-400); box-shadow: 0 0 0 4px rgba(121,192,184,.12); }
.field__hint { display: block; color: var(--ink-soft); font-size: .82rem; margin-top: .5rem; text-transform: none; letter-spacing: 0; }

.wallet-btn { width: 100%; padding: 1rem 1.5rem; font-size: 1rem; }
.wallet-btn[disabled] { opacity: .6; cursor: progress; }
.wallet-btn__icon { display: inline-flex; }
.wallet-btn__icon svg { width: 20px; height: 20px; }

.auth-status { margin-top: 1.2rem; padding: .85rem 1rem; border-radius: 12px; font-size: .9rem; font-weight: 500; }
.auth-status--info { background: var(--mint-100); color: var(--mint-700); }
.auth-status--error { background: #fdecec; color: #b42318; }
.auth-status--ok { background: #e3f4f1; color: var(--mint-700); }
body.dark .auth-status--error { background: #2a1414; color: #ff9a8f; }

.auth-alert { padding: .85rem 1rem; border-radius: 12px; font-size: .9rem; margin-bottom: 1.4rem; text-align: left; }
.auth-alert--error { background: #fdecec; color: #b42318; }
.auth-alert--ok { background: #e3f4f1; color: var(--mint-700); }

.auth-foot { margin-top: 1.5rem; color: var(--ink-soft); font-size: .92rem; text-align: center; }
.auth-foot a { color: var(--mint-600); font-weight: 600; }
.auth-secure { margin-top: 1.4rem; display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--ink-soft); font-size: .8rem; }
.auth-secure svg { width: 14px; height: 14px; }

/* ============================================================
   WALLET PICKER MODAL
   ============================================================ */
.wm-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(8,19,13,.55); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; padding: 1rem; }
.wm-overlay.is-open { opacity: 1; visibility: visible; }
.wm-modal { position: relative; width: 100%; max-width: 420px; background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); overflow: hidden; transform: translateY(16px) scale(.98); transition: transform .35s var(--ease); }
.wm-modal::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 1;
  background: linear-gradient(90deg, var(--mint-400), var(--mint-600)); }
.wm-modal::after { content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(121,192,184,.18), transparent 70%);
  filter: blur(18px); pointer-events: none; }
.wm-overlay.is-open .wm-modal { transform: translateY(0) scale(1); }
@media (max-width: 480px) { .wm-overlay { align-items: flex-end; padding: 0; }
  .wm-modal { max-width: none; border-radius: 24px 24px 0 0; } }
.wm-head { position: relative; display: flex; align-items: center; gap: .7rem; padding: 1.4rem 1.4rem 1rem; }
.wm-head__icon { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mint-400), var(--mint-600)); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(121,192,184,.6); }
.wm-head__icon svg { width: 18px; height: 18px; }
.wm-head h3 { font-family: "Sora"; font-size: 1.15rem; flex: 1; }
.wm-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg);
  display: grid; place-items: center; cursor: pointer; color: var(--ink-soft); font-size: 1.1rem; line-height: 1; transition: background .25s, color .25s; }
.wm-close:hover { background: var(--mint-100); color: var(--mint-700); }
.wm-list { padding: .4rem .8rem 1.1rem; max-height: 60vh; overflow-y: auto; }
.wm-section { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
  padding: .8rem .6rem .4rem; }
.wm-item { width: 100%; display: flex; align-items: center; gap: .9rem; padding: .8rem .7rem; border: none; background: none;
  border-radius: 14px; cursor: pointer; text-align: left; transition: background .2s; font: inherit; color: var(--ink); }
.wm-item:hover { background: var(--bg-2); }
.wm-item__icon { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 1rem; overflow: hidden; }
.wm-item__icon img { width: 100%; height: 100%; object-fit: cover; }
.wm-item__name { flex: 1; font-weight: 600; font-size: .98rem; }
.wm-item__badge { font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; }
.wm-item__badge.is-detected { background: #e3f4f1; color: var(--mint-700); }
.wm-item__badge.is-open { background: var(--mint-100); color: var(--mint-700); }
.wm-item__badge.is-install { background: var(--bg-2); color: var(--ink-soft); }
.wm-foot { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .8rem; text-align: center; }

/* ============================================================
   MEMBER PANEL
   ============================================================ */
/* Neo-abstract gradient-mesh backdrop (layered organic blobs) */
.panel-body {
  background-color: var(--bg-2);
  background-image:
    radial-gradient(46% 40% at 15% 8%,  rgba(121,192,184,.30), transparent 60%),
    radial-gradient(40% 36% at 97% 3%,  rgba(58,141,255,.22), transparent 58%),
    radial-gradient(50% 42% at 93% 85%, rgba(124,92,255,.20), transparent 60%),
    radial-gradient(46% 38% at 3% 95%,  rgba(121,192,184,.24), transparent 60%),
    radial-gradient(32% 28% at 58% 52%, rgba(143,203,196,.12), transparent 70%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
body.dark.panel-body {
  background-image:
    radial-gradient(46% 40% at 15% 8%,  rgba(121,192,184,.30), transparent 60%),
    radial-gradient(40% 36% at 97% 3%,  rgba(58,141,255,.20), transparent 58%),
    radial-gradient(50% 42% at 93% 85%, rgba(124,92,255,.24), transparent 60%),
    radial-gradient(46% 38% at 3% 95%,  rgba(121,192,184,.22), transparent 60%);
}
.panel { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; }
@media (max-width: 760px) { .panel { grid-template-columns: 1fr; } }

/* Dark green sidebar — the panel's main color anchor */
.side {
  background: linear-gradient(180deg, #0c2c20 0%, #07190f 100%);
  border-right: 1px solid rgba(143,203,196,.14);
  padding: 1.6rem 1.1rem; display: flex; flex-direction: column; gap: 1.4rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.side::-webkit-scrollbar { width: 0; height: 0; display: none; }
@media (max-width: 760px) {
  .side {
    position: sticky; top: 0; z-index: 30; height: auto;
    flex-direction: row; align-items: center; gap: .8rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: .7rem 1rem; scrollbar-width: none;
  }
  .side::-webkit-scrollbar { display: none; }
  .side__logo { padding: 0; flex: none; font-size: 1.05rem; }
  .side__nav { flex-direction: row; gap: .3rem; flex: 1 0 auto; }
  .side__nav a { white-space: nowrap; padding: .55rem .85rem; }
  .side__logout { flex: none; padding: .55rem .85rem; white-space: nowrap; }
}
.side__logo { font-family: "Sora"; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; gap: 0; color: #fff; padding: .2rem .4rem .8rem; }
.side__logo span { color: var(--mint-300); }
.side__logo .nav__logo-mark { color: var(--mint-400); }
.side__nav { display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.side__nav a {
  padding: .8rem 1rem; border-radius: 12px; font-weight: 500; color: #a7c8b8;
  transition: background .25s, color .25s, transform .2s; font-size: .95rem;
}
.side__nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.side__nav a.is-active { background: linear-gradient(135deg, var(--mint-400), var(--mint-600)); color: #fff; font-weight: 700;
  box-shadow: 0 10px 22px -10px rgba(121,192,184,.7); }
.side__logout { padding: .8rem 1rem; border-radius: 12px; color: #a7c8b8; font-weight: 500; transition: background .25s, color .25s; }
.side__logout:hover { background: rgba(255,77,79,.16); color: #ff9a8f; }

.panel__main { display: flex; flex-direction: column; min-width: 0; background: transparent; position: relative; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 2.4rem);
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
}
body.dark .topbar { background: rgba(16,32,24,.85); }
.topbar__title { font-family: "Sora"; font-weight: 700; font-size: 1.2rem; }
.topbar__right { display: flex; align-items: center; gap: .8rem; }
.wallet-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border-radius: 100px; background: var(--mint-100); color: var(--mint-700); font-weight: 600; font-size: .85rem; font-family: "Sora"; }
.wallet-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 3px rgba(121,192,184,.2); }

.content { padding: clamp(1.4rem, 4vw, 2.4rem); max-width: 1100px; }
.welcome { margin-bottom: 1.8rem; }
.welcome h2 { font-family: "Sora"; font-size: 1.6rem; letter-spacing: -.02em; margin-bottom: .3rem; }
.welcome p { color: var(--ink-soft); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.8rem; }
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stat-grid { gap: .7rem; } .stat-card { padding: 1.1rem; } .stat-card__num { font-size: 1.5rem; } }
.stat-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card__label { display: block; color: var(--ink-soft); font-size: .85rem; font-weight: 500; }
.stat-card__num { display: block; font-family: "Sora"; font-weight: 800; font-size: 1.85rem; margin: .4rem 0 .2rem;
  background: linear-gradient(135deg, var(--mint-500), var(--mint-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card__meta { display: block; color: var(--ink-soft); font-size: .8rem; }
.stat-card__meta a { color: inherit; font-weight: 600; text-decoration: underline; }

/* primary (filled) highlight card */
.stat-card--primary { background: linear-gradient(135deg, var(--mint-500), var(--mint-700)); border: none; color: #fff; }
.stat-card--primary .stat-card__label, .stat-card--primary .stat-card__meta { color: rgba(255,255,255,.85); }
.stat-card--primary .stat-card__num { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.stat-card--primary::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,.16); top: -60px; right: -40px; }

/* color-washed cards (work in light + dark via --white base) */
.stat-card--blue   { background: linear-gradient(135deg, rgba(58,141,255,.16), transparent 60%), var(--white); border-color: rgba(58,141,255,.28); }
.stat-card--blue   .stat-card__num { background: linear-gradient(135deg, #4d9bff, #2563eb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card--amber  { background: linear-gradient(135deg, rgba(245,158,11,.18), transparent 60%), var(--white); border-color: rgba(245,158,11,.30); }
.stat-card--amber  .stat-card__num { background: linear-gradient(135deg, #f7b733, #d97706); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.panel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 760px) { .panel-row { grid-template-columns: 1fr; } }
.panel-box { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.panel-box h3 { position: relative; padding-left: .8rem; }
.panel-box h3::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 4px; border-radius: 4px; background: linear-gradient(180deg, var(--mint-400), var(--mint-600)); }
.panel-box h3 { font-family: "Sora"; font-size: 1.1rem; margin-bottom: .3rem; }
.muted { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1rem; }

.copy-field { display: flex; align-items: center; gap: .6rem; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: .5rem .5rem .5rem 1rem; }
.copy-field code { font-family: "Sora"; font-weight: 600; flex: 1; word-break: break-all; font-size: .95rem; }
.btn--sm { padding: .5rem .9rem; font-size: .82rem; }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: .85rem .9rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
.table th { color: var(--ink-soft); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.table code { font-size: .85rem; }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.badge--ok { background: #e3f4f1; color: var(--mint-700); }

.empty { text-align: center; padding: 2.5rem 1rem; color: var(--ink-soft); }
.empty__icon { font-size: 2.5rem; margin-bottom: .8rem; }
.empty code { background: var(--mint-100); color: var(--mint-700); padding: .15rem .5rem; border-radius: 6px; font-weight: 600; }

.kv { display: grid; gap: 0; }
.kv__row { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.kv__row:last-child { border-bottom: none; }
.kv dt { color: var(--ink-soft); font-weight: 600; font-size: .9rem; }
.kv dd code { word-break: break-all; }
@media (max-width: 540px) { .kv__row { grid-template-columns: 1fr; gap: .3rem; } }

/* ---------- staking platform UI ---------- */
.status-pill { font-size: .75rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; }
.status-pill--on { background: #e3f4f1; color: var(--mint-700); }
.status-pill--off { background: #fff3d6; color: #9a6b00; }

.flash { padding: .85rem 1.1rem; border-radius: 12px; font-size: .92rem; font-weight: 500; margin-bottom: 1.4rem; }
.flash--ok { background: #e3f4f1; color: var(--mint-700); }
.flash--err { background: #fdecec; color: #b42318; }
body.dark .flash--err { background: #2a1414; color: #ff9a8f; }

.callout { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--mint-100), var(--bg-2)); border: 1px solid var(--mint-200);
  border-radius: 16px; padding: 1.1rem 1.3rem; margin-bottom: 1.6rem; }
.callout strong { display: block; font-family: "Sora"; }
.callout span { color: var(--ink-soft); font-size: .92rem; }

.income-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: .4rem; }
@media (max-width: 760px) { .income-grid { grid-template-columns: repeat(2, 1fr); } }
.income-cell { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.income-cell span { display: block; color: var(--ink-soft); font-size: .82rem; }
.income-cell b { display: block; font-family: "Sora"; font-size: 1.3rem; margin: .25rem 0; color: var(--mint-700); }
.income-cell small { color: var(--ink-soft); font-size: .76rem; }
.income-cell--mint   { background: linear-gradient(135deg, rgba(121,192,184,.16), transparent 65%), var(--white); border-color: rgba(121,192,184,.30); }
.income-cell--mint b { color: var(--mint-700); }
.income-cell--blue   { background: linear-gradient(135deg, rgba(58,141,255,.16), transparent 65%), var(--white); border-color: rgba(58,141,255,.28); }
.income-cell--blue b { color: #2563eb; }
.income-cell--amber  { background: linear-gradient(135deg, rgba(245,158,11,.18), transparent 65%), var(--white); border-color: rgba(245,158,11,.30); }
.income-cell--amber b { color: #b9770a; }
.income-cell--violet { background: linear-gradient(135deg, rgba(124,92,255,.18), transparent 65%), var(--white); border-color: rgba(124,92,255,.30); }
.income-cell--violet b { color: #6d4aff; }

.cap { margin-top: 1.4rem; }
.cap__head { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 600; margin-bottom: .5rem; }
.cap__bar { height: 10px; border-radius: 100px; background: var(--bg-2); overflow: hidden; border: 1px solid var(--line); }
.cap__bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--mint-400), var(--mint-600)); transition: width .6s var(--ease); }

.mini-stats { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.mini-stats div b { display: block; font-family: "Sora"; font-size: 1.5rem; color: var(--ink); }
.mini-stats div span { color: var(--ink-soft); font-size: .82rem; }

.stack-form { display: grid; gap: 1.1rem; margin-top: .4rem; }
.stack-form .field { margin-bottom: 0; }
.stack-form input { text-transform: none; letter-spacing: 0; }
.big-balance { font-family: "Sora"; font-weight: 800; font-size: 2.2rem; color: var(--mint-700); margin: .3rem 0 1.3rem; }

.plan-list { list-style: none; display: grid; gap: .7rem; }
.plan-list li { display: flex; gap: .6rem; align-items: baseline; color: var(--ink-soft); font-size: .95rem; }
.plan-list li::before { content: "✓"; color: var(--mint-500); font-weight: 700; }
.plan-list b { color: var(--ink); }

.badge--muted { background: var(--bg-2); color: var(--ink-soft); }
.table td.pos { color: var(--mint-600); font-weight: 600; }
.table td.neg { color: #b42318; font-weight: 600; }
.table td.muted-cell { color: var(--ink-soft); font-size: .85rem; }

.btn--ghost-light { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.25); }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: .9rem; }
.nav__login { font-weight: 500; color: var(--ink-soft); font-size: .95rem; }
.nav__login:hover { color: var(--ink); }
