/* ================================================================
   Morvexium — Bold neon green on black, Cash App inspired
   Font: Outfit
   Lime green #00E013 + black, aggressive, youthful
   ================================================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
    --bg:#050505;--bg2:#0D0D0D;--bg3:#161616;--surface:rgba(255,255,255,.04);--surface2:rgba(255,255,255,.07);
    --lime:#00E013;--lime-hover:#00C411;--lime-dim:rgba(0,224,19,.06);--lime-glow:rgba(0,224,19,.12);--lime-muted:rgba(0,224,19,.5);
    --white:#F5F5F5;--text:#C8C8C8;--muted:#9A9A9A;--dim:#6E6E6E;
    --red:#FF4444;--red-bg:rgba(255,68,68,.06);
    --border:rgba(255,255,255,.07);--border2:rgba(255,255,255,.12);
    --font:'Outfit',system-ui,sans-serif;
    --r:14px;--r-sm:8px;--r-lg:20px;--r-pill:50px;
    --ease:.2s ease;
}

html{scroll-behavior:smooth}
body{font-family:var(--font);font-size:16px;line-height:1.6;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--lime);text-decoration:none;transition:color var(--ease)}
a:hover{color:var(--lime-hover)}
.bx{max-width:1080px;margin:0 auto;padding:0 24px}

h1,h2,h3,h4{font-weight:800;line-height:1.1;color:var(--white);letter-spacing:-.03em}
h1{font-size:clamp(36px,6vw,64px)}
h2{font-size:clamp(26px,4vw,44px)}
h3{font-size:clamp(17px,2.5vw,22px)}
p{margin-bottom:16px}

/* ── Buttons ── */
.go{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 30px;font-family:var(--font);font-size:14px;font-weight:700;border-radius:var(--r-pill);border:none;cursor:pointer;transition:all var(--ease);text-decoration:none}
.go-lime{background:var(--lime);color:var(--bg)}.go-lime:hover{background:var(--lime-hover);color:var(--bg);box-shadow:0 0 32px var(--lime-glow);transform:translateY(-2px)}
.go-dark{background:var(--surface2);color:var(--white);border:1px solid var(--border2)}.go-dark:hover{border-color:var(--lime);color:var(--lime)}
.go-sm{padding:10px 22px;font-size:13px}
.go-ghost{background:none;color:var(--muted);padding:8px;font-size:13px;font-weight:600}.go-ghost:hover{color:var(--lime)}

/* ── Header (bold, minimal) ── */
.bar{position:sticky;top:0;z-index:100;background:rgba(5,5,5,.92);backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.bar-flex{display:flex;align-items:center;justify-content:space-between;height:64px}
.bar-logo{font-size:22px;font-weight:800;color:var(--white)!important;letter-spacing:-.04em}
.bar-logo em{font-style:normal;color:var(--lime)}
.bar-nav{display:flex;gap:4px}
.bar-link{padding:7px 14px;border-radius:var(--r-sm);font-size:13px;font-weight:600;color:var(--muted);transition:all var(--ease);text-transform:uppercase;letter-spacing:.5px}
.bar-link:hover{color:var(--white);background:var(--surface)}
.bar-link.on{color:var(--lime)}
.bar-menu{display:none;background:none;border:none;cursor:pointer;width:28px;height:28px;position:relative}
.bar-menu span{position:absolute;left:3px;width:22px;height:2px;background:var(--white);border-radius:2px;transition:all .2s}
.bar-menu span:first-child{top:9px}.bar-menu span:last-child{top:17px}
@media(max-width:768px){.bar-nav{display:none;position:absolute;top:64px;left:0;right:0;flex-direction:column;background:var(--bg2);padding:16px 24px;border-bottom:1px solid var(--border)}.bar-nav.open{display:flex}.bar-menu{display:block}}

/* ── Sections ── */
.part{padding:88px 0}
.part-alt{background:var(--bg2)}
.part-lime{background:var(--lime-dim)}
.part-head{max-width:600px;margin-bottom:48px}
.part-head.mid{text-align:center;margin-left:auto;margin-right:auto}
.part-head p{font-size:17px;margin-top:10px}
.label{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:var(--lime);margin-bottom:14px}

/* ── Hero (bold, centered) ── */
.hero{padding:120px 0 88px;text-align:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-30%;left:35%;width:30%;height:60%;background:radial-gradient(circle,var(--lime-glow),transparent 70%);pointer-events:none}
.hero .bx{position:relative;z-index:1}
.hero h1{max-width:700px;margin:0 auto 20px}
.hero h1 em{font-style:normal;color:var(--lime)}
.hero p{font-size:19px;max-width:480px;margin:0 auto 36px;color:var(--muted)}
.hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
@media(max-width:768px){.hero{padding:80px 0 56px}}

/* ── Platform Cards (wide, bold) ── */
.broker-stack{display:flex;flex-direction:column;gap:10px}
.bk{display:flex;align-items:center;gap:20px;background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:22px 24px;transition:all var(--ease)}
.bk:hover{border-color:var(--lime-muted);box-shadow:0 0 24px var(--lime-dim)}
.bk.hot{border-color:var(--lime);background:var(--lime-dim)}
.bk-num{width:32px;height:32px;background:var(--surface2);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;color:var(--muted);flex-shrink:0}
.bk.hot .bk-num{background:var(--lime);color:var(--bg)}
.bk-logo{width:48px;height:32px;display:flex;align-items:center;flex-shrink:0}
.bk-logo img{height:20px;width:auto;max-width:44px;object-fit:contain;opacity:.85}
.bk-info{flex:1;min-width:0}
.bk-name{font-size:16px;font-weight:800;color:var(--white);display:flex;align-items:center;gap:8px}
.bk-tag{font-size:9px;font-weight:700;background:var(--lime);color:var(--bg);padding:2px 8px;border-radius:var(--r-pill);text-transform:uppercase}
.bk-meta{font-size:11px;color:var(--dim);margin-top:2px}
.bk-score{font-size:28px;font-weight:800;color:var(--lime);flex-shrink:0}
.bk-btns{display:flex;gap:6px;flex-shrink:0}
@media(max-width:768px){.bk{flex-wrap:wrap}.bk-btns{width:100%}.bk-btns a{flex:1;text-align:center;justify-content:center}}

/* ── Stats bar ── */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border-radius:var(--r);overflow:hidden}
.stat{background:var(--bg);padding:32px;text-align:center}
.stat-val{font-size:36px;font-weight:800;color:var(--lime);line-height:1}
.stat-lbl{font-size:11px;color:var(--dim);margin-top:6px;text-transform:uppercase;letter-spacing:.5px}
@media(max-width:600px){.stats{grid-template-columns:1fr 1fr}}

/* ── Review page ── */
.rv-hero{padding:48px 0;border-bottom:1px solid var(--border)}
.rv-row{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.rv-icon{width:56px;height:56px;background:var(--surface2);border:1px solid var(--border);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center}
.rv-icon img{max-width:36px;max-height:36px;object-fit:contain;opacity:.85}
.rv-grid{display:grid;grid-template-columns:1fr 260px;gap:48px;padding:48px 0}
.rv-main h2{margin-top:32px;margin-bottom:10px;font-size:22px}.rv-main h2:first-child{margin-top:0}
.rv-main p{color:var(--text)}
.rv-main ul,.rv-main ol{color:var(--text);padding-left:20px;margin-bottom:16px}
.rv-main li{margin-bottom:6px}
.rv-side{position:sticky;top:84px}
.rv-box{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:24px}

.procon{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:24px 0}
.pro{background:var(--lime-dim);border:1px solid rgba(0,224,19,.1);padding:20px;border-radius:var(--r-sm)}
.con{background:var(--red-bg);border:1px solid rgba(255,68,68,.1);padding:20px;border-radius:var(--r-sm)}
.pro h4{color:var(--lime);font-size:13px;margin-bottom:8px}.con h4{color:var(--red);font-size:13px;margin-bottom:8px}
.pro ul,.con ul{list-style:none}.pro li,.con li{font-size:13px;padding:3px 0}
.pro li{color:rgba(0,224,19,.7)}.con li{color:rgba(255,68,68,.7)}

.tbl{width:100%;border-collapse:collapse;margin:20px 0}
.tbl th,.tbl td{padding:10px 14px;text-align:left;border-bottom:1px solid var(--border);font-size:13px}
.tbl th{color:var(--dim);font-weight:600;width:40%;background:var(--surface)}
.tbl td{color:var(--white)}

@media(max-width:768px){.rv-grid{grid-template-columns:1fr}.rv-side{position:static}.rv-row{flex-direction:column;align-items:flex-start}.procon{grid-template-columns:1fr}}

/* ── Breadcrumbs ── */
.crumbs{padding:10px 0;font-size:13px;color:var(--dim)}
.crumbs a{color:var(--dim)}.crumbs a:hover{color:var(--lime)}
.crumbs span{margin:0 6px}

/* ── Footer (bold, minimal) ── */
.ft{background:var(--bg2);border-top:1px solid var(--border);padding:40px 0 0}
.ft-row{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:28px;padding-bottom:24px}
.ft-brand p{font-size:12px;line-height:1.7;margin-top:10px;color:var(--dim)}
.ft-brand a{color:var(--dim)}.ft-brand a:hover{color:var(--lime)}
.ft-group h4{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--dim);margin-bottom:12px}
.ft-group a{display:block;font-size:12px;color:var(--muted);margin-bottom:7px}.ft-group a:hover{color:var(--lime)}
.ft-fine{border-top:1px solid var(--border);padding:14px 0;font-size:11px;color:var(--dim);line-height:1.7}
.ft-fine a{color:var(--muted)}.ft-fine a:hover{color:var(--lime)}
.ft-fine i{color:var(--red);margin-right:3px;font-size:10px}
.ft-18{background:var(--red);color:#fff;font-size:8px;font-weight:700;padding:2px 5px;border-radius:3px;margin:0 3px}
@media(max-width:768px){.ft-row{grid-template-columns:1fr}}

/* ── Cookie ── */
.ck{position:fixed;bottom:0;left:0;right:0;background:var(--bg2);border-top:1px solid var(--border);box-shadow:0 -4px 20px rgba(0,0,0,.4);z-index:10000;padding:14px 0}
.ck-flex{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.ck p{font-size:13px;color:var(--muted);margin:0}.ck a{color:var(--lime)}
.ck-btns{display:flex;gap:6px;flex-shrink:0}
.ck-opts{padding:8px 0;border-top:1px solid var(--border)}
.ck-opts label{display:inline-block;padding:3px 10px;font-size:13px;color:var(--muted);cursor:pointer}
.ck-opts input{accent-color:var(--lime);margin-right:3px}
.ck-dot{position:fixed;bottom:16px;left:16px;width:36px;height:36px;background:var(--bg3);color:var(--lime);border:1px solid var(--border);border-radius:50%;font-size:13px;cursor:pointer;z-index:9999;display:flex;align-items:center;justify-content:center}.ck-dot:hover{box-shadow:0 0 12px var(--lime-glow)}

/* ── Articles ── */
.edu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.edu-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:all var(--ease)}
.edu-card:hover{border-color:var(--lime-muted);box-shadow:0 0 16px var(--lime-dim)}
.edu-bar{height:3px;background:linear-gradient(to right,var(--lime),#00B4D8)}
.edu-body{padding:22px}
.edu-tag{font-size:10px;font-weight:700;text-transform:uppercase;color:var(--lime);letter-spacing:.5px;margin-bottom:8px}
.edu-card h3{font-size:15px;margin-bottom:6px}.edu-card h3 a{color:var(--white)}.edu-card h3 a:hover{color:var(--lime)}
.edu-card p{font-size:13px;color:var(--dim);margin:0}
@media(max-width:768px){.edu-grid{grid-template-columns:1fr}}

/* ── Legal ── */
.legal{padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid var(--border)}
.legal:last-of-type{border:none}
.legal h2{font-size:18px;margin-bottom:8px;display:flex;align-items:center;gap:10px}
.legal h2 i{color:var(--lime);font-size:15px}
.legal p{color:var(--text);margin-bottom:8px;font-size:15px}
.legal ul{color:var(--text);padding-left:20px;margin-bottom:8px;font-size:14px}
.legal li{margin-bottom:4px}

/* ── Utils ── */
.text-center{text-align:center}
