:root{
  --page:#0a0b0d;
  --surface:#131519;
  --surface-2:#191c22;
  --surface-3:#20232b;
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.16);

  --text:#ffffff;
  --text-dim:#b3b2ab;
  --text-faint:#7c7b76;

  --good:#0ca30c;
  --good-text:#3ddc3d;
  --warning:#fab219;
  --serious:#ec835a;
  --critical:#d03b3b;
  --critical-text:#ff6b6b;

  --brand:#5b7cfa;
  --brand-2:#3987e5;
  --gold:#d4af6a;
  --pink:#ff5c77;
  --pink-wash:rgba(255,92,119,.14);

  --radius:16px;
  --radius-sm:10px;
  --shadow:0 12px 32px rgba(0,0,0,.45);
  --shadow-sm:0 4px 14px rgba(0,0,0,.3);
  color-scheme:dark;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
/* The `hidden` attribute loses to any class setting display (flex/block/etc)
   at equal CSS specificity, since author styles beat the UA stylesheet's
   [hidden]{display:none} default. Force it to always win — several toggled
   sections (.auth-form, .paywall, etc) rely on this actually hiding them. */
[hidden]{display:none !important;}
body{
  background:
    radial-gradient(900px 480px at 10% -8%, rgba(91,124,250,.10), transparent 60%),
    radial-gradient(800px 420px at 100% 0%, rgba(57,135,229,.08), transparent 55%),
    var(--page);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  min-height:100vh;
  padding-bottom:100px;
  -webkit-font-smoothing:antialiased;
}

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

.mono{
  font-family:'IBM Plex Mono','SFMono-Regular',ui-monospace,Consolas,monospace;
  font-variant-numeric:tabular-nums;
}

.container{
  max-width:960px;
  margin:0 auto;
  padding:0 20px;
}

/* ---------- Top bar ---------- */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0 12px;
}
.brand{
  display:flex;
  align-items:center;
}
.brand-logo-chip{
  background:#fff;
  border-radius:8px;
  padding:5px 8px;
  display:inline-flex;
  align-items:center;
}
.brand-logo-wrap{
  width:86px;height:40px;
  overflow:hidden;
  position:relative;
}
.brand-logo{
  position:absolute;
  height:107px;width:auto;
  top:-30px;left:-37px;
  display:block;
}

.back-link{
  width:34px;height:34px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-dim);
  background:var(--surface-2);
  transition:color .15s ease, background .15s ease;
}
.back-link:hover{color:var(--text);background:var(--surface-3);}
.back-link svg{width:17px;height:17px;}
.topbar-spacer{width:34px;}

.topnav{
  display:flex;
  gap:4px;
  padding:4px;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:999px;
}
.topnav-link{
  padding:7px 16px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  color:var(--text-faint);
  transition:color .15s ease, background .15s ease;
}
.topnav-link:hover{color:var(--text-dim);}
.topnav-link.active{color:#fff;background:linear-gradient(135deg,var(--brand),var(--brand-2));}

.tier-badge{
  margin-left:4px;
  font-size:.78rem;
  vertical-align:-1px;
}

.profile-menu{position:relative;display:flex;align-items:center;}
.profile-dropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:160px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow);
  padding:6px;
  z-index:20;
}
.profile-dropdown-item{
  display:block;
  width:100%;
  text-align:left;
  padding:9px 12px;
  border-radius:8px;
  border:none;
  background:none;
  color:var(--text-dim);
  font-family:'Inter',sans-serif;
  font-size:.82rem;
  font-weight:600;
  cursor:pointer;
  transition:background .15s ease, color .15s ease;
}
.profile-dropdown-item:hover{background:var(--surface-2);color:var(--text);}
.profile-dropdown-item.profile-dropdown-logout{color:var(--critical-text);}
.profile-dropdown-item.profile-dropdown-logout:hover{background:rgba(208,59,59,.12);}

.fab-badge{
  position:absolute;
  top:-4px;
  right:-4px;
  font-size:.85rem;
  background:var(--surface);
  border-radius:50%;
  width:20px;height:20px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-sm);
}

.upload-usage-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  padding:16px 20px;
  text-align:center;
  background:var(--surface);
  border-top:1px solid var(--border-strong);
  box-shadow:0 -8px 24px rgba(0,0,0,.35);
  font-family:'IBM Plex Mono',monospace;
  font-size:1.05rem;
  font-weight:800;
  color:var(--text);
  z-index:40;
}
.upload-usage-bar .count{color:var(--brand-2);}
.upload-usage-bar .count.at-limit{color:var(--critical-text);}
.upload-usage-bar .label{
  display:block;
  margin-top:2px;
  font-family:'Inter',sans-serif;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:var(--text-faint);
}

.section-divider{
  height:1px;
  background:var(--border);
  margin:26px 0;
  border:none;
}

.page-title{
  font-size:1.35rem;
  font-weight:800;
  margin:8px 0 4px;
}
.page-sub{
  font-size:.85rem;
  color:var(--text-faint);
  margin-bottom:18px;
}

.empty-state{
  text-align:center;
  color:var(--text-faint);
  font-size:.85rem;
  padding:30px 0;
}

@keyframes row-in{
  from{ opacity:0; transform:translateY(6px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ---------- Bottom FAB: opens Upload Trade ---------- */
.fab-upload{
  position:fixed;
  bottom:24px;left:50%;
  transform:translateX(-50%);
  width:58px;height:58px;
  border-radius:50%;
  background:#f5892b;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  box-shadow:0 8px 22px rgba(245,137,43,.45);
  z-index:50;
  transition:transform .15s ease, box-shadow .15s ease;
}
.fab-upload:hover{transform:translateX(-50%) translateY(-2px);box-shadow:0 10px 26px rgba(245,137,43,.55);}
.fab-upload svg{width:26px;height:26px;}

/* ---------- Upload Trade ---------- */
.dropzone{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:20px;
  padding:48px 20px;
  border:1.5px dashed var(--border-strong);
  border-radius:var(--radius);
  color:var(--text-faint);
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
.dropzone:hover, .dropzone.drag{border-color:var(--brand-2);background:rgba(57,135,229,.05);}
.dropzone svg{width:26px;height:26px;color:var(--text-faint);}
.dropzone-title{font-size:.92rem;font-weight:700;color:var(--text-dim);}
.dropzone-sub{font-size:.76rem;}

.preview-image{
  width:100%;
  max-height:360px;
  object-fit:contain;
  border-radius:var(--radius);
  background:var(--surface);
  border:1px solid var(--border);
  margin-top:20px;
}
.analyze-btn{
  width:100%;
  margin-top:16px;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:.9rem;
  font-weight:700;
  cursor:pointer;
  transition:filter .15s ease, opacity .15s ease;
}
.analyze-btn:hover{filter:brightness(1.08);}
.analyze-btn:disabled{opacity:.7;cursor:default;}
.text-btn{
  display:block;
  width:100%;
  margin-top:12px;
  padding:8px;
  border:none;
  background:none;
  color:var(--text-faint);
  font-family:'Inter',sans-serif;
  font-size:.82rem;
  font-weight:600;
  cursor:pointer;
  transition:color .15s ease;
}
.text-btn:hover{color:var(--text-dim);}

.report-header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-top:20px;
}
.report-symbol{font-size:1.2rem;font-weight:800;}
.report-name{font-size:.78rem;color:var(--text-faint);margin-top:2px;}
.report-price{font-family:'IBM Plex Mono',monospace;font-size:1.1rem;font-weight:700;}

.report-score-block{margin-top:20px;}
.report-score-row{display:flex;align-items:baseline;gap:10px;}
.report-score{font-size:2.2rem;font-weight:800;font-family:'IBM Plex Mono',monospace;}
.report-score.safe{color:var(--good-text);}
.report-score.mixed{color:var(--warning);}
.report-score.risky{color:var(--critical-text);}
.report-verdict{font-size:.86rem;font-weight:700;}
.report-verdict.safe{color:var(--good-text);}
.report-verdict.mixed{color:var(--warning);}
.report-verdict.risky{color:var(--critical-text);}
.report-bar{
  width:100%;height:8px;
  border-radius:999px;
  background:var(--surface-2);
  margin-top:12px;
  overflow:hidden;
}
.report-bar-fill{
  height:100%;
  border-radius:999px;
  transition:width .5s cubic-bezier(.16,1,.3,1);
}
.report-bar-fill.safe{background:var(--good);}
.report-bar-fill.mixed{background:var(--warning);}
.report-bar-fill.risky{background:var(--critical);}

.report-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 20px;
  margin-top:22px;
}
.report-stats .stat-row{display:flex;justify-content:space-between;font-size:.82rem;color:var(--text-faint);}
.report-stats .stat-row b{color:var(--text);font-family:'IBM Plex Mono',monospace;font-weight:700;}

.sign-block{margin-top:20px;}
.sign-heading{font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.4px;margin-bottom:10px;}
.sign-heading.up{color:var(--good-text);}
.sign-heading.down{color:var(--critical-text);}
.sign-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
.sign-list li{
  position:relative;
  padding-left:20px;
  font-size:.85rem;
  line-height:1.55;
  color:var(--text-dim);
}
.sign-list.up li::before{content:"";position:absolute;left:0;top:7px;width:8px;height:8px;border-radius:50%;background:var(--good-text);}
.sign-list.down li::before{content:"";position:absolute;left:0;top:7px;width:8px;height:8px;border-radius:50%;background:var(--critical-text);}
.sign-empty{color:var(--text-faint) !important;}
.sign-empty::before{background:var(--text-faint) !important;}

.news-heading{font-size:.78rem;font-weight:700;color:var(--text-faint);margin-top:18px;margin-bottom:10px;}
.news-row{display:flex;align-items:baseline;gap:10px;padding:10px 0;border-top:1px solid var(--border);}
.news-row:first-child{border-top:none;padding-top:0;}
.news-tag{
  flex-shrink:0;
  font-size:.62rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding:3px 8px;
  border-radius:999px;
}
.news-tag.bullish{background:rgba(12,163,12,.16);color:var(--good-text);}
.news-tag.bearish{background:rgba(208,59,59,.16);color:var(--critical-text);}
.news-tag.neutral{background:rgba(255,255,255,.07);color:var(--text-faint);}
.news-text{font-size:.83rem;color:var(--text-dim);line-height:1.5;}

/* ---------- Trending tab ---------- */
.up{color:var(--good-text);}
.down{color:var(--critical-text);}

.container-wide{max-width:1180px;}

/* ---------- Screener table: plain, dense, quote-terminal styling ---------- */
.screener-table-wrap{
  width:100%;
  overflow-x:auto;
  background:var(--page);
}
.screener-table{
  width:100%;
  min-width:1000px;
  border-collapse:collapse;
}
.screener-table thead th{
  position:sticky;
  top:0;
  z-index:2;
  text-align:right;
  white-space:nowrap;
  padding:10px 16px;
  font-size:.78rem;
  font-weight:400;
  color:var(--text-faint);
  background:var(--page);
  border-bottom:1px solid var(--border);
  cursor:pointer;
  user-select:none;
  transition:color .15s ease;
}
.screener-table thead th:hover{color:var(--text-dim);}
.screener-table thead th.active{color:var(--text);}
.screener-table thead th span{display:block;}
.screener-table thead th small{
  display:block;
  font-size:.62rem;
  font-weight:400;
  color:var(--text-faint);
  margin-top:1px;
}
.screener-table thead th.col-sym{
  text-align:left;
  position:sticky;
  left:0;
  z-index:3;
  display:flex;
  align-items:center;
  gap:9px;
  cursor:default;
}
.screener-table thead th.col-sym svg{width:15px;height:15px;color:var(--text-faint);flex-shrink:0;}
.col-sym-text{display:flex;flex-direction:column;gap:1px;}
.col-sym-label{font-size:.8rem;font-weight:400;color:var(--text-faint);}
.col-sym-count{font-size:.72rem;color:var(--text-faint);}
.sort-arrow{
  display:inline-block;
  margin-right:3px;
  color:var(--text);
  font-weight:700;
}

.screener-table tbody td{
  text-align:right;
  white-space:nowrap;
  padding:14px 16px;
  font-size:.84rem;
  color:var(--text);
  border-top:1px solid var(--border);
}
.screener-table tbody tr{
  opacity:0;
  animation:row-in .35s ease both;
  animation-delay:calc(var(--i, 0) * 30ms);
  cursor:pointer;
}
.screener-table tbody tr:hover td{background:rgba(255,255,255,.035);}
.screener-table tbody td.col-sym{
  text-align:left;
  position:sticky;
  left:0;
  z-index:1;
  background:var(--page);
  display:flex;
  align-items:center;
  gap:10px;
}
.screener-table tbody tr:hover td.col-sym{background:#141518;}

.cell-num{font-variant-numeric:tabular-nums;}
.cell-unit{color:var(--text-faint);font-size:.76rem;margin-left:4px;font-weight:400;}

.list-avatar{
  width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.72rem;color:#fff;
  flex-shrink:0;
}
.list-sym-badge{
  flex-shrink:0;
  background:var(--surface-3);
  color:var(--text);
  font-weight:700;
  font-size:.76rem;
  padding:4px 9px;
  border-radius:6px;
}
.list-name{
  color:var(--text);
  font-size:.84rem;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:180px;
}

.tag-badge{
  flex-shrink:0;
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:999px;
}
.tag-badge.tag-suggested{color:var(--brand-2);background:rgba(57,135,229,.14);}
.tag-badge.tag-lookout{color:var(--gold);background:rgba(212,175,106,.16);}
.tag-badge.tag-favorite{
  flex-shrink:0;
  font-size:.9rem;
  color:var(--gold);
  padding:0;
  background:none;
}

.tag-select{
  flex-shrink:0;
  margin-left:auto;
  background:var(--surface-2);
  border:1px solid var(--border);
  color:var(--text-dim);
  font-size:.7rem;
  font-family:'Inter',sans-serif;
  padding:4px 6px;
  border-radius:6px;
  outline:none;
}

.criteria-footnote{
  margin-top:18px;
  font-size:.68rem;
  line-height:1.7;
  color:var(--text-faint);
}
.criteria-footnote b{color:var(--text-dim);font-weight:700;}

.status-banner{
  margin-top:20px;
  padding:14px 16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--surface);
  font-size:.82rem;
  line-height:1.55;
  color:var(--text-dim);
}
.status-banner.error{border-color:rgba(208,59,59,.4);color:var(--critical-text);background:rgba(208,59,59,.08);}

.fundamentals-note{
  margin-top:12px;
  font-size:.7rem;
  color:var(--text-faint);
}

/* ---------- Premium Stocks: add-ticker form + row removal ---------- */
.add-ticker-form{
  display:flex;
  gap:8px;
  margin-top:18px;
}
.add-ticker-input{
  flex:1;
  background:var(--surface-2);
  border:1px solid var(--border);
  color:var(--text);
  font-size:.88rem;
  padding:11px 14px;
  border-radius:var(--radius-sm);
  outline:none;
  text-transform:uppercase;
  transition:border-color .15s ease;
}
.add-ticker-input::placeholder{color:var(--text-faint);text-transform:none;}
.add-ticker-input:focus{border-color:var(--brand-2);}
.add-ticker-btn{
  padding:11px 20px;
  border:none;
  border-radius:var(--radius-sm);
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:.86rem;
  font-weight:700;
  cursor:pointer;
  transition:filter .15s ease, opacity .15s ease;
}
.add-ticker-btn:hover{filter:brightness(1.08);}
.add-ticker-btn:disabled{opacity:.6;cursor:default;}
.add-ticker-error{
  margin-top:8px;
  font-size:.76rem;
  color:var(--critical-text);
}

.screener-table thead th.col-remove,
.screener-table tbody td.col-remove{
  width:36px;
  padding-left:8px;
  padding-right:12px;
}
.remove-btn{
  width:24px;height:24px;
  border-radius:50%;
  border:none;
  background:var(--surface-3);
  color:var(--text-faint);
  font-size:.9rem;
  line-height:1;
  cursor:pointer;
  transition:color .15s ease, background .15s ease;
}
.remove-btn:hover{color:var(--critical-text);background:rgba(208,59,59,.16);}

/* ---------- Auth (sign up / sign in) ---------- */
.auth-container{
  max-width:400px;
  margin:0 auto;
  padding:60px 20px;
}
.auth-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px 32px;
  margin-top:28px;
  box-shadow:var(--shadow);
}
.auth-form{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.auth-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.auth-label{
  font-size:.76rem;
  font-weight:700;
  color:var(--text-faint);
  text-transform:uppercase;
  letter-spacing:.04em;
}
.auth-input{
  background:var(--surface-2);
  border:1px solid var(--border);
  color:var(--text);
  font-size:.92rem;
  padding:13px 14px;
  border-radius:var(--radius-sm);
  outline:none;
  font-family:'Inter',sans-serif;
  transition:border-color .15s ease;
}
.auth-input::placeholder{color:var(--text-faint);}
.auth-input:focus{border-color:var(--brand-2);box-shadow:0 0 0 3px rgba(57,135,229,.15);}
.auth-submit{
  margin-top:8px;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:.9rem;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(91,124,250,.35);
  transition:filter .15s ease, opacity .15s ease, transform .15s ease;
}
.auth-submit:hover{filter:brightness(1.08);transform:translateY(-1px);}
.auth-submit:disabled{opacity:.7;cursor:default;}
.auth-error{
  margin-top:4px;
  font-size:.78rem;
  color:var(--critical-text);
}
.auth-switch{
  margin-top:20px;
  text-align:center;
  font-size:.82rem;
  color:var(--text-faint);
}
.auth-switch a{color:var(--brand-2);font-weight:700;}
.auth-switch a:hover{text-decoration:underline;}

/* ---------- Subscription plans ---------- */
.plans-wrap{
  max-width:880px;
  margin:0 auto;
  padding:50px 20px 30px;
}
.plans-header{
  text-align:center;
  margin-bottom:36px;
}
.plans-title{font-size:1.6rem;font-weight:800;}
.plans-sub{font-size:.9rem;color:var(--text-faint);margin-top:8px;}

.billing-toggle{
  display:flex;
  justify-content:center;
  gap:4px;
  margin:0 auto 32px;
  padding:4px;
  width:fit-content;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:999px;
}
.billing-toggle-btn{
  padding:8px 18px;
  border:none;
  border-radius:999px;
  background:none;
  color:var(--text-faint);
  font-family:'Inter',sans-serif;
  font-size:.82rem;
  font-weight:700;
  cursor:pointer;
  transition:color .15s ease, background .15s ease;
}
.billing-toggle-btn.active{color:#fff;background:linear-gradient(135deg,var(--brand),var(--brand-2));}
.billing-toggle-btn:not(.active):hover{color:var(--text-dim);}

.plan-savings{
  margin-top:6px;
  font-size:.78rem;
  font-weight:700;
  color:var(--good-text);
}

.plans-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media (max-width:640px){
  .plans-grid{grid-template-columns:1fr;}
}
.plan-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-sm);
}
.plan-card.featured{border-color:var(--brand-2);box-shadow:0 0 0 1px var(--brand-2), var(--shadow-sm);}
.plan-badge{
  align-self:flex-start;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--brand-2);
  background:rgba(57,135,229,.14);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.plan-name{font-size:1.05rem;font-weight:800;}
.plan-price{
  margin-top:6px;
  font-family:'IBM Plex Mono',monospace;
  font-size:2rem;
  font-weight:700;
}
.plan-price span{font-size:.85rem;font-weight:600;color:var(--text-faint);}
.plan-price-was{
  margin-right:8px;
  font-size:1.1rem;
  font-weight:600;
  color:var(--text-faint);
  text-decoration:line-through;
}
.plan-features{
  list-style:none;
  margin:22px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.plan-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.86rem;
  color:var(--text-dim);
  line-height:1.4;
}
.plan-features li svg{width:16px;height:16px;flex:none;margin-top:2px;color:var(--good-text);}
.plan-features li.excluded{color:var(--text-faint);}
.plan-features li.excluded svg{color:var(--critical-text);}
.plan-choose-btn{
  margin-top:24px;
  padding:13px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:.88rem;
  font-weight:700;
  cursor:pointer;
  transition:filter .15s ease;
}
.plan-choose-btn:hover{filter:brightness(1.08);}
.plan-choose-btn:disabled{
  background:var(--surface-2);
  color:var(--text-faint);
  cursor:default;
  box-shadow:none;
}
.plan-choose-btn:disabled:hover{filter:none;}
.plans-free-link{
  display:block;
  text-align:center;
  margin-top:26px;
  font-size:.86rem;
  font-weight:700;
  color:var(--text-dim);
  text-decoration:underline;
}
.plans-free-link:hover{color:var(--text);}

/* ---------- Paywall (Premium page, Upload Trade quota) ---------- */
.paywall{
  text-align:center;
  padding:48px 20px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
}
.paywall-title{font-size:1.05rem;font-weight:800;}
.paywall-sub{font-size:.86rem;color:var(--text-faint);margin-top:8px;max-width:360px;margin-left:auto;margin-right:auto;}
