/* ============================================================
   PIEZOR · G&G Elcano — el valor real de cada pieza
   App de trabajo B2B: utilitaria, densa, clara.
   Space Grotesk (marca/titulares) · Inter (texto) · JetBrains Mono (cifras).
   Acento verde "valor".
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --bg:        #f3f6f4;
  --surface:   #ffffff;
  --surface-2: #f7faf8;
  --border:    #e3e9e5;
  --border-2:  #d2dcd6;
  --text:      #16201b;
  --text-2:    #586b61;
  --text-3:    #93a39a;

  --accent:    #0ea372;
  --accent-7:  #0b8460;
  --accent-bg: #e6f7f0;

  --pos:       #157a52;   /* mínimo / barato */
  --neg:       #b23b42;   /* máximo / caro   */

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow-sm: 0 1px 2px rgba(16,32,24,0.06), 0 1px 3px rgba(16,32,24,0.04);
  --shadow:    0 1px 3px rgba(16,32,24,0.08), 0 4px 12px rgba(16,32,24,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* El atributo hidden SIEMPRE gana, aunque la clase del elemento fije display propio. */
[hidden] { display: none !important; }
html { -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  min-height: 100vh;
}
::selection { background: var(--accent-bg); }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- Controles base ---------- */
button { font-family: var(--sans); cursor: pointer; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600;
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent-7); border-radius: 7px;
  padding: 9px 16px;
  transition: background 0.15s, box-shadow 0.15s, transform 0.05s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--accent-7); }
.btn:active { transform: translateY(0.5px); }
.btn:disabled { background: var(--text-3); border-color: var(--text-3); cursor: progress; }
.btn.block { width: 100%; justify-content: center; }
.btn.small { font-size: 12.5px; padding: 6px 12px; }
.btn.ghost { background: transparent; color: var(--text-2); border-color: var(--border-2); box-shadow: none; }
.btn.ghost:hover { background: var(--surface-2); color: var(--text); }

label.lbl {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 6px;
}
input, select {
  width: 100%; font-family: var(--sans); font-size: 14px; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 7px;
  padding: 9px 12px; transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder { color: var(--text-3); }
input:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
input.mono { font-family: var(--mono); }

/* =========================================================
   LOGIN
   ========================================================= */
.login-stage { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card {
  width: 100%; max-width: 384px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow);
  padding: 30px 30px 28px;
}
.brandrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.brandrow .logo { width: 32px; height: 32px; }
.brandrow .wm { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.brandrow .wm span { color: var(--text-3); font-weight: 500; font-family: var(--sans); font-size: 13px; }
.login-card h1 { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.login-card .sub { color: var(--text-2); font-size: 13px; margin: 4px 0 24px; }
.field { margin-bottom: 16px; }

.alert {
  margin-top: 14px; font-size: 13px; color: var(--neg);
  background: #fcf0f0; border: 1px solid #f1d4d6; border-radius: 7px;
  padding: 9px 12px; display: none;
}
.alert.show { display: block; }
.alert.ok { color: #1f7a45; background: #eef7f1; border-color: #cfe8d8; }
.forgot { margin-top: 16px; font-size: 13px; text-align: center; }
.forgot a { color: var(--accent); text-decoration: none; }
.forgot a:hover { text-decoration: underline; }
.backhome { margin-top: 10px; font-size: 12.5px; text-align: center; }
.backhome a { color: var(--text-3); text-decoration: none; }
.backhome a:hover { color: var(--text-2); text-decoration: underline; }

/* Aviso de modo soporte (el creador dentro de la cuenta de un cliente) */
.support-banner {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: #fff4e0; color: #7a4b12; border-bottom: 1px solid #f0d9af;
  padding: 9px 18px; font-size: 13px;
}
.support-banner b { color: #5a3608; }
.support-exit {
  background: #7a4b12; color: #fff; border: none; border-radius: 6px;
  padding: 6px 14px; font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.support-exit:hover { background: #5a3608; }

/* =========================================================
   APP — barra superior
   ========================================================= */
.appbar {
  min-height: 54px; background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; position: sticky; top: 0; z-index: 20;
}
.appbar .left { display: flex; align-items: center; gap: 11px; }
.appbar .logo { width: 26px; height: 26px; }
.appbar .wm { font-family: var(--display); font-weight: 700; font-size: 15.5px; letter-spacing: -0.02em; }
.appbar .div { width: 1px; height: 20px; background: var(--border-2); }
.appbar .ctx { color: var(--text-2); font-size: 12.5px; }
.appbar .right { display: flex; align-items: center; gap: 14px; font-size: 12.5px; }
.appbar .who { color: var(--text-2); }
.appbar .usage { font-size: 11.5px; color: var(--text-3); white-space: nowrap; }
.chip {
  font-size: 12px; font-weight: 600; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 6px;
  padding: 4px 9px;
}
.appbar a.navlink { color: var(--text-2); text-decoration: none; font-size: 12.5px; }
.appbar a.navlink:hover { color: var(--accent); }
.linkbtn { background: none; border: none; color: var(--accent); font-size: 12.5px; font-weight: 500; padding: 4px 2px; text-decoration: none; }
.linkbtn:hover { color: var(--accent-7); text-decoration: underline; }
.linkbtn.danger { color: var(--neg); }
.linkbtn.danger:hover { color: #8e2b31; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 26px 22px 80px; }

/* Cabecera tipo admin (logo + contexto + sesión) */
.appbar .brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 15.5px; letter-spacing: -0.02em; }
.appbar .brand .ctx { font-family: var(--sans); font-weight: 500; color: var(--text-2); }
.tn { font-weight: 600; color: var(--text); }
.muted { color: var(--text-3); }

/* Panel base */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-sm); }

/* Barra de búsqueda */
.searchpanel { padding: 18px 20px; }
.searchpanel form { display: flex; align-items: flex-end; gap: 12px; }
.searchpanel .grow { flex: 1; }
.searchpanel .help { margin-top: 10px; font-size: 12px; color: var(--text-3); }
.searchpanel .help b { color: var(--text-2); font-weight: 600; }

/* Panel de estado de las fuentes */
.srcstatus { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 11.5px; }
.srcstatus .srclabel { color: var(--text-3); font-weight: 600; }
.srcdot { display: inline-flex; align-items: center; gap: 5px; color: var(--text-2); }
.srcdot i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: none; }
.srcdot.up i { background: #29a866; box-shadow: 0 0 0 2px #d8f0e3; }
.srcdot.down i { background: #d4493f; box-shadow: 0 0 0 2px #f5dcda; }
.srcdot.down { color: var(--text-3); }

/* Estados */
.state { margin-top: 22px; }
.placeholder {
  border: 1px dashed var(--border-2); border-radius: 10px; background: var(--surface-2);
  padding: 40px; text-align: center; color: var(--text-3); font-size: 13px;
}
.loading { display: none; }
.loading.show { display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: var(--text-2); font-size: 13px; }
.spinner { width: 16px; height: 16px; border: 2px solid var(--border-2); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; flex: none; }

/* =========================================================
   RESULTADO
   ========================================================= */
.result { display: none; }
.result.show { display: block; }

.res-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.res-head .ref { display: flex; align-items: baseline; gap: 10px; }
.res-head .ref .l { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-2); font-weight: 600; }
.res-head .ref .v { font-family: var(--mono); font-weight: 600; font-size: 16px; }
.res-head .meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-2); }
.tag { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 5px; letter-spacing: 0.02em; }
.tag.live { color: var(--accent); background: var(--accent-bg); }
.tag.cache { color: var(--text-2); background: var(--surface-2); border: 1px solid var(--border-2); }

/* Tira de métricas */
.metrics { display: grid; grid-template-columns: repeat(5, 1fr); }
.metric { padding: 16px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric .l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-2); font-weight: 600; }
.metric .v { font-family: var(--mono); font-weight: 600; font-size: 22px; margin-top: 5px; letter-spacing: -0.01em; }
.metric .v .c { font-size: 13px; color: var(--text-3); margin-left: 2px; }
.metric.min .v { color: var(--pos); }
.metric.max .v { color: var(--neg); }
.metric.hl { background: var(--accent-bg); }

/* Distribución */
.dist { padding: 16px 20px 18px; border-bottom: 1px solid var(--border); }
.dist .cap { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-2); font-weight: 600; margin-bottom: 12px; }
.dist-axis { position: relative; height: 30px; }
.dist-axis .base { position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--border-2); }
.dist-tick { position: absolute; top: 12px; width: 1px; height: 12px; background: var(--text-3); transform: translateX(-50%); }
.dist-tick:hover { background: var(--accent); }
.dist-avg { position: absolute; top: 4px; width: 2px; height: 20px; background: var(--accent); transform: translateX(-50%); }
.dist-avg::after { content: 'media'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); font-size: 10px; color: var(--accent); white-space: nowrap; }
.dist-scale { display: flex; justify-content: space-between; margin-top: 6px; font-family: var(--mono); font-size: 11px; color: var(--text-3); }

/* Tabla de anuncios */
.tablecap { display: flex; align-items: baseline; justify-content: space-between; padding: 13px 20px 11px; gap: 12px; }
.tablecap h3 { font-size: 13px; font-weight: 600; }
.tablecap .sub { font-size: 12px; color: var(--text-3); }
.tablewrap { max-height: 460px; overflow-y: auto; }
table.listing { width: 100%; border-collapse: collapse; font-size: 13px; }
table.listing thead th {
  position: sticky; top: 0; background: var(--surface-2);
  text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text-2); padding: 8px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
table.listing th.r, table.listing td.r { text-align: right; }
table.listing td { padding: 9px 20px; border-bottom: 1px solid var(--border); }
table.listing tbody tr { transition: background 0.1s; }
table.listing tbody tr:hover { background: var(--accent-bg); }
table.listing td.idx { font-family: var(--mono); color: var(--text-3); width: 48px; }
table.listing td.desc a { color: var(--text); text-decoration: none; }
table.listing td.desc a:hover { color: var(--accent); text-decoration: underline; }
table.listing td.price { font-family: var(--mono); font-weight: 600; white-space: nowrap; width: 110px; }
table.listing td.src { width: 110px; }
table.listing td.modelo { color: var(--text-2); font-size: 12.5px; }
table.listing td.pais { color: var(--text-2); font-size: 12.5px; white-space: nowrap; }
table.listing td.provincia { color: var(--text-2); font-size: 12.5px; white-space: nowrap; }
.paisfilter { display: flex; align-items: center; gap: 10px; padding: 14px 0 4px; font-size: 13px; }
.paisfilter label { color: var(--text-2); font-weight: 600; }
.paisfilter select { width: auto; font-family: var(--sans); font-size: 13px; padding: 6px 10px; }
table.listing td.desguace { color: var(--text-2); font-size: 12.5px; }
table.listing td.desguace .verlink { color: var(--text-3); text-decoration: none; font-size: 12px; }
table.listing td.desguace .verlink:hover { color: var(--accent); text-decoration: underline; }
.srcbadge {
  display: inline-block; font-size: 10.5px; font-weight: 600; padding: 2px 7px;
  border-radius: 5px; letter-spacing: 0.02em; white-space: nowrap;
}
.srcbadge.src-rv { background: #e8f3ec; color: #1f7a45; }
.srcbadge.src-bp { background: #eaf1fd; color: #1a52ba; }
.srcbadge.src-op { background: #f3eafd; color: #6b3fb0; }
.srcbadge.src-dz { background: #fff1e6; color: #b5651d; }
.srcbadge.src-off { background: #f1eded; color: #9a4a4a; }
.res-head .meta .fuentes { color: var(--text-3); font-size: 11.5px; }

.noresult { padding: 22px 20px; color: var(--text-2); font-size: 13.5px; }
.noresult b { color: var(--text); }

/* Histórico */
.history { margin-top: 26px; }
.history .panel { overflow: hidden; }
.history h2 { font-size: 13px; font-weight: 600; padding: 13px 20px; border-bottom: 1px solid var(--border); }
table.hist { width: 100%; border-collapse: collapse; font-size: 13px; }
table.hist th { text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-2); padding: 8px 20px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
table.hist th.r, table.hist td.r { text-align: right; }
table.hist td { padding: 9px 20px; border-bottom: 1px solid var(--border); }
table.hist tr:last-child td { border-bottom: none; }
table.hist td.ref { font-family: var(--mono); font-weight: 500; }
table.hist td.num { font-family: var(--mono); }
.hist-empty { padding: 18px 20px; color: var(--text-3); font-size: 13px; }

/* =========================================================
   ADMIN — formularios de gestión
   ========================================================= */
.app { padding-top: 24px; }
.adminform { padding: 4px 20px 18px; border-bottom: 1px solid var(--border); }
.adminform .frow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 14px; }
.adminform label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); }
.adminform label input, .adminform label select { margin-top: 6px; font-weight: 400; }
.adminform .fbtns { display: flex; gap: 10px; }
.adminform .formmsg { margin-top: 10px; font-size: 13px; color: var(--neg); }
.adminform .formmsg.ok { color: #1f7a45; }
section.searchpanel { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-sm); margin-bottom: 18px; padding: 0; }
section.searchpanel .tablecap { padding: 14px 20px 12px; }

/* Distintivo de plan */
.planbadge { display: inline-block; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 5px; letter-spacing: 0.03em; text-transform: uppercase; }
.planbadge.basico { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border-2); }
.planbadge.profesional { background: var(--accent-bg); color: var(--accent-7); }
.planbadge.avanzado { background: #16201b; color: #fff; }

@media (max-width: 680px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .searchpanel form { flex-direction: column; align-items: stretch; }
  table.hist th.opt, table.hist td.opt { display: none; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ── Páginas legales ─────────────────────────────────────────────────────── */
.legal { max-width: 820px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 4px 0 20px; font-size: 13px; }
.legal-nav a { color: var(--accent); text-decoration: none; }
.legal-nav a:hover { text-decoration: underline; }
.legal-block { padding: 26px 30px; margin-bottom: 18px; }
.legal-block h1 { font-family: var(--display); font-size: 20px; font-weight: 600; margin: 0 0 14px; }
.legal-block h2 { font-size: 14px; font-weight: 600; margin: 20px 0 6px; color: var(--text); }
.legal-block p { font-size: 13.5px; line-height: 1.6; color: var(--text-2); margin: 0 0 10px; }
.legal-block ul { margin: 0 0 12px; padding-left: 20px; }
.legal-block li { font-size: 13.5px; line-height: 1.6; color: var(--text-2); margin-bottom: 5px; }
.legal-block b { color: var(--text); font-weight: 600; }
.legal-block .todo { color: #9a4a4a; background: #f7eded; padding: 1px 6px; border-radius: 4px; font-size: 12px; }
.legal-foot { text-align: center; font-size: 12px; color: var(--text-3); margin: 20px 0 40px; }
.appfoot { text-align: center; padding: 24px 0 40px; font-size: 12px; color: var(--text-3); }
.appfoot a { color: var(--text-2); text-decoration: none; }
.appfoot a:hover { color: var(--accent); text-decoration: underline; }

/* =========================================================
   ASISTENTE IA (widget flotante en la app)
   ========================================================= */
.ai-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; border: 1px solid var(--accent-7);
  border-radius: 999px; padding: 11px 17px; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 6px 20px rgba(14,163,114,0.35); transition: transform .12s, background .15s;
}
.ai-fab:hover { background: var(--accent-7); transform: translateY(-1px); }
.ai-fab svg { width: 18px; height: 18px; }
.ai-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 61; width: 370px; max-width: calc(100vw - 32px);
  height: 540px; max-height: calc(100vh - 44px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 18px 50px rgba(16,32,24,0.22); display: none; flex-direction: column; overflow: hidden;
}
.ai-panel.open { display: flex; }
.ai-head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.ai-head .logo { width: 26px; height: 26px; }
.ai-head .t { font-family: var(--display); font-weight: 700; font-size: 14px; }
.ai-head .t span { display: block; font-family: var(--sans); font-weight: 400; font-size: 11px; color: var(--text-3); }
.ai-head .x { margin-left: auto; background: none; border: none; color: var(--text-3); font-size: 20px; line-height: 1; padding: 2px 6px; }
.ai-head .x:hover { color: var(--text); }
.ai-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.ai-msg { max-width: 86%; font-size: 13.5px; line-height: 1.5; padding: 10px 13px; border-radius: 13px; white-space: pre-wrap; word-wrap: break-word; }
.ai-msg.bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--border); border-bottom-left-radius: 4px; color: var(--text); }
.ai-msg.me { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.ai-msg.bot a { color: var(--accent-7); }
.ai-typing { align-self: flex-start; color: var(--text-3); font-size: 13px; padding: 4px 4px; }
.ai-suggest { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 10px; }
.ai-chip { font-size: 12px; color: var(--accent-7); background: var(--accent-bg); border: 1px solid #cdeede; border-radius: 999px; padding: 5px 11px; cursor: pointer; }
.ai-chip:hover { background: #d8f1e6; }
.ai-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.ai-foot input { flex: 1; }
.ai-foot button { flex: none; }
.ai-disclaimer { font-size: 10.5px; color: var(--text-3); text-align: center; padding: 0 12px 10px; }

/* ── Prueba gratuita: barra de estado + pantalla de fin de prueba ── */
.trialbar {
  background: #eef7f1; border-bottom: 1px solid #cfe8d8; color: #1f7a45;
  font-size: 13px; text-align: center; padding: 8px 16px;
}
.trialbar b { font-weight: 600; }
.trialbar.warn { background: #fdf3e4; border-color: #f0dbb6; color: #8a5a08; }

.paywall {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(22, 32, 27, 0.55); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 24px; overflow: auto;
}
.paywall-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow); max-width: 720px; width: 100%; padding: 32px 28px;
  text-align: center;
}
.paywall-card h2 { font-family: var(--display); font-size: 24px; margin: 10px 0 8px; }
.paywall-card > p { color: var(--text-2); font-size: 14px; line-height: 1.6; max-width: 520px; margin: 0 auto 22px; }
.paywall-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
@media (max-width: 640px) { .paywall-plans { grid-template-columns: 1fr; } }
.pw-plan {
  border: 1px solid var(--border); border-radius: 12px; padding: 18px 14px;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.pw-plan.pop { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pw-plan .n { font-weight: 600; font-size: 14px; }
.pw-plan .p { font-family: var(--mono); font-size: 24px; font-weight: 600; }
.pw-plan .p small { font-size: 12px; color: var(--text-3); font-family: var(--sans); font-weight: 400; }
.pw-plan .d { font-size: 12px; color: var(--text-2); line-height: 1.5; min-height: 36px; }
.pw-plan .btn { width: 100%; text-decoration: none; }
.paywall-foot { font-size: 12.5px; color: var(--text-3); }
.paywall-foot a { color: var(--accent); }
