 :root {
            --brand: #481088;
            --brand-2: #7a2bc9;
            --brand-3: #a855f7;
            --accent: #f09028;
            --accent-2: #f7a63c;
            --ink: #241541;
            --ink-2: #15132b;
            --muted: #8a7ba6;
            --muted-2: #6b5d86;
            --line: #ece9ff;
            --bg: #f5f3fc;
            --glass: rgba(255, 255, 255, .66);
            --glass-line: rgba(255, 255, 255, .95);
            --field: rgba(255, 255, 255, .82);
            --ok: #1d9e75;
            --err: #d64545;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html,
        body {
            min-height: 100%
        }

        body {
            font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
            color: var(--ink);
            background: var(--bg);
            position: relative;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased
        }

        /* ===== soft light washes ===== */
        .washes {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none
        }

        .washes span {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            animation: drift 20s ease-in-out infinite
        }

        .w1 {
            width: 620px;
            height: 620px;
            background: #c9a8f5;
            opacity: .72;
            top: -220px;
            left: -140px
        }

        .w2 {
            width: 560px;
            height: 560px;
            background: #ffc79b;
            opacity: .62;
            bottom: -220px;
            right: -120px;
            animation-duration: 24s
        }

        .w3 {
            width: 430px;
            height: 430px;
            background: #a5c8ff;
            opacity: .42;
            top: 38%;
            left: 44%;
            animation-duration: 28s
        }

        .w4 {
            width: 380px;
            height: 380px;
            background: #f7a63c;
            opacity: .3;
            top: 8%;
            right: 16%;
            animation-duration: 26s
        }

        @keyframes drift {

            0%,
            100% {
                transform: translate(0, 0) scale(1)
            }

            50% {
                transform: translate(48px, -42px) scale(1.14)
            }
        }

        .grid-lines {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: .5;
            background-image: linear-gradient(rgba(72, 16, 136, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(72, 16, 136, .05) 1px, transparent 1px);
            background-size: 54px 54px;
            -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 40%, #000, transparent 78%);
            mask-image: radial-gradient(ellipse 65% 60% at 50% 40%, #000, transparent 78%)
        }

        /* ===== layout ===== */
        .wrap {
            position: relative;
            z-index: 3;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1.02fr .98fr;
            align-items: center;
            gap: 30px;
            padding: 40px 4vw
        }

        @media(max-width:980px) {
            .wrap {
                grid-template-columns: 1fr;
                padding: 26px 20px
            }

            .left {
                display: none
            }
        }

        /* ===== left ===== */
        .left {
            max-width: 520px;
            justify-self: center
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--glass);
            border: 1px solid var(--glass-line);
            border-radius: 40px;
            padding: 6px 15px 6px 6px;
            margin-bottom: 26px;
            box-shadow: 0 6px 18px rgba(72, 16, 136, .08);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px)
        }

        .badge .mk {
            width: 27px;
            height: 27px;
            border-radius: 9px;
            background: linear-gradient(140deg, var(--brand-2), var(--brand));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800
        }

        .badge span {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--muted-2)
        }

        .badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: ping 1.8s infinite
        }

        @keyframes ping {
            0% {
                box-shadow: 0 0 0 0 rgba(240, 144, 40, .55)
            }

            70% {
                box-shadow: 0 0 0 8px rgba(240, 144, 40, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(240, 144, 40, 0)
            }
        }

        .left h1 {
            font-size: 47px;
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -1.6px;
            color: var(--ink);
            margin-bottom: 14px
        }

        .left h1 .hl {
            background: linear-gradient(100deg, var(--brand-2), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

        .left .sub {
            font-size: 16px;
            color: var(--muted-2);
            line-height: 1.65;
            max-width: 400px;
            margin-bottom: 38px
        }

        /* ===== wallet panel ===== */
        .wallet {
            position: relative;
            border-radius: 26px;
            padding: 26px 28px 24px;
            overflow: hidden;
            color: #fff;
            background: linear-gradient(135deg, #350c66 0%, var(--brand) 40%, var(--brand-2) 100%);
            box-shadow: 0 28px 60px rgba(72, 16, 136, .36);
            animation: rise .8s cubic-bezier(.2, .8, .2, 1) .1s both
        }

        @keyframes rise {
            from {
                opacity: 0;
                transform: translateY(22px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .wallet::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            right: -110px;
            bottom: -140px;
            background: radial-gradient(circle, rgba(247, 166, 60, .4), transparent 70%);
            pointer-events: none
        }

        .wallet .shine {
            position: absolute;
            top: 0;
            left: -60%;
            width: 42%;
            height: 100%;
            transform: skewX(-18deg);
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .2), transparent);
            animation: shine 6s ease-in-out infinite;
            pointer-events: none
        }

        @keyframes shine {
            0% {
                left: -60%
            }

            55%,
            100% {
                left: 130%
            }
        }

        .wallet .top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 22px;
            position: relative;
            z-index: 2
        }

        .wallet .top .ic {
            width: 34px;
            height: 34px;
            border-radius: 11px;
            background: rgba(255, 255, 255, .16);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px
        }

        .wallet .top .lbl {
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: .04em
        }

        .wallet .top .pill {
            margin-left: auto;
            font-size: 11px;
            font-weight: 700;
            background: rgba(247, 166, 60, .22);
            color: var(--accent-2);
            border: 1px solid rgba(247, 166, 60, .38);
            padding: 5px 11px;
            border-radius: 20px
        }

        .wallet .bal {
            position: relative;
            z-index: 2;
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -1.8px;
            line-height: 1
        }

        .wallet .bal-l {
            position: relative;
            z-index: 2;
            font-size: 12px;
            color: rgba(255, 255, 255, .72);
            margin-top: 6px;
            margin-bottom: 22px
        }

        .wallet .split {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 26px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, .16)
        }

        .wallet .split .k {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 3px
        }

        .wallet .split .v {
            font-size: 16px;
            font-weight: 800;
            letter-spacing: -.4px
        }

        .wallet .split .v.pending {
            color: var(--accent-2)
        }

        .wallet .split .bank {
            margin-left: auto;
            align-self: flex-end;
            font-size: 11.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, .8);
            display: inline-flex;
            align-items: center;
            gap: 6px
        }

        /* ===== live store marquee ===== */
        .stores {
            margin-top: 16px;
            background: var(--glass);
            border: 1px solid var(--glass-line);
            border-radius: 20px;
            padding: 16px 0 14px;
            box-shadow: 0 14px 34px rgba(72, 16, 136, .1);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            overflow: hidden
        }

        .stores .head {
            display: flex;
            align-items: baseline;
            gap: 8px;
            padding: 0 20px 12px
        }

        .stores .head b {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -.6px;
            color: var(--ink)
        }

        .stores .head span {
            font-size: 12px;
            font-weight: 600;
            color: var(--muted)
        }

        .stores .track {
            position: relative;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
        }

        .stores .row {
            display: flex;
            gap: 28px;
            width: max-content;
            animation: scroll 20s linear infinite
        }

        .stores:hover .row {
            animation-play-state: paused
        }

        @keyframes scroll {
            to {
                transform: translateX(-50%)
            }
        }

        .stores .row span {
            font-size: 16px;
            font-weight: 800;
            letter-spacing: -.3px;
            color: #b9aed0;
            white-space: nowrap;
            transition: color .2s
        }

        .stores .row span:hover {
            color: var(--brand-2)
        }

        .stores .foot {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
            padding: 14px 20px 0;
            margin-top: 12px;
            border-top: 1px solid rgba(72, 16, 136, .1)
        }

        .stores .foot div {
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 7px
        }

        .stores .foot i {
            color: var(--accent);
            font-size: 13px
        }

        .stores .foot b {
            color: var(--ink);
            font-weight: 800
        }

        /* ===== card ===== */
        .right {
            display: flex;
            align-items: center;
            justify-content: center
        }

        .card {
            width: 100%;
            max-width: 440px;
            background: var(--glass);
            border: 1px solid var(--glass-line);
            border-radius: 26px;
            padding: 34px 32px;
            box-shadow: 0 30px 70px rgba(72, 16, 136, .16);
            -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
            transform-style: preserve-3d;
            transition: transform .25s ease;
            animation: cardin .7s cubic-bezier(.2, .8, .2, 1) both
        }

        @keyframes cardin {
            from {
                opacity: 0;
                transform: translateY(26px) scale(.97)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .mark-m {
            display: none
        }

        .card h2 {
            font-size: 25px;
            font-weight: 800;
            letter-spacing: -.7px;
            margin-bottom: 5px
        }

        .card .csub {
            font-size: 13.5px;
            color: var(--muted);
            margin-bottom: 24px
        }

        .fld {
            position: relative;
            margin-bottom: 14px
        }

        .fld input {
            width: 100%;
            height: 62px;
            background: var(--field);
            border: 1px solid rgba(72, 16, 136, .13);
            border-radius: 15px;
            padding: 25px 46px 9px 46px;
            color: var(--ink);
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            outline: none;
            transition: .22s
        }

        .fld input::placeholder {
            color: transparent
        }

        .fld input:hover {
            border-color: rgba(72, 16, 136, .22)
        }

        .fld input:focus {
            background: #fff;
            border-color: var(--brand-2);
            box-shadow: 0 0 0 4px rgba(122, 43, 201, .1)
        }

        .fld label {
            position: absolute;
            left: 46px;
            top: 21px;
            color: var(--muted);
            font-size: 14.5px;
            font-weight: 500;
            pointer-events: none;
            transition: .2s
        }

        .fld input:focus+label,
        .fld input.filled+label,
        .fld input:not(:placeholder-shown)+label,
        .fld input:-webkit-autofill+label {
            top: 11px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .09em;
            text-transform: uppercase;
            color: var(--brand-2)
        }

        /* keep the glass look when Chrome autofills */
        .fld input:-webkit-autofill,
        .fld input:-webkit-autofill:hover,
        .fld input:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 60px #fff inset;
            -webkit-text-fill-color: var(--ink);
            caret-color: var(--ink)
        }

        .fld .lead {
            position: absolute;
            left: 17px;
            top: 31px;
            transform: translateY(-50%);
            color: var(--muted);
            font-size: 17px;
            transition: color .2s
        }

        .fld input:focus~.lead {
            color: var(--brand-2)
        }

        .fld .eye {
            position: absolute;
            right: 14px;
            top: 31px;
            transform: translateY(-50%);
            background: none;
            border: 0;
            color: var(--muted);
            cursor: pointer;
            font-size: 16px;
            padding: 4px;
            line-height: 1
        }

        .fld .eye:hover {
            color: var(--brand-2)
        }

        .ferr {
            color: var(--err);
            font-size: 11.5px;
            font-weight: 600;
            margin-top: 6px;
            min-height: 2px;
            padding-left: 4px
        }

        .row-x {
            display: flex;
            justify-content: flex-end;
            margin: 2px 0 20px
        }

        .row-x a {
            color: var(--brand-2);
            font-size: 12.5px;
            font-weight: 700;
            text-decoration: none
        }

        .row-x a:hover {
            color: var(--brand)
        }

        .btn {
            position: relative;
            width: 100%;
            height: 56px;
            border: 0;
            border-radius: 15px;
            cursor: pointer;
            overflow: hidden;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            color: #fff;
            font-size: 15.5px;
            font-weight: 700;
            font-family: inherit;
            box-shadow: 0 14px 30px rgba(72, 16, 136, .3);
            transition: transform .15s, box-shadow .15s
        }

        .btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(72, 16, 136, .38)
        }

        .btn:active:not(:disabled) {
            transform: translateY(0)
        }

        .btn:disabled {
            opacity: .6;
            cursor: not-allowed
        }

        .btn .spin {
            width: 19px;
            height: 19px;
            border: 2.5px solid rgba(255, 255, 255, .38);
            border-top-color: #fff;
            border-radius: 50%;
            display: inline-block;
            vertical-align: -4px;
            animation: sp .7s linear infinite
        }

        @keyframes sp {
            to {
                transform: rotate(360deg)
            }
        }

        .btn .rip {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .38);
            transform: translate(-50%, -50%);
            animation: rip .6s ease-out;
            pointer-events: none
        }

        @keyframes rip {
            from {
                width: 0;
                height: 0;
                opacity: .55
            }

            to {
                width: 460px;
                height: 460px;
                opacity: 0
            }
        }

        .msg {
            text-align: center;
            font-size: 12.5px;
            font-weight: 600;
            margin-top: 14px;
            min-height: 2px
        }

        .msg.error {
            color: var(--err)
        }

        .msg.success {
            color: var(--ok)
        }

        .alt {
            text-align: center;
            color: var(--muted);
            font-size: 13px;
            font-weight: 500;
            margin-top: 22px
        }

        .alt a {
            color: var(--ink);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid var(--accent)
        }

        .trust {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 22px;
            padding-top: 18px;
            border-top: 1px solid rgba(72, 16, 136, .09)
        }

        .trust span {
            font-size: 11px;
            font-weight: 600;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 5px
        }

        .trust i {
            color: var(--accent);
            font-size: 13px
        }

        @media(max-width:980px) {
            .card {
                padding: 28px 22px;
                border-radius: 22px
            }

            .mark-m {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-bottom: 22px
            }

            .mark-m .mk {
                width: 38px;
                height: 38px;
                border-radius: 12px;
                background: linear-gradient(140deg, var(--brand-2), var(--brand));
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 800;
                font-size: 18px
            }

            .mark-m b {
                font-size: 19px;
                font-weight: 800;
                letter-spacing: -.3px
            }

            .brand img {
                height: 36px;
                width: auto;
                display: block
            }

            .card h2 {
                font-size: 22px
            }
        }

        @media(max-width:400px) {
            .trust {
                gap: 12px
            }

            .trust span {
                font-size: 10px
            }
        }

        @media(prefers-reduced-motion:reduce) {

            .washes span,
            .fc,
            .card,
            .badge .dot {
                animation: none !important
            }
        }
        .badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.ksAlert-stack { position: fixed; top: 20px; right: 20px; z-index: 1080; display: flex; flex-direction: column; gap: 12px; }
        .ksAlert { --accent: #6b7280; position: relative; display: flex; align-items: center; gap: 12px; width: 340px; max-width: calc(100vw - 40px); padding: 12px 14px; background: #1f2937; color: #f3f4f6; border-radius: 14px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.28); overflow: hidden; opacity: 0; transform: translateX(24px) scale(.98); transition: opacity .28s ease, transform .28s ease; }
        .ksAlert.show { opacity: 1; transform: translateX(0) scale(1); }
        .ksAlert.hide { opacity: 0; transform: translateX(24px) scale(.98); }
        .ksAlert .ksAlert-icon { flex-shrink: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 15px; }
        .ksAlert .ksAlert-msg { flex: 1; margin: 0; font-size: 14px; line-height: 1.35; font-weight: 500; }
        .ksAlert .ksAlert-close { flex-shrink: 0; border: 0; background: transparent; color: #9ca3af; font-size: 18px; line-height: 1; cursor: pointer; padding: 0 2px; transition: color .15s ease; }
        .ksAlert .ksAlert-close:hover { color: #fff; }
        .ksAlert .ksAlert-bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--accent); transform-origin: left; animation: ksAlert-countdown linear forwards; }
        @keyframes ksAlert-countdown { from { transform: scaleX(1); } to { transform: scaleX(0); } }
        .ksAlert.success { --accent: #22c55e; }
        .ksAlert.danger { --accent: #ef4444; }
        .ksAlert.warning { --accent: #f59e0b; }
        .ksAlert.info { --accent: #3b82f6; }