/* ── RESET & TOKENS ──────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0C1225;
  --surface:#151D38;
  --card:#1A2238;
  --card2:#1E2844;
  --g:#6366F1;--g2:#22D3EE;
  --grad:linear-gradient(135deg,#6366F1 0%,#818CF8 45%,#22D3EE 100%);
  --ink:#E2E8F0;--mid:#94A3B8;--dim:#64748B;--ghost:#475569;
  --bdr:rgba(255,255,255,.07);--bdr2:rgba(255,255,255,.04);
  --r:12px;--r2:8px;
  --page-w:1320px;
  --page-px:clamp(16px,2.5vw,28px);
  --filter-sticky-top:calc(var(--zb-header-height, 68px) + 12px);
  --shadow:0 1px 3px rgba(0,0,0,.4);
  --shadow-lg:0 12px 40px rgba(0,0,0,.18),0 4px 12px rgba(0,0,0,.08);
  --shadow-filter:0 24px 64px rgba(15,23,42,.12),0 8px 24px rgba(99,102,241,.08),0 0 0 1px rgba(99,102,241,.12);
  --shadow-card:0 4px 20px rgba(15,23,42,.06),0 1px 3px rgba(15,23,42,.04);
  --shadow-card-hover:0 12px 36px rgba(15,23,42,.1),0 0 0 1px rgba(99,102,241,.22);
  --shadow-glow:0 0 24px rgba(99,102,241,.18);
  --ease:cubic-bezier(.4,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.2,.64,1);
}
.page-inner{max-width:var(--page-w);margin:0 auto;width:100%;padding-left:var(--page-px);padding-right:var(--page-px)}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;-webkit-font-smoothing:antialiased;background:linear-gradient(180deg,#0c1225 0%,#131b3a 100%);color:var(--ink);min-height:100vh}
a{text-decoration:none;color:inherit}
button{font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;cursor:pointer}
img{display:block}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero{
  background:linear-gradient(165deg,#0f172a 0%,#1e1b4b 38%,#172554 72%,#0c1929 100%);padding:0 0 40px;text-align:center;position:relative;overflow:hidden;margin-top:0;
}
.hero .page-inner{position:relative;z-index:1}
.hero::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 85% 65% at 50% -10%,rgba(99,102,241,.18) 0%,transparent 55%),
    radial-gradient(ellipse 45% 45% at 15% 85%,rgba(34,211,238,.10) 0%,transparent 55%),
    radial-gradient(ellipse 45% 45% at 85% 75%,rgba(167,139,250,.08) 0%,transparent 55%);
}
.hero-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(99,102,241,.08);border:1px solid rgba(99,102,241,.22);
  color:var(--g);font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  padding:5px 14px;border-radius:999px;margin-bottom:18px;position:relative;
}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--g);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.85)}}
.hero h1{
  font-size:clamp(28px,4vw,48px);font-weight:900;color:#fff;
  line-height:1.12;letter-spacing:-.03em;margin-bottom:14px;position:relative;
}
.hero h1 em{
  font-style:normal;background:var(--grad);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-sub{font-size:16px;color:rgba(255,255,255,.68);max-width:540px;margin:0 auto 32px;line-height:1.65;position:relative}
/* Hero counter — modern bordered stat bar */
.hero-counter{
  display:flex;align-items:stretch;justify-content:center;
  width:100%;max-width:920px;margin:0 auto 0;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}
.hero-counter-cell{
  flex:1 1 0;min-width:0;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;
  padding:24px 18px 22px;
  border-right:1px solid rgba(255,255,255,.1);
}
.hero-counter-cell:last-child{border-right:none}
.hero-counter-val{
  font-size:clamp(24px,3.2vw,34px);font-weight:900;line-height:1.05;
  letter-spacing:-.03em;margin-bottom:10px;white-space:nowrap;
  background:var(--grad);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  font-variant-numeric:tabular-nums;
  transition:transform .25s var(--ease-spring);
}
.hero-counter.is-animating .hero-counter-val{transform:scale(1.02)}
.hero-counter-lab{
  font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.42);line-height:1.35;max-width:140px;
}

/* ── FILTER DOCK (premium floating command bar) ─────────────────── */
.filter-dock{
  position:relative;z-index:120;margin-top:28px;padding-bottom:12px;
}
.filter-card{
  background:rgba(255,255,255,.92);border:1px solid rgba(255,255,255,.8);
  border-radius:20px;backdrop-filter:blur(20px) saturate(1.4);
  box-shadow:var(--shadow-filter);
  overflow:hidden;position:sticky;top:var(--filter-sticky-top);z-index:130;
}
.filter-card-head{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding:16px 22px 14px;border-bottom:1px solid rgba(0,0,0,.05);
  background:linear-gradient(135deg,rgba(99,102,241,.12) 0%,rgba(34,211,238,.06) 45%,transparent 100%);
}
.filter-card-title-wrap{display:flex;align-items:center;gap:10px}
.filter-card-title{
  font-size:13px;font-weight:800;color:var(--ink);letter-spacing:-.02em;
  display:flex;align-items:center;gap:8px;
}
.filter-card-title::before{
  content:'';width:9px;height:9px;border-radius:50%;background:var(--g);
  box-shadow:0 0 12px rgba(99,102,241,.6),0 0 0 4px rgba(99,102,241,.18);
  animation:pulse 2.5s infinite;
}
.filter-ai-badge{
  font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  padding:4px 9px;border-radius:999px;
  background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(34,211,238,.12));
  border:1px solid rgba(99,102,241,.35);color:#4F46E5;
}
.filter-card-hint{font-size:12.5px;color:var(--dim);font-weight:500}
.filter-body{padding:0 22px 18px}
.filter-search-block{
  padding:18px 0 16px;border-bottom:1px solid rgba(0,0,0,.05);margin-bottom:16px;
}
.filter-search-block .f-search-wrap{max-width:none;min-width:0;width:100%}
.filter-search-block .f-search-wrap input{
  height:48px;font-size:14.5px;font-weight:500;border-radius:12px;
  background:#F8FAFC;border:1.5px solid rgba(0,0,0,.08);
  box-shadow:inset 0 1px 2px rgba(0,0,0,.04),0 2px 8px rgba(15,23,42,.03);
  padding-left:44px;
}
.filter-search-block .f-search-wrap input:focus{
  border-color:rgba(99,102,241,.6);
  box-shadow:0 0 0 4px rgba(99,102,241,.14),0 4px 20px rgba(99,102,241,.1),inset 0 1px 2px rgba(0,0,0,.03);
  background:#fff;
}
.filter-search-block .f-search-ico{left:16px}
.filter-search-block .f-search-ico svg{width:17px;height:17px;color:#64748B}
.filter-grid{
  display:grid;grid-template-columns:1fr 1.15fr;gap:16px 24px;margin-bottom:12px;
}
.filter-group{display:flex;flex-direction:column;gap:8px}
.filter-group-label{
  font-size:10px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
  color:var(--dim);display:flex;align-items:center;gap:6px;
}
.filter-group-label::after{content:'';flex:1;height:1px;background:var(--bdr2);margin-left:4px}
.filter-group-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.f-sel{
  height:40px;min-width:0;flex:1 1 120px;max-width:100%;
  background:#F8FAFC;border:1.5px solid rgba(0,0,0,.08);border-radius:11px;
  padding:0 32px 0 13px;font-size:12.5px;font-weight:600;color:var(--ink);outline:none;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  transition:border-color .2s,box-shadow .2s,background .2s,transform .2s var(--ease-spring);
  cursor:pointer;appearance:none;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.03),0 1px 2px rgba(15,23,42,.04);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 11px center;background-size:10px;
  background-color:#F8FAFC;
}
.f-sel:hover{border-color:rgba(99,102,241,.5);background:#fff;transform:translateY(-1px);box-shadow:0 4px 14px rgba(99,102,241,.1)}
.f-sel:focus{border-color:rgba(99,102,241,.6);box-shadow:0 0 0 4px rgba(99,102,241,.12),0 4px 14px rgba(99,102,241,.08)}
.f-search-wrap{position:relative;flex:1;min-width:200px}
.f-search-wrap input{
  width:100%;height:40px;background:#F8FAFC;border:1.5px solid rgba(0,0,0,.08);
  border-radius:11px;padding:0 12px 0 36px;font-size:13px;
  color:var(--ink);outline:none;font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  transition:border-color .2s,box-shadow .2s,background .2s;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.03);
}
.f-search-wrap input::placeholder{color:var(--dim);font-weight:500}
.f-search-wrap input:focus{border-color:rgba(99,102,241,.55);box-shadow:0 0 0 4px rgba(99,102,241,.1);background:#fff}
.f-search-ico{position:absolute;left:12px;top:50%;transform:translateY(-50%);pointer-events:none}
.f-search-ico svg{width:14px;height:14px;color:var(--dim)}
.filter-chips-row{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  padding:16px 0 2px;border-top:1px solid rgba(0,0,0,.05);
}
.filter-chips-label{
  font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
  color:var(--dim);margin-right:6px;flex-shrink:0;
}
.fc{
  height:36px;padding:0 14px;border-radius:999px;
  border:1.5px solid rgba(0,0,0,.08);background:#fff;
  color:#475569;font-size:11.5px;font-weight:700;
  transition:all .22s var(--ease-spring);display:inline-flex;align-items:center;gap:6px;white-space:nowrap;
  box-shadow:0 1px 3px rgba(15,23,42,.05);
}
.fc:hover{border-color:rgba(99,102,241,.5);color:#0F172A;transform:translateY(-2px);box-shadow:0 6px 18px rgba(99,102,241,.14)}
.fc.on{
  background:linear-gradient(135deg,rgba(99,102,241,.22),rgba(34,211,238,.12));
  border-color:rgba(99,102,241,.55);color:#4F46E5;
  box-shadow:0 6px 20px rgba(99,102,241,.2),inset 0 1px 0 rgba(255,255,255,.4);
}
.fc svg{width:11px;height:11px;flex-shrink:0}
.f-clear{
  height:34px;padding:0 14px;border-radius:9px;
  border:1.5px solid var(--bdr);background:transparent;
  color:var(--dim);font-size:12px;font-weight:700;
  transition:all .15s;margin-left:auto;
}
.f-clear:hover{color:var(--ink);border-color:rgba(239,68,68,.35);background:rgba(239,68,68,.06)}

/* ── MARKETPLACE ─────────────────────────────────────────────────── */
#mzone{padding:10px 0 8px}
.mp-wrap{padding:22px 0 48px}

/* Results bar — command strip */
.results-bar{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;gap:12px;flex-wrap:wrap;
  padding:14px 18px;background:rgba(255,255,255,.85);border:1px solid rgba(0,0,0,.06);
  border-radius:14px;backdrop-filter:blur(12px);
  box-shadow:var(--shadow-card);
}
.results-txt{font-size:13.5px;color:var(--mid);line-height:1.5}
.results-txt strong{color:var(--ink);font-weight:800}
.results-right{display:flex;align-items:center;gap:10px}

/* Sample post & order notice */
.mp-order-notice{
  display:flex;align-items:flex-start;gap:12px;margin-bottom:14px;padding:12px 16px;
  background:linear-gradient(135deg,rgba(239,68,68,.12) 0%,rgba(254,226,226,.65) 100%);
  border:1px solid rgba(220,38,38,.45);border-radius:12px;
  box-shadow:0 4px 16px rgba(220,38,38,.12);
}
.mp-order-notice-ico{
  width:28px;height:28px;border-radius:8px;flex-shrink:0;margin-top:1px;
  background:rgba(239,68,68,.18);color:#B91C1C;
  display:flex;align-items:center;justify-content:center;
}
.mp-order-notice-ico svg{width:15px;height:15px}
.mp-order-notice p{
  margin:0;font-size:12.5px;line-height:1.6;color:#334155;font-weight:500;
}
.mp-order-notice-lead{color:#B91C1C!important;font-weight:700!important}
.mp-order-notice strong{color:#0F172A;font-weight:700}

.sort-sel{
  background:#fff;border:1.5px solid rgba(0,0,0,.08);border-radius:10px;
  padding:8px 30px 8px 12px;font-size:12.5px;font-weight:600;color:var(--ink);outline:none;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;cursor:pointer;appearance:none;
  box-shadow:0 1px 3px rgba(15,23,42,.04);
  transition:border-color .2s,box-shadow .2s,transform .2s;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 10px center;background-size:10px;background-color:#fff;
}
.sort-sel:hover{border-color:rgba(99,102,241,.45);box-shadow:0 4px 14px rgba(99,102,241,.08)}

/* Inventory — card-hybrid table (Notion / Linear style) */
.tbl-wrap{
  background:linear-gradient(180deg,#fff 0%,#F8FAFC 100%);
  border:1px solid rgba(0,0,0,.06);border-radius:20px;margin-bottom:22px;
  box-shadow:0 24px 64px rgba(15,23,42,.08),0 4px 16px rgba(15,23,42,.04);
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  padding:14px 12px 18px;
}
.mp-tbl{
  width:100%;border-collapse:separate;border-spacing:0 10px;
  min-width:1240px;table-layout:fixed;
}
.mp-tbl thead{position:sticky;top:0;z-index:8}
.mp-tbl thead tr{background:transparent}
.mp-tbl thead th{
  padding:8px 10px 12px;font-size:9.5px;font-weight:800;color:#94A3B8;
  text-transform:uppercase;letter-spacing:.04em;line-height:1.25;
  text-align:center;vertical-align:middle;
  white-space:nowrap;overflow:visible;
  background:transparent;border:none;
  cursor:pointer;user-select:none;transition:color .15s;
  box-sizing:border-box;
}
.mp-tbl thead th.col-site{
  text-align:left;padding:8px 16px 12px 18px;min-width:248px;font-size:10px;
}
.th-site-inner{display:flex;align-items:center;gap:14px;min-width:0}
.th-site-spacer{width:46px;flex-shrink:0;height:1px}
.th-site-label{white-space:nowrap}
.mp-tbl thead th.col-traffic,.mp-tbl thead th.col-metric,.mp-tbl thead th.col-country,.mp-tbl thead th.col-link,.mp-tbl thead th.col-lang{font-size:9px}
.mp-tbl thead th:hover{color:#334155}
.mp-tbl thead th.sorted{color:#4338CA}
.mp-tbl thead th.col-action,.mp-tbl thead th.col-sample,.mp-tbl thead th.col-link{cursor:default}
.sort-arrow{margin-left:2px;opacity:.35;font-size:8px;font-weight:900}
.mp-tbl thead th.sorted .sort-arrow{opacity:1;color:#4338CA}

/* Each row = elevated inventory card */
.mp-tbl tbody tr.data-row{
  transition:transform .22s var(--ease-spring),box-shadow .22s,filter .22s;
  filter:drop-shadow(0 2px 6px rgba(15,23,42,.04));
}
.mp-tbl tbody tr.data-row:hover{
  transform:translateY(-2px);
  filter:drop-shadow(0 10px 28px rgba(15,23,42,.1));
}
.mp-tbl tbody tr.data-row td{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
  transition:background .2s,border-color .2s,box-shadow .2s;
}
.mp-tbl tbody tr.data-row:hover td{
  background:linear-gradient(180deg,#fff 0%,#F8FFFB 100%);
  border-color:rgba(99,102,241,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,1),0 0 0 1px rgba(99,102,241,.08);
}
.mp-tbl tbody tr.data-row td:first-child{
  border-left:1px solid rgba(0,0,0,.06);border-radius:14px 0 0 14px;padding-left:18px;
}
.mp-tbl tbody tr.data-row td:last-child{
  border-right:1px solid rgba(0,0,0,.06);border-radius:0 14px 14px 0;
}
.mp-tbl tbody tr.data-row:hover td:first-child,
.mp-tbl tbody tr.data-row:hover td:last-child{border-color:rgba(99,102,241,.22)}

.mp-tbl td{
  padding:16px 10px;vertical-align:middle;
  border-right:none;box-sizing:border-box;overflow:hidden;text-align:center;
}
.mp-tbl td.col-site{
  text-align:left;padding:16px 16px 16px 18px;
  overflow:visible;white-space:normal;vertical-align:middle;
}
.mp-tbl td.col-niche{text-align:left;padding-left:12px;padding-right:12px}
.mp-tbl td.col-country,.mp-tbl td.col-link{overflow:hidden}
.mp-tbl td.col-sample{overflow:visible;padding-left:8px;padding-right:8px}
.mp-tbl td.col-action{padding-right:14px}

/* Website column — hero publisher cell */
.site-col{display:flex;align-items:center;gap:14px;min-width:0;max-width:100%;width:100%}
.site-av-wrap{position:relative;flex-shrink:0}
.site-av{
  width:46px;height:46px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:900;color:#0C1225;line-height:1;
  box-shadow:0 4px 14px rgba(0,0,0,.12),inset 0 1px 0 rgba(255,255,255,.35);
  border:2px solid rgba(255,255,255,.9);
}
.site-verified{
  position:absolute;bottom:-3px;right:-3px;width:18px;height:18px;border-radius:50%;
  background:var(--grad);border:2px solid #fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(99,102,241,.4);
}
.site-verified svg{width:10px;height:10px;color:#0C1225}
.site-info{min-width:0;flex:1;overflow:hidden}
.site-top-row{display:flex;align-items:center;gap:8px;margin-bottom:6px;flex-wrap:wrap;min-width:0}
.site-domain{
  font-size:14.5px;font-weight:800;color:#0F172A;letter-spacing:-.02em;
  cursor:pointer;line-height:1.2;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;flex:1;
  transition:color .15s;
}
.site-domain:hover{color:#4338CA}
.site-pub-tier{
  font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  padding:3px 7px;border-radius:6px;flex-shrink:0;
  background:rgba(15,23,42,.08);color:#334155;border:1px solid rgba(0,0,0,.1);
}
.site-domain-row{display:flex;align-items:center;gap:6px;margin-bottom:6px;flex-wrap:nowrap;min-width:0}
.unlock-btn{
  display:inline-flex;align-items:center;gap:4px;font-size:9.5px;font-weight:700;
  padding:4px 9px;border-radius:8px;border:1px solid rgba(0,0,0,.08);cursor:pointer;
  background:#F8FAFC;color:#64748B;flex-shrink:0;
  transition:all .2s var(--ease-spring);
  box-shadow:0 1px 2px rgba(15,23,42,.04);
}
.unlock-btn:hover:not(:disabled):not(.unlock-btn-locked){background:rgba(99,102,241,.12);color:#4F46E5;border-color:rgba(99,102,241,.4);transform:translateY(-1px);box-shadow:0 4px 12px rgba(99,102,241,.15)}
.unlock-btn svg{width:10px;height:10px}
.site-domain-revealed{color:#4F46E5!important;cursor:default}
.site-domain-revealed:hover{color:#4F46E5!important}
.unlock-btn-done{
  background:linear-gradient(135deg,rgba(99,102,241,.16),rgba(99,102,241,.06));
  color:#4F46E5;border-color:rgba(99,102,241,.35);cursor:default;pointer-events:none;
}
.unlock-btn-locked{
  background:linear-gradient(165deg,#F8FAFC,#F1F5F9);
  color:#64748B;border-color:rgba(0,0,0,.1);cursor:pointer;
}
.unlock-btn-locked:hover{
  background:linear-gradient(135deg,rgba(99,102,241,.12),rgba(34,211,238,.06));
  color:#4F46E5;border-color:rgba(99,102,241,.35);
}
.btn-sample-locked{
  background:#F1F5F9!important;border-color:rgba(0,0,0,.1)!important;color:#94A3B8!important;
  cursor:pointer;opacity:.85;
}
.btn-sample-locked:hover{
  background:linear-gradient(135deg,rgba(99,102,241,.14),rgba(34,211,238,.08))!important;
  color:#4F46E5!important;border-color:rgba(99,102,241,.35)!important;
  transform:translateY(-1px);
}
#mzone.reveal-limit-reached tr.data-row.row-preview-locked .site-domain:not(.site-domain-revealed){
  filter:blur(.4px);opacity:.72;
}
#mzone.reveal-limit-reached tr.data-row.row-preview-locked .site-domain-row{
  position:relative;
}
.exp-domain-link{color:#4F46E5;font-weight:700;text-decoration:none}
.exp-domain-link:hover{text-decoration:underline}
.exp-reveal-link{
  background:none;border:none;padding:0;margin-left:4px;
  color:#4F46E5;font-size:12px;font-weight:700;cursor:pointer;text-decoration:underline;
}
.exp-reveal-link:hover{color:#4338CA}

/* Free preview meter & limit UI */
.reveal-preview-pill{
  display:inline-flex;align-items:center;gap:8px;height:36px;padding:0 12px;border-radius:10px;
  background:linear-gradient(165deg,#F8FAFC,#fff);
  border:1.5px solid rgba(0,0,0,.08);
  box-shadow:0 2px 8px rgba(15,23,42,.04);
}
.reveal-preview-pill-label{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#64748B}
.reveal-preview-pill-val{font-size:12px;font-weight:800;color:#0F172A}
.reveal-preview-pill-val strong{color:#4F46E5}
.reveal-preview-bar{
  margin:0 0 14px;border-radius:12px;border:1.5px solid rgba(99,102,241,.22);
  background:linear-gradient(135deg,rgba(99,102,241,.08),rgba(34,211,238,.04));
  box-shadow:0 4px 16px rgba(99,102,241,.08);
  animation:revealBarIn .35s var(--ease);
}
@keyframes revealBarIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.reveal-preview-bar.is-low{border-color:rgba(245,158,11,.35);background:linear-gradient(135deg,rgba(245,158,11,.1),rgba(255,251,235,.6))}
.reveal-preview-bar.is-exhausted{border-color:rgba(100,116,139,.25);background:linear-gradient(135deg,#F8FAFC,#F1F5F9)}
.reveal-preview-bar-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:12px 16px;flex-wrap:wrap;
}
.reveal-preview-bar-kicker{
  display:block;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:#4F46E5;margin-bottom:2px;
}
.reveal-preview-bar-text{margin:0;font-size:13px;color:#475569;line-height:1.45}
.reveal-preview-bar-text strong{color:#0F172A}
.reveal-preview-bar-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.reveal-preview-meter{
  font-size:12px;font-weight:800;color:#334155;padding:6px 10px;border-radius:8px;
  background:rgba(255,255,255,.7);border:1px solid rgba(0,0,0,.06);
}
.reveal-preview-cta{
  display:inline-flex;align-items:center;height:36px;padding:0 14px;border-radius:9px;
  background:var(--grad);color:#0C1225;font-size:12px;font-weight:800;text-decoration:none;
  transition:transform .18s,box-shadow .18s;
  box-shadow:0 4px 14px rgba(99,102,241,.25);
}
.reveal-preview-cta:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(99,102,241,.32)}
.reveal-limit-banner{
  margin:16px 0 0;border-radius:14px;padding:16px 18px;
  border:1.5px solid rgba(15,23,42,.08);
  background:linear-gradient(135deg,#0F172A 0%,#1E293B 100%);
  box-shadow:0 12px 40px rgba(15,23,42,.18);
  animation:revealBarIn .4s var(--ease);
}
.reveal-limit-banner-inner{display:flex;align-items:flex-start;gap:14px;flex-wrap:wrap}
.reveal-limit-banner-ico{
  width:40px;height:40px;border-radius:11px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(34,211,238,.12));
  border:1px solid rgba(99,102,241,.3);
}
.reveal-limit-banner-ico svg{width:20px;height:20px;color:var(--g)}
.reveal-limit-banner-copy{flex:1;min-width:200px}
.reveal-limit-banner-copy h4{margin:0 0 4px;font-size:15px;font-weight:900;color:#fff;letter-spacing:-.02em}
.reveal-limit-banner-copy p{margin:0;font-size:13px;color:rgba(255,255,255,.55);line-height:1.5;max-width:520px}
.reveal-limit-banner-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.reveal-limit-banner-actions a,.reveal-limit-banner-actions button{
  height:38px;padding:0 16px;border-radius:9px;font-size:12px;font-weight:800;cursor:pointer;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;transition:all .18s;
}
.reveal-limit-btn-main{
  background:var(--grad);color:#0C1225;border:none;text-decoration:none;
  display:inline-flex;align-items:center;
  box-shadow:0 4px 16px rgba(99,102,241,.25);
}
.reveal-limit-btn-main:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(99,102,241,.35)}
.reveal-limit-btn-sec{
  background:transparent;color:rgba(255,255,255,.75);
  border:1.5px solid rgba(255,255,255,.18);text-decoration:none;
  display:inline-flex;align-items:center;
}
.reveal-limit-btn-sec:hover{border-color:rgba(255,255,255,.35);color:#fff}
.limit-modal .modal-icon.limit-icon{background:linear-gradient(135deg,rgba(99,102,241,.15),rgba(34,211,238,.08))}
.site-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.site-links{
  font-size:11px;color:#64748B;display:inline-flex;align-items:center;gap:4px;
  padding:3px 8px;border-radius:6px;background:rgba(99,102,241,.06);border:1px solid rgba(99,102,241,.12);
}
.site-links svg{width:11px;height:11px;color:#4338CA;flex-shrink:0}
.site-tags{display:flex;gap:5px;margin-top:6px;flex-wrap:wrap}
.stg{
  font-size:9px;font-weight:800;padding:3px 8px;border-radius:999px;letter-spacing:.04em;
  box-shadow:0 1px 3px rgba(0,0,0,.06);
}
.stg-feat{background:linear-gradient(135deg,rgba(34,211,238,.25),rgba(34,211,238,.08));color:#6366F1;border:1px solid rgba(34,211,238,.45)}
.stg-inst{background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(99,102,241,.06));color:#4F46E5;border:1px solid rgba(99,102,241,.35)}
.stg-cryp{background:linear-gradient(135deg,rgba(139,92,246,.2),rgba(139,92,246,.06));color:#7c3aed;border:1px solid rgba(139,92,246,.3)}
.stg-spons{background:linear-gradient(135deg,rgba(245,158,11,.2),rgba(245,158,11,.06));color:#b45309;border:1px solid rgba(245,158,11,.35)}
.stg-new{
  background:linear-gradient(135deg,rgba(99,102,241,.22),rgba(34,211,238,.1));
  color:#1d4ed8;border:1px solid rgba(99,102,241,.42);
}
.site-new-row{display:flex;align-items:center;margin:-2px 0 6px}

/* Categories */
.niches{display:flex;flex-direction:column;gap:5px;align-items:flex-start}
.nchip{
  font-size:9.5px;font-weight:700;padding:4px 9px;border-radius:8px;line-height:1.2;
  background:linear-gradient(135deg,rgba(99,102,241,.14),rgba(99,102,241,.04));
  color:#4F46E5;border:1px solid rgba(99,102,241,.28);
  white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis;
  box-shadow:0 1px 3px rgba(99,102,241,.08);
}

/* Metric pills — SaaS dashboard quality */
.metric-pill{
  display:inline-flex;flex-direction:column;align-items:center;justify-content:center;
  gap:2px;min-width:52px;padding:7px 10px;border-radius:11px;
  background:linear-gradient(165deg,#fff 0%,#F1F5F9 100%);
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 2px 8px rgba(15,23,42,.05),inset 0 1px 0 rgba(255,255,255,.95);
  transition:transform .2s var(--ease-spring),box-shadow .2s;
}
.mp-tbl tbody tr.data-row:hover .metric-pill{transform:scale(1.02)}
.metric-pill-val{font-size:15px;font-weight:900;line-height:1;letter-spacing:-.02em;color:#0F172A}
.metric-pill-lbl{font-size:7.5px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#64748B;opacity:1}
.traffic-pill .metric-pill-val{font-size:13px;color:#0F172A}
.traffic-pill .metric-pill-lbl{color:#64748B}

.mbadge.metric-pill{padding:7px 10px}
.mb-hi{background:linear-gradient(165deg,rgba(99,102,241,.18) 0%,rgba(99,102,241,.06) 100%);border-color:rgba(99,102,241,.35)}
.mb-hi .metric-pill-val{color:#4338CA}
.mb-md{background:linear-gradient(165deg,rgba(245,158,11,.16) 0%,rgba(245,158,11,.04) 100%);border-color:rgba(245,158,11,.35)}
.mb-md .metric-pill-val{color:#b45309}
.mb-lo{background:linear-gradient(165deg,rgba(239,68,68,.12) 0%,rgba(239,68,68,.04) 100%);border-color:rgba(239,68,68,.3)}
.mb-lo .metric-pill-val{color:#b91c1c}

.ta-pill{
  display:inline-flex;flex-direction:column;align-items:center;gap:1px;
  min-width:44px;padding:7px 10px;border-radius:11px;
  background:linear-gradient(165deg,#EFF6FF 0%,#F8FAFC 100%);
  border:1px solid rgba(99,102,241,.15);
  box-shadow:0 2px 8px rgba(99,102,241,.06),inset 0 1px 0 rgba(255,255,255,.9);
}
.ta-pill-val{font-size:14px;font-weight:900;color:#334155;line-height:1}
.ta-pill-lbl{font-size:7px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#94A3B8}

.ctry{
  display:inline-flex;align-items:center;justify-content:flex-start;gap:5px;
  width:100%;max-width:100%;padding:5px 7px;border-radius:9px;
  background:linear-gradient(165deg,#fff,#F8FAFC);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 2px 6px rgba(15,23,42,.04);box-sizing:border-box;
}
.cflag{font-size:15px;line-height:1;flex-shrink:0}
.cname{
  font-size:9.5px;color:#475569;font-weight:700;line-height:1.2;
  white-space:nowrap;flex:0 1 auto;min-width:0;
}
.mp-tbl td.col-country{padding-left:8px;padding-right:8px}
.mp-tbl td.col-link{padding-left:6px;padding-right:6px}
.mp-tbl td.col-link .lt{
  display:inline-flex;align-items:center;justify-content:center;
  max-width:100%;box-sizing:border-box;margin:0 auto;
}

.lt{
  font-size:7.5px;font-weight:800;padding:4px 7px;border-radius:999px;
  white-space:nowrap;line-height:1.15;letter-spacing:.02em;text-transform:uppercase;
  box-shadow:0 1px 4px rgba(99,102,241,.1);
}
.lt-do{background:linear-gradient(135deg,rgba(99,102,241,.22),rgba(99,102,241,.08));color:#4F46E5;border:1px solid rgba(99,102,241,.4)}
.lt-no{background:linear-gradient(135deg,rgba(239,68,68,.15),rgba(239,68,68,.05));color:#b91c1c;border:1px solid rgba(239,68,68,.3)}

.lang-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:6px 12px;border-radius:10px;font-size:11px;font-weight:700;color:#334155;
  background:#F1F5F9;border:1px solid rgba(0,0,0,.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.btn-sample{
  display:inline-flex;align-items:center;justify-content:center;gap:4px;
  height:34px;padding:0 10px;border-radius:10px;margin:0 auto;
  background:linear-gradient(165deg,rgba(99,102,241,.14),rgba(99,102,241,.04));
  border:1.5px solid rgba(99,102,241,.4);color:#4F46E5;font-size:9.5px;font-weight:800;
  transition:all .22s var(--ease-spring);text-decoration:none;
  white-space:nowrap;flex-shrink:0;min-width:max-content;
  box-sizing:border-box;line-height:1;
  box-shadow:0 2px 8px rgba(99,102,241,.1);
}
.btn-sample svg{width:11px;height:11px;flex-shrink:0}
.btn-sample:hover{
  background:var(--grad);color:#0C1225;border-color:transparent;
  transform:translateY(-2px);box-shadow:0 8px 24px rgba(99,102,241,.35);
}

/* Order column — conversion-focused */
.action-stack{display:flex;flex-direction:column;gap:8px;width:100%;max-width:144px;margin:0 auto}
.btn-buy-split{
  display:flex;width:100%;border:none;border-radius:11px;overflow:hidden;padding:0;
  cursor:pointer;font-family:inherit;box-sizing:border-box;
  background:var(--grad);
  box-shadow:0 4px 18px rgba(99,102,241,.35),0 0 0 1px rgba(99,102,241,.2),inset 0 1px 0 rgba(255,255,255,.3);
  transition:transform .22s var(--ease-spring),box-shadow .22s;
}
.btn-buy-split:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 10px 32px rgba(99,102,241,.45),0 0 20px rgba(99,102,241,.2),inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-buy-split:active{transform:translateY(-1px) scale(1)}
.btn-buy-label{
  flex:1;padding:11px 8px;font-size:11px;font-weight:900;color:#0C1225;
  background:transparent;text-align:center;white-space:nowrap;
}
.btn-buy-price{
  padding:11px 10px;font-size:12px;font-weight:900;color:#fff;
  background:rgba(8,11,20,.88);flex-shrink:0;min-width:64px;
  border-left:1px solid rgba(255,255,255,.15);
}
.btn-cart-add{
  display:flex;align-items:center;justify-content:center;gap:7px;
  width:100%;padding:10px 8px;box-sizing:border-box;
  background:#fff;color:#4338CA;font-size:11px;font-weight:900;
  border:1.5px solid #818CF8;border-radius:10px;cursor:pointer;
  font-family:inherit;transition:background .2s,border-color .2s,transform .2s,box-shadow .2s;
  box-shadow:0 2px 10px rgba(99,102,241,.14);
}
.btn-cart-add svg{width:15px;height:15px;flex-shrink:0;color:#6366F1}
.btn-cart-add:hover{background:#EEF2FF;border-color:#6366F1;transform:translateY(-1px);box-shadow:0 4px 16px rgba(99,102,241,.22)}
.btn-cart-add.is-in-cart{background:#EEF2FF;border-color:#6366F1;color:#312E81}
.btn-cart-add.is-in-cart .btn-cart-label{color:#312E81}
.btn-cart-label{color:#4338CA;letter-spacing:.01em}
#mzone.dark .btn-cart-add{
  background:rgba(255,255,255,.08);color:#E0E7FF;border-color:rgba(129,140,248,.55);
  box-shadow:none;
}
#mzone.dark .btn-cart-add svg{color:#A5B4FC}
#mzone.dark .btn-cart-add .btn-cart-label{color:#E0E7FF}
#mzone.dark .btn-cart-add.is-in-cart{background:rgba(16,185,129,.15);border-color:#34D399;color:#6EE7B7}
#mzone.dark .btn-cart-add.is-in-cart .btn-cart-label{color:#6EE7B7}
.zb-cart-check{
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  width:22px;height:22px;margin-right:-4px;
}
.zb-cart-check input{
  width:18px;height:18px;accent-color:#6366F1;cursor:pointer;
}
.th-select-label{font-size:9px;font-weight:800;color:var(--ghost);text-transform:uppercase;letter-spacing:.04em}
.zb-cart-bar{
  position:sticky;bottom:0;z-index:120;
  background:linear-gradient(180deg,rgba(12,18,37,.92),rgba(8,11,20,.98));
  border-top:1px solid rgba(99,102,241,.35);
  box-shadow:0 -8px 32px rgba(0,0,0,.45);
  backdrop-filter:blur(12px);
  transition:box-shadow .35s,transform .35s;
}
.zb-cart-bar.is-pulse{
  box-shadow:0 -8px 40px rgba(99,102,241,.55);
  transform:translateY(-2px);
}
.zb-cart-bar-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 0;flex-wrap:wrap;
}
.zb-cart-bar-left{display:flex;align-items:center;gap:14px;flex-wrap:wrap;color:#E2E8F0;font-size:14px}
.zb-cart-bar-ico{width:22px;height:22px;color:#A5B4FC}
.zb-cart-bar-total{color:#94A3B8;font-size:13px}
.zb-cart-bar-total strong,.zb-cart-bar-count strong{color:#fff}
.zb-cart-bar-actions{display:flex;align-items:center;gap:10px}
.zb-cart-clear{
  padding:10px 16px;border-radius:10px;border:1px solid rgba(148,163,184,.3);
  background:transparent;color:#CBD5E1;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit;
}
.zb-cart-checkout{
  padding:10px 20px;border-radius:10px;border:none;
  background:var(--grad);color:#0C1225;font-size:13px;font-weight:900;cursor:pointer;font-family:inherit;
  box-shadow:0 4px 16px rgba(99,102,241,.35);
}
.btn-view{
  display:flex;align-items:center;justify-content:center;gap:5px;
  width:100%;padding:9px 8px;box-sizing:border-box;
  background:#fff;color:#A34E24;font-size:9.5px;font-weight:700;
  border:1.5px solid #A34E24;border-radius:10px;
  transition:all .2s var(--ease-spring);cursor:pointer;
  box-shadow:0 1px 3px rgba(163,78,36,.08);white-space:nowrap;
}
.btn-view-label{white-space:nowrap}
.btn-view:hover{
  border-color:#A34E24;color:#A34E24;
  background:#FFF7ED;transform:translateY(-1px);
  box-shadow:0 4px 14px rgba(163,78,36,.14);
}
.btn-view svg{width:11px;height:11px;flex-shrink:0;opacity:1;color:#A34E24}
.btn-view.expanded{background:#FFF7ED;border-color:#A34E24;color:#A34E24}

/* Expand panel */
.expand-row td{padding:0!important;border:none!important;background:transparent!important;box-shadow:none!important}
.expand-row{display:none}
.expand-row.show{display:table-row}
.expand-inner{
  margin:0 4px 4px;padding:20px 22px;border-radius:0 0 14px 14px;
  background:linear-gradient(180deg,#0F172A 0%,#0A0D17 100%);
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px;
  border:1px solid rgba(99,102,241,.15);border-top:none;
  box-shadow:0 12px 32px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.04);
}
.exp-item{
  padding:10px 12px;border-radius:10px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
}
.exp-item dt{font-size:9px;font-weight:800;color:rgba(148,163,184,.9);text-transform:uppercase;letter-spacing:.08em;margin-bottom:5px}
.exp-item dd{font-size:14px;font-weight:800;color:#E2E8F0}
.exp-item dd.hi{color:var(--g)}

/* No results */
.no-results{padding:60px 24px;text-align:center;color:var(--ghost);font-size:14px}
.no-results strong{display:block;font-size:18px;font-weight:800;color:var(--mid);margin-bottom:8px}

/* ── PAGINATION ───────────────────────────────────────────────────── */
.pag{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin-bottom:8px;padding:16px 20px;background:rgba(255,255,255,.9);border:1px solid rgba(0,0,0,.06);
  border-radius:14px;box-shadow:var(--shadow-card);backdrop-filter:blur(10px);
}
.pag-info{font-size:13px;color:var(--dim)}
.pag-info strong{color:var(--ink)}
.pag-btns{display:flex;gap:5px;align-items:center}
.pb{
  width:34px;height:34px;border-radius:var(--r2);border:1.5px solid var(--bdr);
  background:transparent;color:var(--dim);font-size:12.5px;font-weight:600;
  display:flex;align-items:center;justify-content:center;transition:all .15s;cursor:pointer;
}
.pb:hover,.pb.on{border-color:rgba(99,102,241,.4);color:var(--g);background:rgba(99,102,241,.06)}
.pb.on{font-weight:900}
.pb svg{width:13px;height:13px}
.pb:disabled{opacity:.35;cursor:not-allowed;pointer-events:none}

/* ── CTA BANNER ───────────────────────────────────────────────────── */
.cta-banner{
  background:linear-gradient(135deg,#151d38 0%,#1e1b4b 45%,#172554 100%);
  border-top:1px solid rgba(99,102,241,.15);border-bottom:1px solid rgba(99,102,241,.12);
  padding:48px 28px;text-align:center;margin-bottom:0;position:relative;overflow:hidden;
}
.cta-banner::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 80% at 50% 100%,rgba(99,102,241,.14) 0%,transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 20%,rgba(34,211,238,.08) 0%,transparent 55%);
}
.cta-banner h2{font-size:clamp(20px,3vw,30px);font-weight:900;color:#fff;margin-bottom:10px;position:relative}
.cta-banner p{font-size:15px;color:rgba(255,255,255,.5);margin-bottom:24px;position:relative}
.cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;position:relative}
.cta-btn-main{
  height:46px;padding:0 28px;background:var(--grad);color:#0C1225;
  font-size:14px;font-weight:800;border:none;border-radius:var(--r);
  transition:all .15s;
}
a.cta-btn-main{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;cursor:pointer}
.cta-btn-main:hover{opacity:.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(99,102,241,.3)}
.cta-btn-sec{
  height:46px;padding:0 24px;background:transparent;color:rgba(255,255,255,.7);
  font-size:14px;font-weight:600;border:1.5px solid rgba(255,255,255,.14);
  border-radius:var(--r);transition:all .15s;
}
.cta-btn-sec:hover{border-color:rgba(255,255,255,.3);color:#fff}

/* ── CONTENT SECTIONS (below marketplace) ─────────────────────────── */
.gp-content{background:linear-gradient(180deg,#0c1225 0%,#131b3a 50%,#0c1225 100%)}
.gp-sec{padding:64px 0}
.gp-sec--alt{background:linear-gradient(180deg,#121A32 0%,#0C1225 100%)}
.gp-sec--light{
  background:#FAFBFC;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.gp-sec--light .gp-sec-head h2{color:#0C1225}
.gp-sec--light .gp-sec-head p{color:#6B7280}
.gp-sec-head{text-align:center;max-width:640px;margin:0 auto 40px}
.gp-sec-badge{
  display:inline-block;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  padding:5px 12px;border-radius:999px;margin-bottom:14px;
  background:rgba(99,102,241,.12);border:1px solid rgba(99,102,241,.35);color:var(--g);
}
.gp-sec-head h2{
  font-size:clamp(24px,3.5vw,34px);font-weight:900;color:#fff;
  letter-spacing:-.03em;line-height:1.15;margin-bottom:12px;
}
.gp-sec-head p{font-size:15px;color:rgba(255,255,255,.55);line-height:1.65}

/* How it works */
.steps-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;position:relative;
}
.step-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);
  border-radius:16px;padding:22px 18px 20px;text-align:center;
  transition:transform .22s var(--ease-spring),border-color .2s,box-shadow .2s;
}
.step-card:hover{
  transform:translateY(-4px);border-color:rgba(99,102,241,.35);
  box-shadow:0 12px 32px rgba(99,102,241,.12);
}
.step-num{
  width:40px;height:40px;border-radius:12px;margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:900;color:#0C1225;background:var(--grad);
  box-shadow:0 4px 16px rgba(99,102,241,.3);
}
.step-card h3{font-size:15px;font-weight:800;color:#F8FAFC;margin-bottom:8px}
.step-card p{font-size:13px;color:rgba(255,255,255,.52);line-height:1.55}

/* Benefits */
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.benefit-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:18px 16px;display:flex;gap:12px;align-items:flex-start;
  transition:border-color .2s,transform .2s;
}
.benefit-card:hover{border-color:rgba(99,102,241,.3);transform:translateY(-2px)}
.benefit-ico{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  background:rgba(99,102,241,.12);border:1px solid rgba(99,102,241,.25);
  display:flex;align-items:center;justify-content:center;color:var(--g);
}
.benefit-ico svg{width:18px;height:18px}
.benefit-card h3{font-size:14px;font-weight:800;color:#F1F5F9;margin-bottom:4px;line-height:1.3}
.benefit-card p{font-size:12.5px;color:rgba(255,255,255,.5);line-height:1.5}
.gp-sec--light .benefit-card{
  background:#fff;border:1px solid rgba(0,0,0,.08);
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.gp-sec--light .benefit-card:hover{
  border-color:rgba(99,102,241,.35);
  box-shadow:0 8px 24px rgba(99,102,241,.1);
}
.gp-sec--light .benefit-card h3{color:#0F172A}
.gp-sec--light .benefit-card p{color:#64748B}
.gp-sec--light .benefit-ico{
  background:rgba(99,102,241,.1);border-color:rgba(99,102,241,.28);
}

/* Why choose us */
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.trust-item{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);
  border-radius:12px;padding:16px 14px;display:flex;gap:10px;align-items:flex-start;
  text-decoration:none;color:inherit;transition:border-color .2s,transform .2s,box-shadow .2s;
}
.trust-item:hover{
  border-color:rgba(99,102,241,.35);transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(99,102,241,.1);
}
.trust-check{
  width:22px;height:22px;border-radius:7px;flex-shrink:0;
  background:rgba(99,102,241,.15);color:var(--g);
  display:flex;align-items:center;justify-content:center;
}
.trust-check svg{width:12px;height:12px}
.trust-item h3{
  font-size:13px;font-weight:600;color:rgba(255,255,255,.85);line-height:1.45;
  margin:0;letter-spacing:-.01em;transition:color .2s;
}
.trust-item:hover h3{color:#fff}

/* Packages */
.pkgs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch}
.pkg-card{
  display:flex;flex-direction:column;
  background:linear-gradient(165deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.02) 100%);
  border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:22px 20px 20px;
  transition:transform .22s var(--ease-spring),border-color .2s,box-shadow .2s;
}
.pkg-card:hover{
  transform:translateY(-5px);border-color:rgba(99,102,241,.4);
  box-shadow:0 16px 40px rgba(99,102,241,.14);
}
.pkg-card--featured{
  border-color:rgba(99,102,241,.45);
  background:linear-gradient(165deg,rgba(99,102,241,.1) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:0 0 0 1px rgba(99,102,241,.2),0 12px 36px rgba(99,102,241,.1);
}
.pkg-tier{
  display:inline-block;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  padding:4px 10px;border-radius:999px;margin-bottom:12px;
  background:rgba(99,102,241,.15);border:1px solid rgba(99,102,241,.35);color:#A5F3FC;
}
.gp-packages--crypto .pkg-tier{
  background:rgba(139,92,246,.18);border-color:rgba(139,92,246,.4);color:#c4b5fd;
}
.pkg-card h3{font-size:17px;font-weight:900;color:#fff;margin-bottom:6px;letter-spacing:-.02em}
.pkg-price{
  display:flex;align-items:baseline;flex-wrap:wrap;gap:6px 8px;
  margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.08);
}
.pkg-price-amt{
  font-size:clamp(28px,4vw,34px);font-weight:900;letter-spacing:-.03em;line-height:1;
  background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.gp-packages--crypto .pkg-price-amt{
  background:linear-gradient(135deg,#c4b5fd 0%,#8b5cf6 100%);
  -webkit-background-clip:text;background-clip:text;
}
.pkg-price-note{font-size:11px;font-weight:600;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.06em}
.pkg-price-bundle{
  display:block;width:100%;font-size:11px;font-weight:600;color:rgba(255,255,255,.45);
  margin-top:4px;line-height:1.4;text-transform:none;letter-spacing:0;
}
.pkg-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);margin-bottom:10px;line-height:1.4}
.pkg-feats{
  list-style:none;margin:0 0 14px;padding:0;flex:1;
  display:flex;flex-direction:column;gap:7px;
}
.pkg-feats li{
  font-size:12.5px;color:rgba(255,255,255,.62);line-height:1.4;
  padding-left:18px;position:relative;
}
.pkg-feats li::before{
  content:'';position:absolute;left:0;top:7px;width:6px;height:6px;border-radius:50%;
  background:var(--g);opacity:.85;
}
.pkg-feats li.pkg-feat-writing{color:rgba(255,255,255,.78)}
.pkg-feats li.pkg-feat-writing strong{color:var(--g);font-weight:800}
.gp-packages--crypto .pkg-feats li::before{background:#a78bfa}
.gp-packages--crypto .pkg-feats li.pkg-feat-writing strong{color:#c4b5fd}
.pkg-best{
  font-size:12px;color:rgba(255,255,255,.48);line-height:1.5;
  padding-top:12px;border-top:1px solid rgba(255,255,255,.08);margin-bottom:16px;
}
.pkg-best strong{color:rgba(255,255,255,.75);font-weight:700}
.pkg-btn{
  display:block;text-align:center;padding:11px 16px;border-radius:10px;
  background:var(--grad);color:#0C1225;font-size:12.5px;font-weight:800;
  border:none;transition:opacity .15s,transform .15s,box-shadow .15s;
}
.pkg-btn:hover{opacity:.92;transform:translateY(-1px);box-shadow:0 6px 20px rgba(99,102,241,.35)}
.gp-packages--crypto .pkg-btn{
  background:linear-gradient(135deg,#8b5cf6 0%,#a78bfa 100%);color:#fff;
}
.gp-packages--crypto .pkg-btn:hover{box-shadow:0 6px 20px rgba(139,92,246,.4)}
.gp-packages--crypto .pkg-card--featured{
  border-color:rgba(139,92,246,.45);
  background:linear-gradient(165deg,rgba(139,92,246,.12) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:0 0 0 1px rgba(139,92,246,.2),0 12px 36px rgba(139,92,246,.12);
}
.gp-packages--crypto .pkg-card:hover{border-color:rgba(139,92,246,.4)}
.pkg-note{font-size:10px;color:rgba(255,255,255,.35);margin-top:10px;text-align:center}

/* FAQ */
.faq-list{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px 16px;
  width:100%;max-width:100%;margin:0;align-items:start;
}
.faq-item{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);
  border-radius:12px;overflow:hidden;transition:border-color .2s;
  min-width:0;
}
.faq-item.open{border-color:rgba(99,102,241,.35)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:16px 18px;background:transparent;border:none;text-align:left;
  font-size:14px;font-weight:700;color:#F1F5F9;cursor:pointer;font-family:inherit;
}
.faq-q svg{width:18px;height:18px;color:var(--g);flex-shrink:0;transition:transform .2s}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .28s ease,padding .28s ease;
  padding:0 18px;font-size:13.5px;color:rgba(255,255,255,.55);line-height:1.6;
}
.faq-item.open .faq-a{max-height:320px;padding:0 18px 16px}
.gp-sec--light .faq-item{
  background:#fff;border:1px solid rgba(0,0,0,.08);
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.gp-sec--light .faq-item.open{
  border-color:rgba(99,102,241,.45);
  box-shadow:0 6px 20px rgba(99,102,241,.1);
}
.gp-sec--light .faq-q{color:#0F172A}
.gp-sec--light .faq-a{color:#64748B}

/* ── SIGN-IN MODAL ────────────────────────────────────────────────── */
.modal-overlay{
  position:fixed;inset:0;background:rgba(5,7,16,.8);z-index:500;
  display:none;align-items:center;justify-content:center;padding:20px;
  backdrop-filter:blur(8px);
}
.modal-overlay.open{display:flex;animation:mfade .2s ease}
@keyframes mfade{from{opacity:0}to{opacity:1}}
.modal{
  background:#1A2238;border:1px solid rgba(255,255,255,.1);border-radius:16px;
  padding:36px 32px;max-width:420px;width:100%;position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,.7);
  animation:mslide .25s var(--ease);
}
@keyframes mslide{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.modal-close{
  position:absolute;top:14px;right:14px;width:28px;height:28px;
  border-radius:6px;border:1px solid rgba(255,255,255,.1);background:transparent;
  color:var(--dim);display:flex;align-items:center;justify-content:center;
  transition:all .15s;cursor:pointer;
}
.modal-close:hover{border-color:rgba(255,255,255,.25);color:#fff}
.modal-close svg{width:12px;height:12px}
.modal-icon{
  width:52px;height:52px;border-radius:14px;background:rgba(99,102,241,.08);
  border:1px solid rgba(99,102,241,.2);display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;
}
.modal-icon svg{width:24px;height:24px;color:var(--g)}
.modal h3{font-size:20px;font-weight:900;color:#fff;text-align:center;margin-bottom:8px}
.modal-sub{font-size:13.5px;color:rgba(255,255,255,.5);text-align:center;line-height:1.6;margin-bottom:24px}
.modal-sub strong{color:var(--g)}
.modal-site-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);padding:12px 14px;display:flex;align-items:center;gap:10px;margin-bottom:20px;
}
.modal-site-av{
  width:36px;height:36px;border-radius:8px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:900;color:#0C1225;
}
.modal-site-name{font-size:13px;font-weight:700;color:#fff}
.modal-site-meta{font-size:11.5px;color:var(--ghost);margin-top:2px}
.modal-site-price{margin-left:auto;font-size:18px;font-weight:900;color:#fff}
.modal-btns{display:flex;flex-direction:column;gap:10px}
.modal-btn-main{
  height:46px;background:var(--grad);color:#0C1225;font-size:14px;font-weight:900;
  border:none;border-radius:var(--r);transition:all .15s;
}
.modal-btn-main:hover{opacity:.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(99,102,241,.3)}
.modal-btn-sec{
  height:44px;background:transparent;color:rgba(255,255,255,.7);font-size:13.5px;font-weight:600;
  border:1.5px solid rgba(255,255,255,.14);border-radius:var(--r);transition:all .15s;
}
.modal-btn-sec:hover{border-color:rgba(255,255,255,.28);color:#fff}
.modal-note{font-size:11px;color:var(--ghost);text-align:center;margin-top:12px}
.modal-note a{color:var(--g);font-weight:600}

/* Mobile publisher details bottom sheet */
.zb-details-sheet{
  position:fixed;inset:0;z-index:1100;
  display:none;align-items:flex-end;justify-content:center;
  pointer-events:none;
}
.zb-details-sheet.open{display:flex;pointer-events:auto}
.zb-details-sheet-backdrop{
  position:absolute;inset:0;background:rgba(12,18,37,.6);
  opacity:0;transition:opacity .25s ease;
}
.zb-details-sheet.open .zb-details-sheet-backdrop{opacity:1}
.zb-details-sheet-panel{
  position:relative;width:100%;max-height:min(85vh,720px);
  background:linear-gradient(180deg,#1E293B 0%,#0F172A 100%);
  border-radius:20px 20px 0 0;
  border:1px solid rgba(99,102,241,.22);
  border-bottom:none;
  box-shadow:0 -16px 48px rgba(0,0,0,.4);
  transform:translateY(100%);
  transition:transform .28s cubic-bezier(.32,.72,.24,1);
  display:flex;flex-direction:column;overflow:hidden;
}
.zb-details-sheet.open .zb-details-sheet-panel{transform:translateY(0)}
.zb-details-sheet-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08);flex-shrink:0;
}
.zb-details-sheet-head h3{
  font-size:16px;font-weight:800;color:#fff;margin:0;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;
}
.zb-details-sheet-close{
  width:36px;height:36px;border-radius:10px;border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);color:#fff;font-size:22px;line-height:1;
  cursor:pointer;flex-shrink:0;display:flex;align-items:center;justify-content:center;
}
.zb-details-sheet-body{
  padding:16px 16px calc(20px + env(safe-area-inset-bottom,0px));
  overflow-y:auto;-webkit-overflow-scrolling:touch;
}
.zb-details-sheet-body .expand-inner{
  margin:0;padding:0;border:none;box-shadow:none;background:transparent;
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;
}
.zb-details-sheet-body .exp-item{padding:12px 14px}
.zb-details-sheet-body .exp-item dd{font-size:13px;word-break:break-word}
body.zb-details-open{overflow:hidden}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media(max-width:960px){
  .hero{padding-bottom:28px}
  .filter-dock{margin-top:20px}
  .filter-chips-row{padding-top:12px}
  .f-sel{font-size:12px}
  .results-bar{padding:12px}
  .hero-counter-cell{padding:18px 12px}
  .hero-counter-val{font-size:22px}
  .filter-card-head{flex-direction:column;align-items:flex-start}
  .filter-grid{grid-template-columns:1fr}
  .filter-body{padding:0 14px 14px}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .benefits-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .pkgs-grid{grid-template-columns:1fr;max-width:420px;margin-left:auto;margin-right:auto}
  .faq-list{grid-template-columns:1fr;gap:10px}
}
@media(max-width:768px){
  .tbl-wrap{padding:12px 10px;border-radius:16px;overflow:visible}
  .mp-tbl{min-width:0;border-spacing:0}
  .mp-tbl thead{display:none}
  .mp-tbl,.mp-tbl tbody,.mp-tbl tr,.mp-tbl td{display:block;width:100%}
  .mp-tbl tbody tr.data-row{filter:none;margin-bottom:12px}
  .mp-tbl tbody tr.data-row:hover{transform:none}
  .mp-tbl tr.data-row td{
    border:none!important;border-radius:0!important;box-shadow:none!important;
    background:#fff!important;
  }
  .mp-tbl tr.data-row td:first-child{border-radius:14px 14px 0 0!important;padding-top:14px}
  .mp-tbl tr.data-row td:last-child{border-radius:0 0 14px 14px!important;padding-bottom:14px}
  .mp-tbl tr.data-row{
    border:1px solid rgba(0,0,0,.08)!important;border-radius:14px!important;
    box-shadow:var(--shadow-card)!important;overflow:hidden;
  }
  .mp-tbl tr.data-row:hover{box-shadow:var(--shadow-card-hover)!important}
  #mzone.dark .mp-tbl tr.data-row td{background:#151D2E!important}
  #mzone.dark .mp-tbl tr.data-row{border-color:rgba(255,255,255,.1)!important}
  .mp-tbl td{
    padding:10px 14px;border:none;border-right:none!important;
    display:flex;justify-content:space-between;align-items:flex-start;gap:12px;
  }
  .mp-tbl td::before{
    content:attr(data-label);font-size:10px;font-weight:800;color:var(--dim);
    text-transform:uppercase;letter-spacing:.06em;flex-shrink:0;padding-top:2px;
  }
  .mp-tbl td.col-site::before,
  .mp-tbl td.col-action::before{display:none}
  .mp-tbl td.col-site{display:block;padding-bottom:6px}
  .mp-tbl td.col-action,.mp-tbl td.col-sample{flex-direction:column;align-items:stretch}
  .mp-tbl td.col-action::before,.mp-tbl td.col-sample::before{margin-bottom:6px}
  .site-col{min-width:0}
  .action-col,.price-col,.col-sample{text-align:left;width:100%}
  .btn-buy-split,.btn-view,.btn-sample,.btn-cart-add{max-width:none;width:100%}
  .action-stack{max-width:none}
  .zb-cart-bar-inner{flex-direction:column;align-items:stretch;padding:12px 0}
  .zb-cart-bar-actions{width:100%}
  .zb-cart-clear,.zb-cart-checkout{flex:1}
  .zb-cart-check{margin-right:0}
  .expand-row{display:none!important}
  /* Hide extra columns on mobile — compact cards */
  #mzone .col-link,#mzone .col-lang,#mzone .col-linkins,#mzone .col-spons,
  #mzone .col-crypto,#mzone .col-casino,#mzone .col-cbd,#mzone .col-linkip,
  #mzone .col-atype,#mzone .col-cstyle,#mzone .col-guide{display:none!important}
}
@media(max-width:720px){
  .hero-counter{flex-wrap:wrap;border-radius:14px}
  .hero-counter-cell{
    flex:1 1 50%;padding:18px 14px;
    border-right:none;border-bottom:1px solid rgba(255,255,255,.1);
  }
  .hero-counter-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)}
  .hero-counter-cell:nth-child(3),
  .hero-counter-cell:nth-child(4){border-bottom:none}
}
@media(max-width:640px){
  .gp-sec{padding:48px 0}
  .gp-sec-head{margin-bottom:28px}
  .steps-grid,.benefits-grid,.trust-grid{grid-template-columns:1fr}
  .hero h1{font-size:24px}
  .hero-counter{border-radius:12px}
  .hero-counter-cell{flex:1 1 100%;border-right:none!important;border-bottom:1px solid rgba(255,255,255,.1)!important}
  .hero-counter-cell:last-child{border-bottom:none!important}
  .pag{flex-direction:column;align-items:center;text-align:center}
  .results-right{width:100%;justify-content:flex-end}
  .modal{padding:24px 20px}
  .f-search-wrap{min-width:100%;max-width:none;flex:1 1 100%}
}

/* ── HERO: MODERN GRADIENT ─────────────────────────────────────────────── */
.hero{background:linear-gradient(165deg,#0f172a 0%,#1e1b4b 38%,#172554 72%,#0c1929 100%)}
.hero::before{background:
  radial-gradient(ellipse 90% 70% at 50% -10%,rgba(99,102,241,.22) 0%,transparent 55%),
  radial-gradient(ellipse 50% 50% at 15% 90%,rgba(34,211,238,.12) 0%,transparent 55%),
  radial-gradient(ellipse 50% 50% at 85% 90%,rgba(167,139,250,.10) 0%,transparent 55%),
  radial-gradient(ellipse 100% 40% at 50% 100%,rgba(99,102,241,.06) 0%,transparent 60%)}

/* ── MARKETPLACE ZONE: LIGHT (default) ───────────────────────────────── */
#mzone{
  background:linear-gradient(180deg,#EEF2FF 0%,#E8EDF4 40%,#F1F5F9 100%);
  color:#0F172A;
  --ink:#0F172A;
  --mid:#64748B;
  --dim:#94A3B8;
  --ghost:#475569;
  --bdr:rgba(0,0,0,.08);
  --bdr2:rgba(0,0,0,.06);
}
#mzone .mp-tbl{color:#0F172A}
#mzone .mp-tbl thead th{color:#64748B!important}
#mzone .metric-pill-val{color:#0F172A!important}
#mzone .metric-pill-lbl{color:#64748B!important;opacity:1!important}
#mzone .traffic-pill .metric-pill-val{color:#0F172A!important}
#mzone .traffic-pill .metric-pill-lbl{color:#64748B!important}
#mzone .ta-pill-lbl{color:#64748B!important}
#mzone .site-links{color:#475569!important}
#mzone .unlock-btn{color:#475569!important}
#mzone .btn-view{color:#A34E24!important;border-color:#A34E24!important;background:#fff!important}
#mzone .btn-view svg{color:#A34E24!important}
#mzone .btn-view:hover{color:#A34E24!important;border-color:#A34E24!important;background:#FFF7ED!important}
#mzone .btn-view.expanded{color:#A34E24!important;border-color:#A34E24!important;background:#FFF7ED!important}
#mzone .btn-sample{color:#4F46E5!important}
#mzone .nchip{color:#4F46E5!important}
#mzone .mp-tbl td::before{color:#64748B!important}
#mzone .filter-card-title{color:#0F172A!important}
#mzone .f-sel{color:#0F172A!important}
#mzone .f-search-wrap input{color:#0F172A!important}
#mzone .filter-card{background:rgba(255,255,255,.94);border-color:rgba(255,255,255,.9);box-shadow:var(--shadow-filter)}
#mzone .filter-card-head{background:linear-gradient(135deg,rgba(99,102,241,.14) 0%,rgba(34,211,238,.06) 50%,#fff 100%);border-bottom-color:rgba(0,0,0,.05)}
#mzone .filter-card-title{color:#0F172A}
#mzone .filter-ai-badge{color:#4F46E5}
#mzone .filter-card-hint{color:#64748B}
#mzone .filter-group-label{color:#64748B}
#mzone .filter-search-block{border-bottom-color:rgba(0,0,0,.06)}
#mzone .filter-chips-row{border-top-color:rgba(0,0,0,.06)}
#mzone .filter-chips-label{color:#64748B}
#mzone .fc{background:#F8FAFC;border-color:rgba(0,0,0,.1);color:#475569;box-shadow:0 1px 2px rgba(0,0,0,.04)}
#mzone .fc.on{background:linear-gradient(135deg,rgba(99,102,241,.14),rgba(34,211,238,.08));color:#4338CA}
#mzone .f-clear{border-color:rgba(0,0,0,.12);color:#64748B}
#mzone .f-sel{background-color:#F1F5F9!important;border-color:rgba(0,0,0,.13)!important;color:#0F172A!important}
#mzone .f-sel:hover,#mzone .f-sel:focus{border-color:rgba(99,102,241,.5)!important}
#mzone .f-search-wrap input{background:#F1F5F9!important;border-color:rgba(0,0,0,.13)!important;color:#0F172A!important}
#mzone .f-search-wrap input::placeholder{color:#94A3B8!important}
#mzone .f-search-ico svg{color:#94A3B8!important}
#mzone .filter-divider{background:rgba(0,0,0,.1)!important}
#mzone .fc{border-color:rgba(0,0,0,.15)!important;color:#475569!important}
#mzone .fc:hover{border-color:rgba(99,102,241,.5)!important;color:#0F172A!important}
#mzone .fc.on{background:rgba(99,102,241,.12)!important;border-color:rgba(99,102,241,.5)!important;color:#4338CA!important}
#mzone .f-clear{color:#94A3B8!important}
#mzone .f-clear:hover{color:#475569!important}
#mzone .mp-wrap{background:transparent}
#mzone .results-bar{background:#fff;border-color:rgba(0,0,0,.08)}
#mzone .mp-order-notice{background:linear-gradient(135deg,rgba(239,68,68,.14) 0%,rgba(254,226,226,.7) 100%)!important;border-color:rgba(220,38,38,.5)!important}
#mzone .mp-order-notice p{color:#334155!important;font-weight:500!important}
#mzone .mp-order-notice-lead{color:#B91C1C!important;font-weight:700!important}
#mzone .mp-order-notice strong{color:#0F172A!important;font-weight:700!important}
#mzone .results-txt{color:#475569!important}
#mzone .results-txt strong{color:#0F172A!important}
#mzone .pag-info{color:#64748B!important}
#mzone .pag-info strong{color:#334155!important}
#mzone .sort-sel{background-color:#FFFFFF!important;border-color:rgba(0,0,0,.12)!important;color:#0F172A!important}
#mzone .sort-sel:hover{border-color:rgba(99,102,241,.4)!important}
#mzone .tbl-wrap{background:linear-gradient(180deg,#fff,#F8FAFC)!important;border-color:rgba(0,0,0,.06)!important}
#mzone .mp-tbl thead th.sorted{color:#4338CA!important}
#mzone .mp-tbl tbody tr.data-row td{background:#fff!important}
#mzone .mp-tbl tbody tr.data-row:hover td{background:linear-gradient(180deg,#fff,#F0FDF9)!important}
#mzone .site-domain{color:#0F172A!important}
#mzone .site-pub-tier{background:rgba(15,23,42,.08)!important;color:#334155!important;border-color:rgba(0,0,0,.1)!important}
#mzone .unlock-btn{background:#F8FAFC!important;color:#64748B!important}
#mzone .metric-pill{background:linear-gradient(165deg,#fff,#F1F5F9)!important}
#mzone .mb-hi{background:linear-gradient(165deg,rgba(99,102,241,.16),rgba(99,102,241,.05))!important}
#mzone .mb-hi .metric-pill-val{color:#4338CA!important}
#mzone .mb-md .metric-pill-val{color:#b45309!important}
#mzone .mb-lo .metric-pill-val{color:#b91c1c!important}
#mzone .ta-pill{background:linear-gradient(165deg,#EFF6FF,#F8FAFC)!important}
#mzone .ta-pill-val{color:#334155!important}
#mzone .ctry{background:linear-gradient(165deg,#fff,#F8FAFC)!important}
#mzone .cname{color:#334155!important}
#mzone .lang-pill{background:#F1F5F9!important;color:#334155!important}
#mzone .expand-inner{background:linear-gradient(180deg,#1E293B,#0F172A)!important}
#mzone .exp-item{background:rgba(255,255,255,.05)!important}
#mzone .exp-item dd{color:#E2E8F0!important}
#mzone .exp-item dd.hi{color:#67E8F9!important}
#mzone .no-results{color:#94A3B8!important}
#mzone .no-results strong{color:#475569!important}
#mzone .pag{background:#fff;border-color:rgba(0,0,0,.08)}
#mzone .pag-info{color:#64748B}
#mzone .pag-info strong{color:#334155}
#mzone .pb{border-color:rgba(0,0,0,.12)!important;color:#64748B!important;background:#FFFFFF!important}
#mzone .pb:hover,#mzone .pb.on{border-color:rgba(99,102,241,.5)!important;color:#4338CA!important;background:rgba(99,102,241,.08)!important}

/* ── MARKETPLACE ZONE: DARK ───────────────────────────────────────────── */
#mzone.dark{
  background:var(--bg);
  color:var(--ink);
  --ink:#E2E8F0;
  --mid:#94A3B8;
  --dim:#64748B;
  --ghost:#475569;
  --bdr:rgba(255,255,255,.07);
  --bdr2:rgba(255,255,255,.04);
}
#mzone.dark .mp-tbl{color:var(--ink)}
#mzone.dark .metric-pill-val{color:#F1F5F9!important}
#mzone.dark .metric-pill-lbl{color:#B6C2D1!important;opacity:1!important}
#mzone.dark .traffic-pill .metric-pill-val{color:#F8FAFC!important}
#mzone.dark .traffic-pill .metric-pill-lbl{color:#B6C2D1!important}
#mzone.dark .mb-hi .metric-pill-lbl,#mzone.dark .mb-md .metric-pill-lbl,#mzone.dark .mb-lo .metric-pill-lbl{color:#B6C2D1!important}
#mzone.dark .filter-card{background:var(--card);border-color:var(--bdr);box-shadow:0 16px 48px rgba(0,0,0,.45),0 4px 12px rgba(0,0,0,.25)}
#mzone.dark .filter-card-head{background:linear-gradient(180deg,rgba(99,102,241,.08),transparent);border-bottom-color:var(--bdr)}
#mzone.dark .filter-card-title{color:#E6EDF3}
#mzone.dark .filter-card-hint{color:#8B949E}
#mzone.dark .filter-wrap{background:transparent;border:none;box-shadow:none}
#mzone.dark .filter-group-label{color:#8B949E}
#mzone.dark .filter-chips-label{color:#8B949E}
#mzone.dark .fc{background:rgba(255,255,255,.04)}
#mzone.dark .btn-sample{color:#A5F3FC!important;background:linear-gradient(165deg,rgba(99,102,241,.2),rgba(99,102,241,.06))!important;border-color:rgba(99,102,241,.5)!important}
#mzone.dark .btn-buy-price{background:rgba(0,0,0,.55)!important;color:#F8FAFC!important}
#mzone.dark .ta-pill{background:linear-gradient(165deg,rgba(99,102,241,.2),rgba(255,255,255,.05))!important}
#mzone.dark .ta-pill-lbl{color:#B6C2D1!important}
#mzone.dark .filter-chips-row{border-top-color:var(--bdr)}
#mzone.dark .f-sel{background-color:var(--card)!important;border-color:var(--bdr)!important;color:var(--ink)!important}
#mzone.dark .f-sel:hover,#mzone.dark .f-sel:focus{border-color:rgba(99,102,241,.4)!important}
#mzone.dark .f-search-wrap input{background:var(--card)!important;border-color:var(--bdr)!important;color:var(--ink)!important}
#mzone.dark .f-search-wrap input::placeholder{color:var(--ghost)!important}
#mzone.dark .f-search-ico svg{color:var(--ghost)!important}
#mzone.dark .filter-divider{background:var(--bdr)!important}
#mzone.dark .fc{border-color:var(--bdr)!important;color:var(--dim)!important}
#mzone.dark .fc:hover{border-color:rgba(99,102,241,.35)!important;color:var(--ink)!important}
#mzone.dark .fc.on{background:rgba(99,102,241,.08)!important;border-color:rgba(99,102,241,.4)!important;color:var(--g)!important}
#mzone.dark .f-clear{color:var(--ghost)!important}
#mzone.dark .mp-wrap{background:transparent}
#mzone.dark .results-bar{background:var(--card);border-color:var(--bdr)}
#mzone.dark .mp-order-notice{background:linear-gradient(135deg,rgba(239,68,68,.16) 0%,rgba(127,29,29,.25) 100%)!important;border-color:rgba(248,113,113,.45)!important}
#mzone.dark .mp-order-notice-ico{background:rgba(239,68,68,.22);color:#FCA5A5}
#mzone.dark .mp-order-notice p{color:rgba(255,255,255,.72)!important;font-weight:500!important}
#mzone.dark .mp-order-notice-lead{color:#FCA5A5!important;font-weight:700!important}
#mzone.dark .mp-order-notice strong{color:#F1F5F9!important;font-weight:700!important}
#mzone.dark .results-txt{color:var(--mid)}
#mzone.dark .results-txt strong{color:#E6EDF3}
#mzone.dark .sort-sel{background-color:var(--card)!important;border-color:var(--bdr)!important;color:var(--ink)!important}
#mzone.dark .filter-card{background:rgba(17,24,39,.92)!important;border-color:rgba(255,255,255,.08)!important}
#mzone.dark .filter-ai-badge{color:#67E8F9!important;border-color:rgba(99,102,241,.4)!important}
#mzone.dark .tbl-wrap{background:linear-gradient(180deg,#1E2844,#1A2238)!important;border-color:var(--bdr)!important;box-shadow:0 24px 64px rgba(0,0,0,.45)!important}
#mzone.dark .mp-tbl thead th{color:#64748B!important}
#mzone.dark .mp-tbl thead th:hover{color:#CBD5E1!important}
#mzone.dark .mp-tbl thead th.sorted{color:var(--g)!important}
#mzone.dark .mp-tbl tbody tr.data-row td{
  background:#151D2E!important;
  border-color:rgba(255,255,255,.08)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
#mzone.dark .mp-tbl tbody tr.data-row:hover td{
  background:linear-gradient(180deg,#1a2438,#15202f)!important;
  border-color:rgba(99,102,241,.25)!important;
}
#mzone.dark .site-domain{color:#F8FAFC!important}
#mzone.dark .site-pub-tier{background:rgba(255,255,255,.06)!important;color:#94A3B8!important;border-color:rgba(255,255,255,.08)!important}
#mzone.dark .site-verified{border-color:#151D2E!important}
#mzone.dark .metric-pill{background:linear-gradient(165deg,#1c2638,#1E2844)!important;border-color:rgba(255,255,255,.1)!important}
#mzone.dark .mb-hi{background:linear-gradient(165deg,rgba(99,102,241,.22),rgba(99,102,241,.06))!important}
#mzone.dark .mb-hi .metric-pill-val{color:#67E8F9!important}
#mzone.dark .mb-md .metric-pill-val{color:#fcd34d!important}
#mzone.dark .mb-lo .metric-pill-val{color:#fecaca!important}
#mzone.dark .ta-pill{background:linear-gradient(165deg,rgba(99,102,241,.15),rgba(255,255,255,.04))!important;border-color:rgba(99,102,241,.2)!important}
#mzone.dark .ta-pill-val{color:#F1F5F9!important}
#mzone.dark .ctry{background:linear-gradient(165deg,#1c2638,#1E2844)!important;border-color:rgba(255,255,255,.1)!important;max-width:100%}
#mzone.dark .cname{color:#E2E8F0!important}
#mzone.dark .lt-do{color:#A5F3FC!important;background:linear-gradient(135deg,rgba(99,102,241,.25),rgba(99,102,241,.08))!important}
#mzone.dark .lang-pill{background:rgba(255,255,255,.08)!important;color:#F1F5F9!important;border-color:rgba(255,255,255,.12)!important}
#mzone.dark .btn-view{background:rgba(255,255,255,.06)!important;border-color:#C4693A!important;color:#FDBA74!important}
#mzone.dark .btn-view svg{color:#FDBA74!important}
#mzone.dark .btn-view:hover{background:rgba(163,78,36,.18)!important;border-color:#FDBA74!important;color:#FED7AA!important}
#mzone.dark .btn-view.expanded{background:rgba(163,78,36,.22)!important;border-color:#FDBA74!important;color:#FED7AA!important}
#mzone.dark .unlock-btn{background:rgba(255,255,255,.08)!important;color:#E2E8F0!important;border-color:rgba(255,255,255,.12)!important}
#mzone.dark .unlock-btn:hover{color:#A5F3FC!important}
#mzone.dark .reveal-preview-pill{background:rgba(255,255,255,.06)!important;border-color:rgba(255,255,255,.1)!important}
#mzone.dark .reveal-preview-pill-label{color:#8B949E!important}
#mzone.dark .reveal-preview-pill-val{color:#E6EDF3!important}
#mzone.dark .reveal-preview-bar{background:linear-gradient(135deg,rgba(99,102,241,.12),rgba(99,102,241,.04))!important;border-color:rgba(99,102,241,.25)!important}
#mzone.dark .reveal-preview-bar-text{color:#C9D1D9!important}
#mzone.dark .reveal-preview-meter{background:rgba(255,255,255,.06)!important;color:#E6EDF3!important}
#mzone.dark .unlock-btn-done{background:rgba(99,102,241,.15)!important;color:#A5F3FC!important}
#mzone.dark .unlock-btn-locked{background:rgba(255,255,255,.06)!important;color:#94A3B8!important}
#mzone.dark .btn-sample-locked{background:rgba(255,255,255,.06)!important;color:#64748B!important}
#mzone.dark .site-domain-revealed{color:#A5F3FC!important}
#mzone.dark .site-links{background:rgba(99,102,241,.12)!important;color:#D1DDE9!important}
#mzone.dark .site-links svg{color:#67E8F9!important}
#mzone.dark .nchip{color:#A5F3FC!important}
#mzone.dark .exp-item dt{color:#9CA3AF!important}
#mzone.dark .stg-feat{color:#d9f99d!important}
#mzone.dark .stg-inst{color:#A5F3FC!important}
#mzone.dark .stg-cryp{color:#c4b5fd!important}
#mzone.dark .stg-spons{color:#fcd34d!important}
#mzone.dark .stg-new{color:#93c5fd!important;border-color:rgba(34,211,238,.45)!important}
#mzone.dark .expand-inner{background:linear-gradient(180deg,#0F172A,#0C1225)!important;border-color:rgba(99,102,241,.2)!important}
#mzone.dark .exp-item{background:rgba(255,255,255,.04)!important;border-color:rgba(255,255,255,.06)!important}
#mzone.dark .exp-item dd{color:#E2E8F0!important}
#mzone.dark .exp-item dd.hi{color:var(--g)!important}
#mzone.dark .filter-card{border-color:var(--bdr)!important;box-shadow:0 16px 48px rgba(0,0,0,.4)!important}
#mzone.dark .pag{background:var(--card);border-color:var(--bdr)}
#mzone.dark .pag-info{color:#8B949E}
#mzone.dark .pag-info strong{color:#E6EDF3}
#mzone.dark .pb{border-color:var(--bdr)!important;color:var(--dim)!important;background:transparent!important}
#mzone.dark .pb:hover,#mzone.dark .pb.on{border-color:rgba(99,102,241,.4)!important;color:var(--g)!important;background:rgba(99,102,241,.06)!important}

/* ── TOGGLE BUTTON ────────────────────────────────────────────────────── */
.mode-btn{
  display:inline-flex;align-items:center;gap:6px;
  height:36px;padding:0 14px;border-radius:10px;
  border:1.5px solid rgba(0,0,0,.08);background:#fff;
  color:#475569;font-size:12px;font-weight:700;
  transition:all .2s var(--ease-spring);cursor:pointer;flex-shrink:0;
  box-shadow:0 1px 3px rgba(15,23,42,.05);
}
.mode-btn:hover{border-color:rgba(99,102,241,.5);color:#0F172A;transform:translateY(-1px);box-shadow:0 4px 14px rgba(99,102,241,.1)}
.mode-btn svg{width:13px;height:13px}
#mzone.dark .mode-btn{border-color:var(--bdr)!important;background:var(--card)!important;color:var(--mid)!important}
#mzone.dark .mode-btn:hover{border-color:rgba(99,102,241,.4)!important;color:#fff!important}

/* ── Columns panel (Default / Advanced / Locked) ───────────────────────── */
.mkt-cols-wrap{position:relative}
.mkt-cols-badge{
  margin-left:6px;
  background:var(--grad);color:#0C1225;
  padding:2px 7px;border-radius:999px;
  font-size:9.5px;font-weight:900;letter-spacing:.02em;
  border:1px solid rgba(99,102,241,.25);
}
.mkt-cols-panel{
  position:fixed;
  width:min(300px,calc(100vw - 24px));
  max-height:min(55vh,420px);
  overflow:auto;
  background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 18px 60px rgba(15,23,42,.18),0 2px 10px rgba(15,23,42,.06);
  padding:12px;z-index:2147483647;
  backdrop-filter:blur(14px) saturate(1.2);
}

@media(max-width:980px){
  .mkt-cols-panel{left:12px;right:12px;width:auto}
}
.mkt-cols-ph{
  font-size:10px;font-weight:900;letter-spacing:.12em;
  text-transform:uppercase;color:#94A3B8;
  padding:8px 8px 6px;
}
.mkt-cols-title{
  font-size:12px;font-weight:900;letter-spacing:.02em;
  color:#0F172A;
  padding:2px 8px 8px;
}
.mkt-cols-item{
  display:flex;align-items:center;gap:8px;
  padding:8px;border-radius:10px;
  color:#0F172A;font-size:12px;font-weight:700;
}
.mkt-cols-item:hover{background:rgba(0,0,0,.03)}
.mkt-cols-item input{width:14px;height:14px;margin:0;accent-color:var(--g)}
.mkt-cols-item .locked{color:#94A3B8;font-weight:700}
#mzone.dark .mkt-cols-panel{background:var(--card);border-color:var(--bdr);box-shadow:0 18px 60px rgba(0,0,0,.45),0 2px 10px rgba(0,0,0,.25)}
#mzone.dark .mkt-cols-item{color:rgba(255,255,255,.82)}
#mzone.dark .mkt-cols-item:hover{background:rgba(255,255,255,.05)}
#mzone.dark .mkt-cols-ph{color:rgba(255,255,255,.35)}
#mzone.dark .mkt-cols-title{color:rgba(255,255,255,.9)}

/* Hide columns by class (no layout changes elsewhere) */
#mzone.hide-col-link .col-link,
#mzone.hide-col-lang .col-lang,
#mzone.hide-col-linkins .col-linkins,
#mzone.hide-col-spons .col-spons,
#mzone.hide-col-crypto .col-crypto,
#mzone.hide-col-casino .col-casino,
#mzone.hide-col-cbd .col-cbd,
#mzone.hide-col-linkip .col-linkip,
#mzone.hide-col-atype .col-atype,
#mzone.hide-col-cstyle .col-cstyle,
#mzone.hide-col-guide .col-guide,
#mzone.hide-col-niche .col-niche,
#mzone.hide-col-traffic .col-traffic,
#mzone.hide-col-dr .col-dr,
#mzone.hide-col-da .col-da,
#mzone.hide-col-ta .col-ta,
#mzone.hide-col-country .col-country,
#mzone.hide-col-sample .col-sample{
  display:none!important;
}

/* Also hide colgroup widths so Order column doesn't squeeze */
#mzone.hide-col-link col.colw-link,
#mzone.hide-col-lang col.colw-lang,
#mzone.hide-col-linkins col.colw-linkins,
#mzone.hide-col-spons col.colw-spons,
#mzone.hide-col-crypto col.colw-crypto,
#mzone.hide-col-casino col.colw-casino,
#mzone.hide-col-cbd col.colw-cbd,
#mzone.hide-col-linkip col.colw-linkip,
#mzone.hide-col-atype col.colw-atype,
#mzone.hide-col-cstyle col.colw-cstyle,
#mzone.hide-col-guide col.colw-guide,
#mzone.hide-col-niche col.colw-niche,
#mzone.hide-col-traffic col.colw-traffic,
#mzone.hide-col-dr col.colw-dr,
#mzone.hide-col-da col.colw-da,
#mzone.hide-col-ta col.colw-ta,
#mzone.hide-col-country col.colw-country,
#mzone.hide-col-sample col.colw-sample{
  display:none!important;
  width:0!important;min-width:0!important;
}

/* ── MOBILE ENHANCEMENTS ─────────────────────────────────────────────── */
@media(max-width:768px){
  .filter-card{position:relative;top:auto}
  .filter-dock{margin-top:12px;padding-bottom:6px}
  .filter-card-head{padding:14px 16px 12px}
  .filter-card-hint{font-size:11.5px;line-height:1.45}
  .results-bar{flex-direction:column;align-items:stretch;gap:10px;padding:12px 14px}
  .results-right{width:100%;justify-content:space-between;flex-wrap:wrap;gap:8px}
  .mp-wrap{padding:16px 0 36px}
  .cta-banner{padding:40px 16px}
  .cta-btns{flex-direction:column;width:100%;max-width:360px;margin:0 auto}
  .cta-btn-main,.cta-btn-sec{width:100%;height:44px}
  .pag{width:100%;box-sizing:border-box;padding:12px 14px}
  .reveal-limit-banner{flex-direction:column;text-align:center;padding:16px}
  .reveal-limit-banner-actions{width:100%;flex-direction:column}
  .reveal-limit-btn,.reveal-limit-btn-sec{width:100%;text-align:center;box-sizing:border-box}
}
@media(max-width:480px){
  .hero h1{font-size:clamp(22px,6vw,28px)!important}
  .hero-sub{font-size:14px;margin-bottom:24px}
  .hero-badge{font-size:10px;padding:4px 12px;margin-bottom:12px}
  .filter-ai-badge{display:none}
  .filter-group-row .f-sel{flex:1 1 100%}
  .fc{font-size:10.5px;padding:0 10px;height:32px}
  .mode-btn{height:34px;padding:0 10px;font-size:11px}
  .gp-sec-head h2{font-size:clamp(20px,5.5vw,26px)}
  .steps-grid,.benefits-grid,.trust-grid,.faq-list{gap:10px}
}
