: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
        }

        .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 22s ease-in-out infinite
        }

        .w1 {
            width: 620px;
            height: 620px;
            background: #c9a8f5;
            opacity: .7;
            top: -230px;
            left: -150px
        }

        .w2 {
            width: 560px;
            height: 560px;
            background: #ffc79b;
            opacity: .6;
            bottom: -220px;
            right: -120px;
            animation-duration: 26s
        }

        .w3 {
            width: 430px;
            height: 430px;
            background: #a5c8ff;
            opacity: .4;
            top: 40%;
            left: 42%;
            animation-duration: 30s
        }

        .w4 {
            width: 380px;
            height: 380px;
            background: #f7a63c;
            opacity: .28;
            top: 6%;
            right: 14%;
            animation-duration: 28s
        }

        @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%)
        }

        .wrap {
            position: relative;
            z-index: 3;
            min-height: 100vh;
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            align-items: center;
            gap: 30px;
            padding: 40px 4vw
        }

        @media(max-width:1040px) {
            .wrap {
                grid-template-columns: 1fr;
                min-height: 100vh;
                align-items: start;
                padding: 30px 16px
            }

            .left {
                display: none
            }

            .right {
                width: 100%;
                padding: 0
            }

            .card {
                max-width: 100%
            }
        }

        @media(max-width:600px) {
            .wrap {
                padding: 20px 12px
            }
        }

        /* ===== left ===== */
        .left {
            max-width: 480px;
            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: 24px;
            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)
        }

        .left h1 {
            font-size: 43px;
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -1.5px;
            color: var(--ink);
            margin-bottom: 12px
        }

        .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: 15.5px;
            color: var(--muted-2);
            line-height: 1.65;
            max-width: 390px;
            margin-bottom: 30px
        }

        .journey {
            background: var(--glass);
            border: 1px solid var(--glass-line);
            border-radius: 22px;
            padding: 22px 24px;
            box-shadow: 0 18px 44px rgba(72, 16, 136, .13);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px)
        }

        .jstep {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding-bottom: 18px;
            position: relative
        }

        .jstep:last-child {
            padding-bottom: 0
        }

        .jstep::before {
            content: "";
            position: absolute;
            left: 13px;
            top: 30px;
            bottom: 6px;
            width: 2px;
            background: rgba(72, 16, 136, .12);
            border-radius: 2px
        }

        .jstep:last-child::before {
            display: none
        }

        .jstep .n {
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12.5px;
            font-weight: 800;
            border: 1.5px solid rgba(72, 16, 136, .18);
            color: var(--muted);
            background: #fff;
            position: relative;
            z-index: 2;
            transition: .3s
        }

        .jstep h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 2px
        }

        .jstep p {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.5
        }

        .jstep.done .n {
            background: var(--ok);
            border-color: var(--ok);
            color: #fff
        }

        .jstep.now .n {
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 6px 16px rgba(72, 16, 136, .35)
        }

        .jstep.idle h4 {
            color: var(--muted)
        }

        /* ===== card ===== */
        .right {
            display: flex;
            align-items: center;
            justify-content: center
        }

        .card {
            width: 100%;
            max-width: 500px;
            background: var(--glass);
            border: 1px solid var(--glass-line);
            border-radius: 26px;
            padding: 32px 30px;
            box-shadow: 0 30px 70px rgba(72, 16, 136, .16);
            -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
            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
        }

        .prog {
            height: 5px;
            background: rgba(72, 16, 136, .1);
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 20px
        }

        .prog i {
            display: block;
            height: 100%;
            width: 33%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--brand), var(--accent));
            transition: width .45s cubic-bezier(.2, .8, .2, 1)
        }

        .card h2 {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -.7px;
            margin-bottom: 4px
        }

        .card .csub {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 22px
        }

        .fld {
            position: relative;
            margin-bottom: 13px
        }

        .grid2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px
        }

        @media(max-width:470px) {
            .grid2 {
                grid-template-columns: 1fr;
                gap: 0
            }
        }

        .fld input {
            width: 100%;
            height: 60px;
            background: var(--field);
            border: 1px solid rgba(72, 16, 136, .13);
            border-radius: 15px;
            padding: 24px 44px 8px 44px;
            color: var(--ink);
            font-size: 14.5px;
            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: 44px;
            top: 20px;
            color: var(--muted);
            font-size: 14px;
            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: 10px;
            font-size: 9.5px;
            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: 16px;
            top: 30px;
            transform: translateY(-50%);
            color: var(--muted);
            font-size: 16px;
            transition: color .2s
        }

        .fld input:focus~.lead {
            color: var(--brand-2)
        }

        .fld .eye {
            position: absolute;
            right: 12px;
            top: 30px;
            transform: translateY(-50%);
            background: none;
            border: 0;
            color: var(--muted);
            cursor: pointer;
            font-size: 15px;
            padding: 4px;
            line-height: 1
        }

        .fld .eye:hover {
            color: var(--brand-2)
        }

        .ferr {
            color: var(--err);
            font-size: 11px;
            font-weight: 600;
            margin-top: 5px;
            min-height: 2px;
            padding-left: 3px
        }

        .ferr.fok {
            color: var(--ok)
        }

        .strength {
            height: 5px;
            border-radius: 6px;
            background: rgba(72, 16, 136, .1);
            overflow: hidden;
            margin-top: 8px
        }

        .strbar {
            height: 100%;
            width: 0;
            border-radius: 6px;
            transition: .3s
        }

        .strlabel {
            font-size: 10.5px;
            font-weight: 700;
            margin-top: 4px;
            min-height: 2px;
            color: var(--muted)
        }

        /* ===== OTP channel toggle ===== */
        .oc-wrap {
            margin: 4px 0 14px
        }

        .oc-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--muted-2);
            margin-bottom: 8px;
            padding-left: 3px
        }

        .oc-toggle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            background: rgba(72, 16, 136, .06);
            border: 1px solid rgba(72, 16, 136, .12);
            border-radius: 14px;
            padding: 5px
        }

        .oc-opt {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            border: 0;
            border-radius: 10px;
            background: transparent;
            color: var(--muted-2);
            font-size: 13.5px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: .2s
        }

        .oc-opt i {
            font-size: 16px
        }

        .oc-opt:hover {
            color: var(--brand-2)
        }

        .oc-opt.active {
            background: #fff;
            color: var(--brand);
            box-shadow: 0 4px 12px rgba(72, 16, 136, .14)
        }

        .oc-opt[data-ch="whatsapp"].active {
            color: #1d9e75
        }

        .terms {
            display: flex;
            gap: 11px;
            align-items: flex-start;
            margin: 10px 0 18px;
            font-size: 12.5px;
            color: var(--muted-2);
            line-height: 1.5;
            cursor: pointer
        }

        .terms input {
            margin-top: 1px;
            accent-color: var(--brand-2);
            width: 17px;
            height: 17px;
            flex: 0 0 17px;
            cursor: pointer
        }

        .terms a {
            color: var(--brand-2);
            font-weight: 700;
            text-decoration: none
        }

        .btn {
            position: relative;
            width: 100%;
            height: 54px;
            border: 0;
            border-radius: 15px;
            cursor: pointer;
            overflow: hidden;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            font-family: inherit;
            box-shadow: 0 14px 30px rgba(72, 16, 136, .3);
            transition: transform .15s, box-shadow .15s, opacity .2s
        }

        .btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(72, 16, 136, .38)
        }

        .btn:disabled {
            opacity: .45;
            cursor: not-allowed;
            box-shadow: none
        }

        .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: 480px;
                height: 480px;
                opacity: 0
            }
        }

        .msg {
            text-align: center;
            font-size: 12.5px;
            font-weight: 600;
            margin-top: 13px;
            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: 20px
        }

        .alt a {
            color: var(--ink);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid var(--accent)
        }

        @media(max-width:1040px) {
            .card {
                padding: 26px 20px;
                border-radius: 22px
            }

            .mark-m {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-bottom: 20px
            }

            .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
            }

            .card h2 {
                font-size: 21px
            }
        }

        @media(max-width:430px) {
            .card {
                padding: 22px 15px
            }

            .otp-boxes {
                gap: 6px
            }

            .otp-box {
                max-width: none;
                border-radius: 10px
            }

            .otp-mob {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px
            }

            #verify-btn .bt {
                font-size: 13.5px
            }
        }

        @media(max-width:360px) {
            .card {
                padding: 18px 12px
            }

            .otp-boxes {
                gap: 4px
            }

            .otp-box {
                max-width: none;
                border-radius: 8px
            }

            .card h2 {
                font-size: 18px
            }

            .otp-mob {
                font-size: 12.5px;
                padding: 10px 12px
            }

            #verify-btn {
                height: 48px;
                font-size: 13px
            }
        }

        @media(prefers-reduced-motion:reduce) {

            .washes span,
            .card {
                animation: none !important
            }
        }

        /* ===== OTP view ===== */
        .otp-view {
            display: none;
        }

        .otp-mob {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            width: 100%;
            background: var(--field);
            border: 1px solid rgba(72, 16, 136, .13);
            border-radius: 14px;
            padding: 13px 16px;
            margin-bottom: 20px;
            font-size: 13.5px;
            font-weight: 600;
            min-width: 0;
        }

        .otp-mob #otpMobile {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .otp-mob .chg {
            flex: 0 0 auto;
            color: var(--brand-2);
            font-size: 12.5px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }

        .otp-boxes {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(5px, 2vw, 10px);
            width: 100%;
            margin: 0 auto 16px;
        }

        .otp-box {
            width: clamp(40px, 11vw, 58px);
            height: clamp(46px, 13vw, 58px);
            flex: 0 1 58px;
            min-width: 0;
            padding: 0;
            text-align: center;

            font-size: clamp(18px, 5vw, 23px);
            font-weight: 800;
            color: var(--ink);
            font-family: inherit;

            background: var(--field);
            border: 1px solid rgba(72, 16, 136, .14);
            border-radius: 12px;
            outline: none;

            transition: .2s;
        }

        .otp-box:focus {
            background: #fff;
            border-color: var(--brand-2);
            box-shadow: 0 0 0 4px rgba(122, 43, 201, .1);
        }

        .otp-box.filled {
            border-color: var(--accent);
            background: rgba(240, 144, 40, .08);
        }

        .resend {
            text-align: center;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 18px;
            line-height: 1.5;
        }

        .resend b {
            color: var(--ink);
        }

        .resend .rlink {
            color: var(--brand-2);
            cursor: pointer;
            font-weight: 700;
            display: none;
        }

        .resend .rlink.on {
            display: inline;
        }


        /* ===== Tablet ===== */
        @media (max-width: 1040px) {

            .card {
                padding: 26px 20px;
                border-radius: 22px;
            }

            .mark-m {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-bottom: 20px;
            }

            .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: 21px;
            }
        }


        /* ===== Mobile ===== */
        @media (max-width: 600px) {

            .wrap {
                width: 100%;
                min-height: 100dvh;
                padding: 16px 10px;
            }

            .right {
                width: 100%;
            }

            .card {
                width: 100%;
                max-width: 100%;
                padding: 22px 14px;
                border-radius: 20px;
            }

            .otp-view {
                width: 100%;
            }

            .otp-mob {
                padding: 12px 13px;
                margin-bottom: 18px;
                font-size: 12.5px;
            }

            .otp-boxes {
                gap: 7px;
            }

            .otp-box {
                width: calc((100% - 35px) / 6);
                max-width: 52px;
                height: auto;
                aspect-ratio: 1 / 1.08;
                border-radius: 10px;
            }

            #verify-btn {
                width: 100%;
                min-height: 52px;
                height: auto;
                padding: 12px 14px;
                font-size: 13.5px;
                line-height: 1.35;
                white-space: normal;
            }

            #verify-btn .bt {
                display: block;
                width: 100%;
            }
        }


        /* ===== Small mobile ===== */
        @media (max-width: 400px) {

            .card {
                padding: 20px 12px;
            }

            .otp-mob {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 7px;
            }

            .otp-mob #otpMobile {
                width: 100%;
            }

            .otp-mob .chg {
                align-self: center;
            }

            .otp-boxes {
                gap: 5px;
            }

            .otp-box {
                width: calc((100% - 25px) / 6);
                max-width: none;
                border-radius: 9px;
                font-size: 19px;
            }

            #verify-btn {
                min-height: 50px;
                font-size: 12.5px;
                padding: 11px 10px;
            }
        }


        /* ===== Very small phones ===== */
        @media (max-width: 340px) {

            .wrap {
                padding: 12px 7px;
            }

            .card {
                padding: 18px 10px;
                border-radius: 17px;
            }

            .card h2 {
                font-size: 18px;
            }

            .card .csub {
                font-size: 12px;
                margin-bottom: 17px;
            }

            .otp-mob {
                padding: 10px;
                font-size: 12px;
            }

            .otp-boxes {
                gap: 4px;
            }

            .otp-box {
                width: calc((100% - 20px) / 6);
                font-size: 17px;
            }

            #verify-btn {
                min-height: 48px;
                font-size: 12px;
            }
        }