        :root{
            --bg:#0e1325;
            --bg-deep:#060708;
            --panel:rgba(255,255,255,0.05);
            --panel-soft:rgba(255,255,255,0.025);
            --text:#f5f5f5;
            --muted:#a1a1a1;
            --muted-2:#7d7d7d;
            --line:rgba(255,255,255,0.12);
            --line-soft:rgba(255,255,255,0.08);
            --white:#ffffff;
            --shadow-outer:0 0 0 1px rgba(255,255,255,0.04), 0 20px 80px rgba(0,0,0,0.35);
            --radius-xl:34px;
            --radius-lg:24px;
            --radius-md:18px;
            --radius-sm:14px;
        }

        *{
            box-sizing:border-box;
        }

        html{
            scroll-behavior:smooth;
        }

        body{
            margin:0;
            font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            background:var(--bg);
            color:var(--text);
            overflow-x:hidden;
        }

        img{
            max-width:100%;
            display:block;
        }

        a{
            text-decoration:none;
            transition:all .25s ease;
        }

        .container-app{
            width:min(1240px, calc(100% - 24px));
            margin:0 auto;
        }

        .glass-card{
            background:var(--panel);
            border:1px solid rgba(255,255,255,0.06);
            box-shadow:var(--shadow-outer);
            border-radius:30px;
        }

        .section-space{
            padding:100px 0;
        }

        .section-title{
            font-size:44px;
            line-height:1.12;
            font-weight:400;
            letter-spacing:-0.8px;
            margin:0 0 14px;
            color:#f0f0f0;
        }

        .section-text{
            margin:0;
            max-width:680px;
            font-size:15px;
            line-height:1.75;
            color:var(--muted);
        }

        /* NAVBAR */
        .site-header{
            position:sticky;
            top:0;
            z-index:1050;
            padding:18px 0 0;
            backdrop-filter:blur(10px);
        }

        .navbar-shell{
            padding:14px 18px;
            border-radius:24px;
            background:rgba(255,255,255,0.04);
            border:1px solid rgba(255,255,255,0.06);
            box-shadow:0 10px 30px rgba(0,0,0,0.18);
        }

        .brand{
            display:flex;
            align-items:center;
            gap:12px;
            color:#fff;
        }

        .brand-logo{
            width:46px;
            height:46px;
            border-radius:14px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
        }

        .brand-logo img{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .brand-logo-text{
            width:100%;
            height:100%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:18px;
            font-weight:700;
            color:#fff;
        }

        .brand-name{
            font-size:18px;
            font-weight:600;
            letter-spacing:-0.2px;
            color:#f5f5f5;
            margin:0;
        }

        .nav-links{
            display:flex;
            align-items:center;
            gap:28px;
        }

        .nav-links a{
            color:#b9b9b9;
            font-size:14px;
            font-weight:500;
        }

        .nav-links a:hover{
            color:#ffffff;
        }

        .btn-download{
            height:48px;
            padding:0 22px;
            border:none;
            border-radius:16px;
            background:linear-gradient(180deg, #ffffff 0%, #e9e9e9 100%);
            color:#0b0b0b;
            font-size:14px;
            font-weight:600;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            box-shadow:0 10px 24px rgba(255,255,255,0.08);
        }

        .btn-download:hover{
            color:#0b0b0b;
            transform:translateY(-1px);
            box-shadow:0 14px 28px rgba(255,255,255,0.10);
        }

        .btn-outline-soft{
            height:56px;
            padding:0 22px;
            border-radius:18px;
            border:1px solid rgba(255,255,255,0.14);
            background:rgba(255,255,255,0.03);
            color:#f5f5f5;
            font-size:15px;
            font-weight:500;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
        }

        .btn-outline-soft:hover{
            background:rgba(255,255,255,0.05);
            color:#fff;
            border-color:rgba(255,255,255,0.22);
        }

        /* HERO */
        .hero-section{
            padding:34px 0 34px;
        }

        .hero-shell{
            padding:28px;
            border-radius:36px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.06);
            box-shadow:var(--shadow-outer);
        }

        .hero-grid{
            min-height:720px;
        }

        .hero-left{
            padding:54px 26px 54px 34px;
            display:flex;
            align-items:center;
        }

        .hero-copy{
            max-width:600px;
        }

        .hero-title{
            margin:0 0 18px;
            font-size:64px;
            line-height:1.03;
            font-weight:400;
            letter-spacing:-1.8px;
            color:#f0f0f0;
        }

        .hero-text{
            margin:0 0 34px;
            max-width:540px;
            font-size:16px;
            line-height:1.8;
            color:#a8a8a8;
        }

        .hero-actions{
            display:flex;
            align-items:center;
            gap:14px;
            flex-wrap:wrap;
            margin-bottom:34px;
        }

        .hero-stats{
            display:grid;
            grid-template-columns:repeat(3, minmax(0,1fr));
            gap:14px;
            max-width:560px;
        }

        .hero-stat{
            padding:18px 18px;
            border-radius:20px;
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.08);
        }

        .hero-stat h3{
            margin:0 0 6px;
            font-size:24px;
            font-weight:500;
            color:#fff;
            letter-spacing:-0.4px;
        }

        .hero-stat p{
            margin:0;
            font-size:13px;
            line-height:1.5;
            color:#9d9d9d;
        }

        .hero-right{
            padding:34px;
            display:flex;
            align-items:center;
            justify-content:center;
        }

                 .wallet-visual{
                min-height:auto;
                padding:16px;
                border-radius:24px;
            }

            .phone-mockup{
                width:100%;
                max-width:290px;
            }


        .txn-card{
            padding:14px 14px;
            border-radius:18px;
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.07);
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
        }

        .txn-card + .txn-card{
            margin-top:10px;
        }

        .txn-left{
            display:flex;
            align-items:center;
            gap:12px;
        }

        .txn-icon{
            width:42px;
            height:42px;
            border-radius:14px;
            display:flex;
            align-items:center;
            justify-content:center;
            background:rgba(255,255,255,0.06);
            color:#fff;
            flex-shrink:0;
        }

        .txn-info h6{
            margin:0 0 4px;
            font-size:14px;
            font-weight:500;
            color:#f2f2f2;
        }

        .txn-info p{
            margin:0;
            font-size:12px;
            color:#939393;
        }

        .txn-amount{
            font-size:14px;
            font-weight:600;
            color:#fff;
            white-space:nowrap;
        }

        .glow-orb,
        .glow-orb-2{
            position:absolute;
            border-radius:999px;
            filter:blur(20px);
            opacity:.22;
        }

        .glow-orb{
            width:180px;
            height:180px;
            background:#ffffff;
            top:40px;
            right:20px;
        }

        .glow-orb-2{
            width:140px;
            height:140px;
            background:#aab5ff;
            bottom:80px;
            left:40px;
        }

        /* BRAND STRIP */
        .brand-strip{
            padding:16px 24px;
            border-radius:24px;
            background:rgba(255,255,255,0.04);
            border:1px solid rgba(255,255,255,0.06);
            display:grid;
            grid-template-columns:repeat(4, minmax(0,1fr));
            gap:14px;
            margin-top:26px;
        }

        .brand-strip-item{
            height:64px;
            display:flex;
            align-items:center;
            justify-content:center;
            border-radius:18px;
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.05);
            color:#d5d5d5;
            font-size:14px;
            font-weight:500;
            letter-spacing:0.2px;
        }

        /* FEATURES */
        .feature-card{
            height:100%;
            padding:28px;
            border-radius:26px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.07);
            box-shadow:var(--shadow-outer);
        }

        .feature-icon{
            width:58px;
            height:58px;
            border-radius:18px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.08);
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:20px;
            color:#fff;
            font-size:22px;
        }

        .feature-card h3{
            margin:0 0 12px;
            font-size:22px;
            font-weight:400;
            letter-spacing:-0.4px;
            color:#f2f2f2;
        }

        .feature-card p{
            margin:0;
            font-size:14px;
            line-height:1.75;
            color:#a4a4a4;
        }

        /* SHOWCASE */
        .showcase-shell{
            padding:26px;
            border-radius:34px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.07);
            box-shadow:var(--shadow-outer);
        }

        .showcase-panel{
            padding:30px;
            border-radius:28px;
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.07);
            height:100%;
        }

        .showcase-panel h3{
            margin:0 0 12px;
            font-size:30px;
            font-weight:400;
            letter-spacing:-0.5px;
            color:#f0f0f0;
        }

        .showcase-panel p{
            margin:0 0 26px;
            font-size:15px;
            line-height:1.8;
            color:#a4a4a4;
        }

        .showcase-list{
            display:flex;
            flex-direction:column;
            gap:14px;
        }

        .showcase-item{
            display:flex;
            align-items:flex-start;
            gap:12px;
            padding:16px;
            border-radius:18px;
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.06);
        }

        .showcase-item i{
            font-size:18px;
            color:#ffffff;
            margin-top:2px;
        }

        .showcase-item h6{
            margin:0 0 6px;
            font-size:15px;
            font-weight:500;
            color:#f0f0f0;
        }

        .showcase-item p{
            margin:0;
            font-size:13px;
            line-height:1.65;
            color:#9f9f9f;
        }

        .wallet-preview-panel{
            height:100%;
            min-height:540px;
            border-radius:28px;
            background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border:1px solid rgba(255,255,255,0.08);
            padding:26px;
            position:relative;
            overflow:hidden;
        }

        .wallet-mini-card{
            border-radius:24px;
            padding:22px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.08);
            margin-bottom:18px;
        }

        .wallet-mini-card small{
            display:block;
            margin-bottom:10px;
            color:#9f9f9f;
            font-size:12px;
        }

        .wallet-mini-card h4{
            margin:0;
            font-size:34px;
            font-weight:500;
            letter-spacing:-0.7px;
            color:#fff;
        }

        .mini-grid{
            display:grid;
            grid-template-columns:repeat(2, minmax(0,1fr));
            gap:14px;
        }

        .mini-tile{
            padding:18px;
            border-radius:20px;
            background:rgba(255,255,255,0.04);
            border:1px solid rgba(255,255,255,0.07);
        }

        .mini-tile h6{
            margin:0 0 6px;
            font-size:14px;
            font-weight:500;
            color:#ececec;
        }

        .mini-tile p{
            margin:0;
            font-size:12px;
            color:#969696;
            line-height:1.6;
        }

        /* FAQ */
        .faq-shell{
            padding:26px;
            border-radius:34px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.07);
            box-shadow:var(--shadow-outer);
        }

        .accordion-item{
            background:rgba(255,255,255,0.03);
            border:1px solid rgba(255,255,255,0.07);
            border-radius:22px !important;
            overflow:hidden;
            margin-bottom:14px;
        }

        .accordion-button{
            background:rgba(255,255,255,0.02);
            color:#f2f2f2;
            font-size:16px;
            font-weight:500;
            padding:22px 22px;
            box-shadow:none !important;
        }

        .accordion-button:not(.collapsed){
            background:rgba(255,255,255,0.05);
            color:#fff;
        }

        .accordion-button::after{
            filter:invert(1) grayscale(1);
        }

        .accordion-body{
            color:#a6a6a6;
            font-size:14px;
            line-height:1.8;
            padding:0 22px 22px;
            background:rgba(255,255,255,0.03);
        }

        /* CTA */
        .cta-shell{
            padding:42px 34px;
            border-radius:34px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.07);
            box-shadow:var(--shadow-outer);
            text-align:center;
        }

        .cta-shell h2{
            margin:0 0 14px;
            font-size:42px;
            line-height:1.12;
            font-weight:400;
            letter-spacing:-0.8px;
            color:#f0f0f0;
        }

        .cta-shell p{
            max-width:700px;
            margin:0 auto 28px;
            color:#a5a5a5;
            font-size:15px;
            line-height:1.8;
        }

        .cta-actions{
            display:flex;
            justify-content:center;
            gap:14px;
            flex-wrap:wrap;
        }

        /* FOOTER */
        .site-footer{
            padding:28px 0 46px;
        }

        .footer-shell{
            padding:20px 24px;
            border-radius:24px;
            background:rgba(255,255,255,0.04);
            border:1px solid rgba(255,255,255,0.06);
        }

        .footer-copy{
            color:#999;
            font-size:13px;
            margin:0;
        }

        .footer-links{
            display:flex;
            gap:18px;
            flex-wrap:wrap;
        }

        .footer-links a{
            color:#bcbcbc;
            font-size:13px;
        }

        .footer-links a:hover{
            color:#fff;
        }

        /* RESPONSIVE */
        @media (max-width: 1199.98px){
            .hero-title{
                font-size:54px;
            }

            .hero-left{
                padding:44px 20px 44px 24px;
            }

            .hero-right{
                padding:24px;
            }

            .wallet-visual{
                min-height:580px;
            }
        }

        @media (max-width: 991.98px){
            .site-header{
                position:relative;
            }

            .navbar-shell{
                padding:14px 16px;
            }

            .nav-links{
                display:none;
            }

            .hero-grid{
                min-height:auto;
            }

            .hero-left{
                padding:38px 22px 22px;
            }

            .hero-right{
                padding:22px 22px 30px;
            }

            .hero-title{
                font-size:46px;
            }

            .brand-strip{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }

            .section-space{
                padding:80px 0;
            }

            .section-title{
                font-size:36px;
            }
        }

        @media (max-width: 767.98px){
            .container-app{
                width:min(100% - 16px, 100%);
            }

            .hero-shell{
                padding:14px;
                border-radius:24px;
            }

            .hero-title{
                font-size:36px;
                letter-spacing:-1px;
            }

            .hero-text{
                font-size:14px;
            }

            .hero-stats{
                grid-template-columns:1fr;
            }

            .wallet-visual{
                min-height:auto;
                padding:16px;
                border-radius:24px;
            }

            .phone-mockup{
                width:100%;
                max-width:290px;
            }

            .brand-strip{
                grid-template-columns:1fr;
                padding:14px;
                border-radius:20px;
            }

            .section-title{
                font-size:30px;
            }

            .showcase-shell,
            .faq-shell,
            .cta-shell{
                padding:18px;
                border-radius:24px;
            }

            .showcase-panel,
            .wallet-preview-panel{
                padding:20px;
                border-radius:22px;
            }

            .cta-shell h2{
                font-size:30px;
            }

            .footer-shell{
                text-align:center;
            }

            .footer-links{
                justify-content:center;
                margin-top:14px;
            }

        }

        @media (max-width: 480px){
            .hero-title{
                font-size:31px;
            }

            .section-title{
                font-size:27px;
            }

            .brand-name{
                font-size:16px;
            }

            .brand-logo{
                width:42px;
                height:42px;
            }

            .hero-left{
                padding:28px 16px 16px;
            }

            .hero-right{
                padding:16px 16px 20px;
            }

            .phone-screen{
                min-height:auto;
            }
        }
