@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #000000;
    --bg-soft: #050505;
    --bg-elevated: #0a0a0a;
    --glass-1: rgba(255,255,255,0.045);
    --glass-2: rgba(255,255,255,0.07);
    --glass-3: rgba(255,255,255,0.10);
    --rim: rgba(255,255,255,0.10);
    --rim-strong: rgba(255,255,255,0.18);
    --text: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    --green: #2ecc71;
    --amber: #f5a623;
    --red: #ff5a5a;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ambient orbs */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.06; background: #fff; }
.orb-1 { width: 600px; height: 600px; top: -200px; left: -120px; }
.orb-2 { width: 520px; height: 520px; bottom: -200px; right: -140px; }

a { color: inherit; text-decoration: none; }

/* ===== Login ===== */
.login-wrap { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card {
    width: 100%; max-width: 400px;
    background: var(--glass-1); border: 1px solid var(--rim);
    border-radius: var(--radius-lg); padding: 36px 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.login-brand img { width: 40px; height: 40px; }
.login-brand .bt { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
.login-brand .bs { font-size: 12px; color: var(--text-muted); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 7px; }
.field input {
    width: 100%; padding: 13px 15px;
    background: var(--glass-1); border: 1px solid var(--rim);
    border-radius: var(--radius-sm); color: var(--text);
    font-family: inherit; font-size: 14px;
    transition: border-color 0.15s;
}
.field input:focus { outline: none; border-color: var(--rim-strong); }
.login-err { color: var(--red); font-size: 13px; min-height: 18px; margin-top: 6px; text-align: center; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: var(--radius-sm);
    border: 1px solid transparent; font-family: inherit;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all 0.15s; white-space: nowrap;
}
.btn-primary { background: var(--text); color: #000; }
.btn-primary:hover { filter: brightness(0.92); }
.btn-block { width: 100%; }
.btn-ghost { background: var(--glass-1); border-color: var(--rim); color: var(--text); }
.btn-ghost:hover { background: var(--glass-2); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn[disabled] { opacity: 0.5; cursor: default; }
.btn img { width: 16px; height: 16px; }

/* ===== App shell ===== */
.app { display: none; position: relative; z-index: 1; min-height: 100vh; }
.app.active { display: block; }
.topbar {
    position: sticky; top: 0; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--rim);
}
.topbar .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.topbar .brand img { width: 30px; height: 30px; }
.topbar .who { display: flex; align-items: center; gap: 14px; }
.topbar .who .nm { font-size: 13px; color: var(--text-secondary); }
.role-pill { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 10px; border-radius: var(--radius-pill); border: 1px solid var(--rim); color: var(--text-secondary); }
.container { max-width: 980px; margin: 0 auto; padding: 28px 20px 64px; }

/* ===== Cards / stats ===== */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin-bottom: 22px; }
.stat {
    background: var(--glass-1); border: 1px solid var(--rim);
    border-radius: var(--radius-md); padding: 18px; backdrop-filter: blur(12px);
}
.stat .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stat .lbl { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.4px; }
.stat .ico { width: 34px; height: 34px; opacity: 0.9; }
.stat .ico img { width: 100%; height: 100%; object-fit: contain; }
.stat .val { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }
.stat .sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.pos { color: var(--green); } .neg { color: var(--red); } .amb { color: var(--amber); }

.panel { background: var(--glass-1); border: 1px solid var(--rim); border-radius: var(--radius-md);
    margin-bottom: 18px; overflow: hidden; backdrop-filter: blur(12px); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; border-bottom: 1px solid var(--rim); flex-wrap: wrap; }
.panel-head h3 { font-size: 15px; font-weight: 700; }
.panel-head .hint { font-size: 12px; color: var(--text-muted); }
.panel-body { padding: 16px 20px; }

/* ref link box */
.ref-box { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ref-input { flex: 1; min-width: 220px; padding: 11px 14px; background: var(--glass-2);
    border: 1px solid var(--rim); border-radius: var(--radius-sm); color: var(--text);
    font-family: 'SF Mono', ui-monospace, monospace; font-size: 13px; }

/* table */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td { padding: 12px 16px; text-align: left; font-size: 14px; }
.tbl th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; }
.tbl tbody tr { border-top: 1px solid var(--rim); }
.muted { color: var(--text-muted); font-size: 13px; }
.badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 700; }
.badge.green { background: rgba(46,204,113,0.16); color: var(--green); }
.badge.gray { background: var(--glass-2); color: var(--text-secondary); }
.badge.amber { background: rgba(245,166,35,0.16); color: var(--amber); }
.badge.red { background: rgba(255,90,90,0.16); color: var(--red); }

.row-input { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.row-input .field { margin: 0; }
.note { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin-top: 10px; }
.empty { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: 14px; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
    background: var(--bg-elevated); border: 1px solid var(--rim-strong); color: var(--text);
    padding: 12px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
    opacity: 0; transition: all 0.3s; z-index: 100; pointer-events: none; box-shadow: 0 12px 40px rgba(0,0,0,0.6); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: var(--red); }

@media (max-width: 600px) {
    .container { padding: 18px 14px 60px; }
    .stat .val { font-size: 22px; }
    .panel-body { padding: 14px 16px; }
    .tbl th, .tbl td { padding: 10px 12px; font-size: 13px; }
}

/* ============================================================
   LANDING
   ============================================================ */
.landing { position: relative; z-index: 1; display: none; }
body.show-landing .landing { display: block; }

/* Nav */
.lp-nav { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.6); border-bottom: 1px solid var(--rim); }
.lp-nav-in { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 14px 22px; }
.lp-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; }
.lp-logo img { width: 28px; height: 28px; }
.lp-logo b { font-weight: 800; }
.lp-nav-links { display: flex; gap: 26px; }
.lp-nav-links a { font-size: 14px; color: var(--text-secondary); transition: color 0.15s; }
.lp-nav-links a:hover { color: var(--text); }
.btn-lg { padding: 15px 26px; font-size: 15px; border-radius: var(--radius-md); }

/* Hero */
.hero { max-width: 1140px; margin: 0 auto; padding: 70px 22px 40px; }
.hero-in { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary);
    background: var(--glass-1); border: 1px solid var(--rim); padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 22px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(46,204,113,0.6)} 70%{box-shadow:0 0 0 8px rgba(46,204,113,0)} 100%{box-shadow:0 0 0 0 rgba(46,204,113,0)} }
.hero-h1 { font-size: 56px; line-height: 1.04; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero-h1 .grad { background: linear-gradient(100deg,#fff 0%,#fff 45%,rgba(255,255,255,0.5) 55%,#fff 65%,#fff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust div:not(.sep) { display: flex; flex-direction: column; }
.hero-trust b { font-size: 22px; font-weight: 800; }
.hero-trust span { font-size: 12.5px; color: var(--text-muted); }
.hero-trust .sep { width: 1px; height: 34px; background: var(--rim); }

/* fade-up entrance */
.hero-copy > * { opacity: 0; transform: translateY(16px); animation: fadeUp 0.7s forwards; }
.hero-copy > *:nth-child(1){animation-delay:.05s} .hero-copy > *:nth-child(2){animation-delay:.15s}
.hero-copy > *:nth-child(3){animation-delay:.25s} .hero-copy > *:nth-child(4){animation-delay:.35s}
.hero-copy > *:nth-child(5){animation-delay:.45s}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===== Laptop mockup ===== */
.hero-mock { position: relative; perspective: 1600px; }
.mock-glow { position: absolute; inset: -10% -5% -20% -5%; z-index: 0;
    background: radial-gradient(60% 60% at 60% 30%, rgba(255,255,255,0.10), transparent 70%); filter: blur(20px); }
.laptop { position: relative; z-index: 1; transform: rotateY(-14deg) rotateX(6deg); transform-style: preserve-3d;
    animation: floatLap 6s ease-in-out infinite; }
@keyframes floatLap { 0%,100%{ transform: rotateY(-14deg) rotateX(6deg) translateY(0) } 50%{ transform: rotateY(-11deg) rotateX(5deg) translateY(-10px) } }
.laptop-screen { background: linear-gradient(160deg,#0c0c0c,#000); border: 1px solid var(--rim-strong);
    border-radius: 16px 16px 4px 4px; padding: 14px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04) inset; }
.laptop-base { height: 14px; margin: 0 -6%; background: linear-gradient(180deg,#1a1a1a,#0a0a0a);
    border: 1px solid var(--rim); border-top: none; border-radius: 0 0 16px 16px;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.7); position: relative; }
.laptop-base::after { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
    width: 18%; height: 5px; background: rgba(255,255,255,0.08); border-radius: 0 0 6px 6px; }

.mock-ui { background: var(--bg-soft); border: 1px solid var(--rim); border-radius: 10px; padding: 14px; min-height: 280px; }
.mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-brand { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; }
.mock-brand img { width: 18px; height: 18px; }
.mock-pill { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 9px; border-radius: var(--radius-pill); border: 1px solid var(--rim); color: var(--text-secondary); }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mock-stat { background: var(--glass-1); border: 1px solid var(--rim); border-radius: 9px; padding: 9px 10px; }
.mock-stat .ml { display: block; font-size: 9.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.mock-stat .mv { font-size: 17px; font-weight: 800; letter-spacing: -0.4px; }
.mock-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; padding: 0 2px; margin-bottom: 14px; }
.mock-chart span { flex: 1; background: linear-gradient(180deg,rgba(255,255,255,0.5),rgba(255,255,255,0.12));
    border-radius: 4px 4px 0 0; transform-origin: bottom; animation: barGrow 0.9s ease forwards; transform: scaleY(0); }
.mock-chart span:nth-child(1){animation-delay:.5s} .mock-chart span:nth-child(2){animation-delay:.58s}
.mock-chart span:nth-child(3){animation-delay:.66s} .mock-chart span:nth-child(4){animation-delay:.74s}
.mock-chart span:nth-child(5){animation-delay:.82s} .mock-chart span:nth-child(6){animation-delay:.9s}
.mock-chart span:nth-child(7){animation-delay:.98s} .mock-chart span:nth-child(8){animation-delay:1.06s}
@keyframes barGrow { to { transform: scaleY(1); } }
.mock-rows { display: flex; flex-direction: column; gap: 7px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px;
    background: var(--glass-1); border: 1px solid var(--rim); border-radius: 8px; padding: 8px 11px; }
.mock-row span:first-child { color: var(--text-secondary); font-family: 'SF Mono', ui-monospace, monospace; font-size: 12px; }

/* ===== Sections ===== */
.sec { max-width: 1140px; margin: 0 auto; padding: 64px 22px; }
.sec-h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; text-align: center; margin-bottom: 12px; }
.sec-lead { text-align: center; color: var(--text-secondary); font-size: 16px; max-width: 600px; margin: 0 auto 40px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: none; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { position: relative; background: var(--glass-1); border: 1px solid var(--rim); border-radius: var(--radius-lg);
    padding: 28px 24px; transition: transform 0.25s, border-color 0.25s; }
.step:hover { transform: translateY(-4px); border-color: var(--rim-strong); }
.step-n { position: absolute; top: 18px; right: 22px; font-size: 32px; font-weight: 800; color: rgba(255,255,255,0.08); }
.step-ico { width: 44px; height: 44px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); }

/* Programs */
.programs { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.prog { position: relative; background: var(--glass-1); border: 1px solid var(--rim); border-radius: var(--radius-lg);
    padding: 30px 28px; display: flex; flex-direction: column; }
.prog-feat { border-color: var(--rim-strong); background: var(--glass-2); }
.prog-tag { position: absolute; top: 16px; right: 18px; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--text-secondary); background: var(--glass-3); border: 1px solid var(--rim);
    padding: 4px 11px; border-radius: var(--radius-pill); }
.prog-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.prog-head img { width: 40px; height: 40px; }
.prog-head h3 { font-size: 22px; font-weight: 800; }
.prog-price { margin-bottom: 20px; }
.prog-price b { font-size: 34px; font-weight: 800; letter-spacing: -1px; }
.prog-price span { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.prog-list { list-style: none; margin-bottom: 24px; flex: 1; }
.prog-list li { position: relative; padding: 9px 0 9px 26px; font-size: 14px; color: var(--text-secondary);
    border-top: 1px solid var(--rim); }
.prog-list li:first-child { border-top: none; }
.prog-list li::before { content: ''; position: absolute; left: 4px; top: 14px; width: 10px; height: 6px;
    border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.disclaimer-line { text-align: center; color: var(--text-muted); font-size: 12.5px; margin-top: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Numbers */
.sec-numbers { padding-top: 20px; padding-bottom: 20px; }
.numbers { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
    background: var(--glass-1); border: 1px solid var(--rim); border-radius: var(--radius-lg); padding: 36px 24px; }
.num { text-align: center; }
.num b { display: block; font-size: 44px; font-weight: 800; letter-spacing: -1.5px; }
.num span { font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--glass-1); border: 1px solid var(--rim); border-radius: var(--radius-md); padding: 4px 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-size: 15px; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--text-muted); font-weight: 400; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 0 18px; font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* Footer */
.lp-foot { border-top: 1px solid var(--rim); margin-top: 30px; }
.lp-foot-in { max-width: 1140px; margin: 0 auto; padding: 28px 22px 10px; display: flex; align-items: center; justify-content: space-between; }
.lp-foot-note { max-width: 1140px; margin: 0 auto; padding: 0 22px 40px; font-size: 13px; color: var(--text-muted); }

/* ===== Login modal ===== */
.modal { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 400px; background: var(--bg-elevated);
    border: 1px solid var(--rim-strong); border-radius: var(--radius-lg); padding: 32px 30px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8); animation: fadeUp 0.35s; }
.modal-x { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border: none;
    background: var(--glass-2); color: var(--text-secondary); border-radius: 50%; font-size: 22px; cursor: pointer; }
.modal-x:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 920px) {
    .hero-in { grid-template-columns: 1fr; gap: 36px; }
    .hero-mock { order: -1; max-width: 460px; margin: 0 auto; }
    .hero-h1 { font-size: 44px; }
    .lp-nav-links { display: none; }
    .steps, .programs { grid-template-columns: 1fr; }
    .numbers { grid-template-columns: repeat(2,1fr); gap: 28px; }
    .sec-h2 { font-size: 30px; }
}
@media (max-width: 480px) {
    .hero { padding-top: 40px; }
    .hero-h1 { font-size: 36px; }
    .num b { font-size: 36px; }
    .hero-trust { gap: 14px; }
}

/* role toggle in register modal */
.role-toggle { display: flex; gap: 8px; }
.role-opt { flex: 1; padding: 11px; background: var(--glass-1); border: 1px solid var(--rim);
    border-radius: var(--radius-sm); color: var(--text-secondary); font-family: inherit; font-size: 14px;
    font-weight: 600; cursor: pointer; transition: all 0.15s; }
.role-opt.active { background: var(--text); color: #000; border-color: var(--text); }
.login-err.ok { color: var(--green); }


/* ===== WL-PROMO-V1 — White Label section on partners landing ===== */

.wl-nav-pill {
    padding: 6px 12px !important;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,209,102,0.12), rgba(255,138,61,0.08));
    border: 1px solid rgba(255,209,102,0.32);
    color: #ffd166 !important;
    font-weight: 600;
}
.wl-nav-pill:hover { background: linear-gradient(135deg, rgba(255,209,102,0.20), rgba(255,138,61,0.14)); }

.prog-wl {
    background: linear-gradient(180deg, rgba(255,209,102,0.04), rgba(255,138,61,0.02)) !important;
    border-color: rgba(255,209,102,0.30) !important;
    position: relative;
}
.prog-tag-wl {
    background: linear-gradient(135deg, #ffd166, #ff8a3d) !important;
    color: #1a1a1a !important;
}

.sec-wl {
    background: linear-gradient(180deg, #050505 0%, #000 100%);
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
}
.sec-wl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,138,61,0.12), transparent 55%);
    pointer-events: none;
}
.sec-wl-in {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
@media (max-width: 860px) { .sec-wl-in { grid-template-columns: 1fr; gap: 40px; } }

.sec-wl-copy h2 {
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 14px 0 18px;
}
.sec-wl-copy h2 .grad-wl {
    background: linear-gradient(135deg, #ffd166, #ff8a3d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sec-wl-copy p {
    color: #a8a8b0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 0 22px;
}
.sec-wl-list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.sec-wl-list li {
    color: #d0d0d8;
    font-size: 15px;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}
.sec-wl-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd166, #ff8a3d);
    box-shadow: 0 0 0 3px rgba(255,209,102,0.10);
}

.sec-wl-art {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-wl-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 18px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.sec-wl-card-1 {
    transform: rotate(-4deg) translate(-30px, -40px);
    background: linear-gradient(135deg, rgba(255,209,102,0.14), rgba(255,138,61,0.06));
    border-color: rgba(255,209,102,0.40);
    color: #fff;
}
.sec-wl-card-2 {
    transform: rotate(3deg) translate(40px, 60px);
    color: #b8b8c0;
    font-size: 14px;
    font-weight: 500;
}
.sec-wl-glow {
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,138,61,0.25), transparent 60%);
    filter: blur(40px);
    z-index: -1;
}
