/* ============================================================
   MEA Reviews — Deposits & Payouts (депозиты)
   Payments block: two quick-fact tiles plus a scannable table of
   supported methods (type, min deposit, min withdrawal, fee, payout
   speed) with green/amber speed pills. Africa / emerging-markets
   focus. Light "tech / computer" theme. Tokens scoped to .mea-pay.
   Self-contained — no external CSS or JS.
   ============================================================ */

.mea-pay {
  --dp-bg: #f4f4f4;
  --dp-surface: #ffffff;
  --dp-surface-2: #eef2f8;
  --dp-border: #e0e0e0;
  --dp-text: #1f2733;
  --dp-muted: #5b6676;
  --dp-faint: #8a94a6;
  --dp-accent: #0f62fe;
  --dp-ok: #16a34a;
  --dp-warn: #d97706;

  --dp-radius: 0;
  --dp-radius-sm: 0;
  --dp-space: clamp(2.25rem, 1.5rem + 3vw, 4rem);

  --dp-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;
  --dp-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  position: relative;
  background: var(--dp-bg);
  color: var(--dp-text);
  font-family: var(--dp-sans);
  padding: var(--dp-space) 0;
}

.mea-pay__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 0.5rem + 2vw, 2.5rem);
}
.mea-pay__sronly {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Header ---------- */
.mea-pay__head { max-width: 62ch; margin: 0 0 clamp(1.25rem, 0.9rem + 1.5vw, 2rem); }
.mea-pay__kicker {
  font-family: var(--dp-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dp-accent);
}
.mea-pay__title {
  margin: 0.5rem 0 0.4rem;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.mea-pay__sub { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--dp-muted); }

/* ---------- Quick facts ---------- */
.mea-pay__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.1rem;
}
.mea-pay__fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
}
.mea-pay__factico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: rgba(15, 98, 254, 0.1);
  color: var(--dp-accent);
  flex: 0 0 auto;
}
.mea-pay__factico svg { width: 18px; height: 18px; }
.mea-pay__factlabel {
  margin: 0;
  font-family: var(--dp-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dp-faint);
}
.mea-pay__factval { margin: 0.1rem 0 0; font-size: 0.98rem; font-weight: 800; }

/* ---------- Table ---------- */
.mea-pay__scroll {
  overflow-x: auto;
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  background: var(--dp-surface);
  box-shadow: none;
}
.mea-pay__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.mea-pay__table thead th {
  position: sticky;
  top: 0;
  text-align: left;
  padding: 0.85rem 1rem;
  background: var(--dp-surface-2);
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--dp-border);
}
.mea-pay__table tbody th,
.mea-pay__table tbody td {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--dp-border);
  vertical-align: middle;
  white-space: nowrap;
}
.mea-pay__table tbody th {
  text-align: left;
  font-weight: 800;
  color: var(--dp-text);
}
.mea-pay__table tbody td { color: var(--dp-muted); }
.mea-pay__table tbody tr:hover { background: color-mix(in srgb, var(--dp-accent) 4%, transparent); }

.mea-pay__pill {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 0;
  font-family: var(--dp-mono);
  font-size: 0.72rem;
  font-weight: 700;
}
.mea-pay__pill.is-fast { background: rgba(22, 163, 74, 0.12); color: var(--dp-ok); }
.mea-pay__pill.is-mid { background: rgba(217, 119, 6, 0.12); color: var(--dp-warn); }

/* ---------- Disclosure note ---------- */
.mea-pay__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--dp-faint);
}
.mea-pay__note svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--dp-accent); margin-top: 0.1rem; }
.mea-pay__note strong { color: var(--dp-text); }
