/* ============================================================
   Mining Sim — hoja de estilos única (landing, auth y panel)
   Estética: dark tech / neón. Cifras en monoespaciada.
   ============================================================ */

:root {
  --bg: #05080c;
  --bg-soft: #0a1016;
  --panel: #0d141c;
  --panel-2: #111a24;
  --line: rgba(0, 255, 163, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);

  --text: #e8f1f2;
  --muted: #7a8c98;
  --dim: #4e5d68;

  --acc: #00ffa3;
  --acc-2: #22d3ee;
  --acc-3: #a855f7;
  --warn: #ffb020;
  --danger: #ff4d6d;

  --mono: ui-monospace, "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r: 14px;
  --r-sm: 9px;
  --glow: 0 0 32px rgba(0, 255, 163, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* rejilla de fondo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 255, 163, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 163, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; position: relative; z-index: 1; }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.acc { color: var(--acc); }
.center { text-align: center; }
.hide { display: none !important; }

/* ---------------- avisos de simulación ---------------- */

.sim-banner {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.14), rgba(255, 176, 32, 0.05));
  border-bottom: 1px solid rgba(255, 176, 32, 0.25);
  color: #ffd591;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  text-align: center;
}
.sim-banner strong { color: var(--warn); }

/* ---------------- navegación ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 12, 0.78);
  border-bottom: 1px solid var(--line-soft);
}
.nav-in {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #041014;
  font-size: 15px;
  box-shadow: var(--glow);
}
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 14px; }
.nav-links a { color: var(--muted); transition: color .18s; }
.nav-links a:hover { color: var(--acc); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---------------- botones ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .12s, box-shadow .2s, background .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--acc), #00d6c0);
  color: #04120e;
  box-shadow: 0 4px 24px rgba(0, 255, 163, 0.22);
}
.btn-primary:hover { box-shadow: 0 6px 34px rgba(0, 255, 163, 0.4); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn-sub {
  background: var(--panel-2);
  border-color: var(--line-soft);
  color: var(--text);
}
.btn-sub:hover { border-color: var(--acc-2); color: var(--acc-2); }
.btn-danger { background: rgba(255,77,109,.12); border-color: rgba(255,77,109,.35); color: #ff9db1; }
.btn-danger:hover { background: rgba(255,77,109,.2); }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ---------------- hero ---------------- */

.hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -180px; top: -230px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.16), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  background: rgba(0, 255, 163, 0.05);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px;
  color: var(--acc);
  font-family: var(--mono);
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 0 rgba(0,255,163,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(0,255,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,163,0); }
}
h1.hero-title {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 20px 0 18px;
  font-weight: 800;
}
.grad {
  background: linear-gradient(120deg, var(--acc), var(--acc-2) 55%, var(--acc-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { color: var(--muted); font-size: 17px; max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--dim); }

/* consola del hero */
.console {
  background: linear-gradient(180deg, var(--panel), #070d13);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), var(--glow);
}
.console-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.02);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
}
.tl { display: flex; gap: 6px; }
.tl i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.console-body { padding: 20px; }
.console-metric { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.console-metric .k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; }
.console-metric .v { font-family: var(--mono); font-size: 30px; font-weight: 700; color: var(--acc); }
.console-sub { font-family: var(--mono); font-size: 12px; color: var(--dim); }
#heroChart { width: 100%; height: 110px; display: block; margin: 14px 0 10px; }
.console-feed {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  height: 92px;
  overflow: hidden;
}
.console-feed div { opacity: 0; animation: fadein .4s forwards; padding: 2px 0; }
@keyframes fadein { to { opacity: 1; } }

/* ---------------- secciones ---------------- */

.section { padding: 80px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc-2);
  margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.03em; line-height: 1.15; font-weight: 700; }
.section-head p { color: var(--muted); margin-top: 12px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-strip > div { background: var(--bg-soft); padding: 22px 20px; }
.stat-strip .v { font-family: var(--mono); font-size: 24px; font-weight: 700; }
.stat-strip .k { font-size: 12px; color: var(--muted); margin-top: 4px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--panel), #080e14);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 26px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card .num {
  font-family: var(--mono); font-size: 13px; color: var(--acc);
  border: 1px solid var(--line); border-radius: 7px;
  width: 30px; height: 30px; display: grid; place-items: center; margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 650; }
.card p { color: var(--muted); font-size: 14px; }

/* ---------------- planes ---------------- */

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan {
  position: relative;
  background: linear-gradient(180deg, var(--panel), #070d13);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .25s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line); }
.plan.featured {
  border-color: rgba(0,255,163,.42);
  box-shadow: 0 0 44px rgba(0,255,163,.1);
}
.plan-tag {
  position: absolute; top: -11px; left: 22px;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #04120e; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: .04em;
}
.plan h3 { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.plan .rate { font-family: var(--mono); font-size: 30px; font-weight: 700; margin: 10px 0 2px; }
.plan .rate span { font-size: 14px; color: var(--muted); font-weight: 400; }
.plan .hw { font-size: 12.5px; color: var(--dim); font-family: var(--mono); }
.plan .price {
  margin: 18px 0 4px;
  font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--acc);
}
.plan .price small { font-size: 12px; color: var(--muted); font-weight: 400; }
.plan ul { list-style: none; margin: 16px 0 20px; display: grid; gap: 8px; font-size: 13.5px; color: var(--muted); }
.plan ul li { display: flex; gap: 9px; align-items: flex-start; }
.plan ul li::before { content: "▸"; color: var(--acc); flex-shrink: 0; }
.plan .est {
  border-top: 1px dashed var(--line-soft);
  padding-top: 14px; margin-top: auto; margin-bottom: 16px;
  font-size: 12.5px; color: var(--muted);
  display: grid; gap: 5px;
}
.plan .est b { font-family: var(--mono); color: var(--text); font-weight: 600; }

/* ---------------- faq ---------------- */

.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: var(--panel);
  padding: 0 20px;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 0;
  font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--acc); font-family: var(--mono); font-size: 19px; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); font-size: 14.5px; padding-bottom: 18px; }

/* ---------------- footer ---------------- */

footer {
  border-top: 1px solid var(--line-soft);
  padding: 44px 0 34px;
  margin-top: 40px;
  color: var(--dim);
  font-size: 13px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.disclaimer {
  border: 1px solid rgba(255,176,32,.22);
  background: rgba(255,176,32,.05);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  color: #d9b47a;
  font-size: 13px;
  margin-top: 30px;
  line-height: 1.65;
}

/* ---------------- auth ---------------- */

.auth-page { display: grid; place-items: center; min-height: calc(100vh - 100px); padding: 40px 20px; }
.auth-box {
  width: min(430px, 100%);
  background: linear-gradient(180deg, var(--panel), #070d13);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
}
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--bg-soft); border-radius: var(--r-sm); padding: 4px; margin-bottom: 26px; }
.auth-tabs button {
  background: transparent; border: 0; color: var(--muted);
  padding: 9px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: .18s;
}
.auth-tabs button.on { background: var(--panel-2); color: var(--acc); box-shadow: inset 0 0 0 1px var(--line); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; letter-spacing: .03em; }
.field input, .field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  color: var(--text);
  font-size: 14.5px;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(0,255,163,.1);
}
.hint { font-size: 12px; color: var(--dim); margin-top: 6px; }
.alert {
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 13.5px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}
.alert-err { background: rgba(255,77,109,.1); border-color: rgba(255,77,109,.3); color: #ffa8ba; }
.alert-ok { background: rgba(0,255,163,.08); border-color: rgba(0,255,163,.28); color: var(--acc); }

/* ---------------- app / panel ---------------- */

.app-shell { display: grid; grid-template-columns: 232px 1fr; min-height: 100vh; }
.side {
  border-right: 1px solid var(--line-soft);
  background: rgba(8, 13, 18, .7);
  backdrop-filter: blur(10px);
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 6px;
  position: sticky; top: 0; height: 100vh;
}
.side .logo { margin: 4px 6px 22px; }
.side nav { display: grid; gap: 3px; }
.side nav button {
  display: flex; align-items: center; gap: 11px;
  background: transparent; border: 0; color: var(--muted);
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14px; text-align: left; width: 100%;
  transition: .16s;
}
.side nav button:hover { background: rgba(255,255,255,.03); color: var(--text); }
.side nav button.on { background: rgba(0,255,163,.08); color: var(--acc); box-shadow: inset 0 0 0 1px var(--line); }
.side-foot { margin-top: auto; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.who { font-size: 13px; margin-bottom: 4px; }
.who b { display: block; }

.main { padding: 26px 30px 60px; min-width: 0; }
.main-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.main-head h1 { font-size: 25px; letter-spacing: -.025em; font-weight: 700; }
.main-head p { color: var(--muted); font-size: 14px; }
.live-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 13px; color: var(--acc);
}
.live-chip.off { border-color: rgba(255,77,109,.35); color: #ff9db1; }
.live-chip.off .dot { background: var(--danger); animation: none; }

.grid { display: grid; gap: 16px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g-2-1 { grid-template-columns: 2fr 1fr; }

.panel {
  background: linear-gradient(180deg, var(--panel), #080e14);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 20px;
  min-width: 0;
}
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.panel-head h3 { font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.panel-head .sub { font-size: 12px; color: var(--dim); font-family: var(--mono); }

.kpi .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.kpi .v { font-family: var(--mono); font-size: 27px; font-weight: 700; margin-top: 6px; letter-spacing: -.02em; }
.kpi .d { font-size: 12px; color: var(--dim); margin-top: 3px; font-family: var(--mono); }
.kpi.green .v { color: var(--acc); }
.kpi.cyan .v { color: var(--acc-2); }
.kpi.violet .v { color: var(--acc-3); }

.tick-up { animation: tickup .5s ease-out; }
@keyframes tickup { 0% { color: #fff; text-shadow: 0 0 16px rgba(0,255,163,.8); } 100% {} }

#gauge { width: 100%; max-width: 260px; display: block; margin: 0 auto; }
#earnChart, #priceChart { width: 100%; height: 190px; display: block; }

.meter { height: 6px; border-radius: 3px; background: rgba(255,255,255,.06); overflow: hidden; }
.meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--acc), var(--acc-2)); border-radius: 3px; transition: width .5s; }

.feed { display: grid; gap: 2px; max-height: 300px; overflow-y: auto; font-family: var(--mono); font-size: 12.5px; }
.feed-row { display: flex; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.035); }
.feed-row time { color: var(--dim); flex-shrink: 0; }
.feed-row .msg { color: var(--muted); }
.feed-row.block .msg { color: var(--acc); }
.feed-row.warn .msg { color: var(--warn); }
.feed-row.contract .msg { color: var(--acc-2); }

.contract-row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.contract-row:last-child { border-bottom: 0; }
.contract-row .nm { font-weight: 600; font-size: 14.5px; }
.contract-row .meta { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.contract-row .right { text-align: right; font-family: var(--mono); }

.badge {
  font-size: 11px; padding: 2px 9px; border-radius: 999px;
  font-family: var(--mono); letter-spacing: .03em;
  border: 1px solid transparent;
}
.badge.active { background: rgba(0,255,163,.1); color: var(--acc); border-color: rgba(0,255,163,.28); }
.badge.expired { background: rgba(255,255,255,.05); color: var(--dim); }
.badge.pending { background: rgba(255,176,32,.1); color: var(--warn); border-color: rgba(255,176,32,.28); }
.badge.completed { background: rgba(0,255,163,.08); color: var(--acc); }

table.tx { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.tx th {
  text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); font-weight: 600; padding: 0 10px 10px; border-bottom: 1px solid var(--line-soft);
}
table.tx td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.035); vertical-align: middle; }
table.tx td.num { font-family: var(--mono); text-align: right; }
table.tx tr:hover td { background: rgba(255,255,255,.015); }
.amt-pos { color: var(--acc); }
.amt-neg { color: #ff9db1; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filters button {
  background: var(--bg-soft); border: 1px solid var(--line-soft); color: var(--muted);
  padding: 6px 13px; border-radius: 999px; font-size: 12.5px; transition: .16s;
}
.filters button.on, .filters button:hover { border-color: var(--acc); color: var(--acc); }

.pager { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 18px; font-family: var(--mono); font-size: 13px; color: var(--muted); }

.empty { text-align: center; padding: 40px 20px; color: var(--dim); font-size: 14px; }

.toast-host { position: fixed; right: 20px; bottom: 20px; display: grid; gap: 10px; z-index: 60; }
.toast {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--acc);
  border-radius: var(--r-sm);
  padding: 13px 17px;
  font-size: 13.5px;
  min-width: 250px; max-width: 340px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  animation: slidein .3s ease-out;
}
.toast.err { border-left-color: var(--danger); }
@keyframes slidein { from { transform: translateX(30px); opacity: 0; } }

.modal-host {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(2,5,8,.75); backdrop-filter: blur(5px);
  display: grid; place-items: center; padding: 20px;
}
.modal {
  width: min(420px, 100%);
  background: linear-gradient(180deg, var(--panel), #070d13);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.modal h3 { font-size: 18px; margin-bottom: 6px; }
.modal .modal-actions { display: flex; gap: 10px; margin-top: 22px; }

/* ---------------- responsive ---------------- */

@media (max-width: 1080px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g-2-1 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .app-shell { grid-template-columns: 1fr; }
  .side {
    position: static; height: auto; flex-direction: row; align-items: center;
    flex-wrap: wrap; gap: 10px 14px;
    border-right: 0; border-bottom: 1px solid var(--line-soft);
  }
  .side .logo { margin: 0 10px 0 0; }
  .side nav { display: flex; gap: 4px; }
  .side-foot { margin: 0 0 0 auto; border: 0; padding: 0; }
  .side-foot .who { display: none; }
  .side-foot .btn-block { width: auto; margin-top: 0 !important; padding: 8px 14px; }
  .main { padding: 20px 16px 50px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .plans, .g4, .g3, .g2 { grid-template-columns: 1fr; }
  table.tx th:nth-child(3), table.tx td:nth-child(3) { display: none; }
}
