
        /* ===== TOKENS ===== */
        :root {
            --orange:   #EF5B2F;
            --orange-d: #C94720;
            --navy:     #21324B;
            --navy-l:   #2D4360;
            --yellow:   #F3E53A;
            --bg:       #F7F5F2;
            --white:    #FFFFFF;
            --muted:    #6B7A8D;
            --border:   rgba(33,50,75,0.10);
            --shadow:   0 4px 24px rgba(33,50,75,0.09);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--navy);
            min-height: 100vh;
        }

        /* ===== HEADER ===== */
        header {
            background: var(--navy);
            border-bottom: 3px solid var(--orange);
            padding: 0 2rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-hex {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
        }
        .logo-icon {
            color: var(--color-primary);
            font-size: .5rem;
            width: 45px;
        }

        .brand-info .brand-name {
            font-family: 'Syne', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
        }

        .brand-info .brand-name span { color: var(--yellow); }

        .brand-info .brand-sub {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .country-select {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            color: #fff;
            padding: 6px 12px;
            border-radius: 7px;
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            outline: none;
        }

        .btn-home {
            background: var(--yellow);
            color: var(--navy);
            border: none;
            padding: 7px 16px;
            border-radius: 7px;
            font-size: 13px;
            font-weight: 500;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: background .18s;
        }

        .btn-home:hover { background: #e8d92e; }

        /* ===== LAYOUT ===== */
        .page-body {
            display: grid;
            grid-template-columns: 1fr 440px 1fr;
            gap: 2rem;
            padding: 3rem 2rem;
            max-width: 1240px;
            margin: 0 auto;
            align-items: center;
            min-height: calc(100vh - 64px);
        }

        /* ===== SIDE CARDS ===== */
        .side-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feat-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1.3rem 1.4rem;
            position: relative;
            overflow: hidden;
            transition: transform .2s;
        }

        .feat-card:hover { transform: translateY(-2px); }

        .feat-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: var(--orange);
            border-radius: 4px 0 0 4px;
        }

        .feat-card.right-accent::before {
            left: auto;
            right: 0;
            border-radius: 0 4px 4px 0;
        }

        .feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(239,91,47,0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .feat-card h4 {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .feat-card p {
            font-size: 12.5px;
            color: var(--muted);
            line-height: 1.55;
        }

        /* ===== LOGIN CARD ===== */
        .login-card {
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .card-top {
            background: var(--navy);
            padding: 2rem 2rem 1.8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card-top::before {
            content: '';
            position: absolute;
            top: -30px; right: -30px;
            width: 100px; height: 100px;
            border-radius: 50%;
            background: var(--yellow);
            opacity: 0.08;
        }

        .card-top::after {
            content: '';
            position: absolute;
            bottom: -20px; left: 20px;
            width: 70px; height: 70px;
            border-radius: 50%;
            background: var(--orange);
            opacity: 0.12;
        }

        .card-top-stripe {
            height: 4px;
            background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 100%);
            margin: -2rem -2rem 1.5rem;
        }

        .shield-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            border: 2px solid rgba(243,229,58,0.35);
            background: rgba(243,229,58,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 24px;
            position: relative;
            z-index: 1;
        }

        .card-top h2 {
            font-family: 'Syne', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .card-top h2 span { color: var(--yellow); }

        .card-top p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }

        .card-body-inner { padding: 1.6rem 2rem 2rem; }

        /* ===== ALERTS ===== */
        .alert {
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 13.5px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 1.2rem;
        }

        .alert-danger { background: #FEF0ED; border: 1px solid rgba(239,91,47,0.25); color: #8B2C10; }
        .alert-success { background: #EDFAF3; border: 1px solid rgba(34,197,94,0.25); color: #15653A; }

        /* ===== TABS ===== */
        .auth-tabs {
            display: flex;
            border-bottom: 1.5px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .tab-btn {
            flex: 1;
            background: none;
            border: none;
            padding: 10px 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            border-bottom: 2.5px solid transparent;
            margin-bottom: -1.5px;
            transition: color .18s, border-color .18s;
        }

        .tab-btn.active {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        /* ===== FORM ===== */
        .form-group { margin-bottom: 1rem; }

        .form-label {
            font-size: 11.5px;
            font-weight: 500;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
        }

        .form-label i { color: var(--orange); font-size: 12px; }

        .form-input {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: 9px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: var(--navy);
            background: var(--bg);
            outline: none;
            transition: border-color .18s, background .18s;
        }

        .form-input:focus {
            border-color: var(--orange);
            background: var(--white);
        }

        .form-input::placeholder { color: #b0bac7; }

        .password-wrap {
            position: relative;
        }

        .password-wrap .form-input { padding-right: 44px; }

        .toggle-pass {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            font-size: 14px;
            padding: 0;
        }

        /* ===== TOKEN INPUT ===== */
        .token-input {
            width: 100%;
            padding: 14px;
            text-align: center;
            font-size: 30px;
            letter-spacing: 14px;
            font-family: 'Courier New', monospace;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            background: var(--bg);
            color: var(--navy);
            outline: none;
            transition: border-color .18s;
        }

        .token-input:focus { border-color: var(--orange); background: var(--white); }

        /* ===== BUTTONS ===== */
        .btn-primary {
            width: 100%;
            padding: 12px;
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 1.2rem;
            transition: background .18s, transform .12s;
        }

        .btn-primary:hover { background: var(--orange-d); }
        .btn-primary:active { transform: scale(0.98); }

        .btn-success {
            width: 100%;
            padding: 12px;
            background: var(--navy);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 1.2rem;
            transition: background .18s;
        }

        .btn-success:hover { background: var(--navy-l); }

        .btn-outline {
            flex: 1;
            padding: 9px 12px;
            background: none;
            border: 1.5px solid var(--border);
            border-radius: 9px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: border-color .18s, background .18s;
            text-decoration: none;
        }

        .btn-outline:hover {
            border-color: var(--navy);
            background: rgba(33,50,75,0.04);
        }

        /* ===== NOTICE ===== */
        .notice {
            background: rgba(243,229,58,0.13);
            border: 1px solid rgba(243,229,58,0.45);
            border-radius: 9px;
            padding: 10px 14px;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: var(--navy);
        }

        .forgot-link {
            text-align: center;
            margin-top: 1rem;
        }

        .forgot-link a {
            color: var(--orange);
            text-decoration: none;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .forgot-link a:hover { text-decoration: underline; }

        .security-note {
            text-align: center;
            margin-top: 1.3rem;
            font-size: 11.5px;
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* ===== TOKEN VERIFY SECTION ===== */
        .verify-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .verify-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: rgba(239,91,47,0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin: 0 auto 14px;
        }

        .verify-header h4 {
            font-family: 'Syne', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
        }

        .verify-header p {
            font-size: 13px;
            color: var(--muted);
            margin-top: 5px;
        }

        .verify-header strong { color: var(--navy); }

        .verify-header small {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--muted);
        }

        .btn-row {
            display: flex;
            gap: 10px;
            margin-top: 1rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .page-body {
                grid-template-columns: 1fr;
                padding: 1.5rem 1rem;
            }

            .side-col { display: none; }
        }

   