.elementor-13841 .elementor-element.elementor-element-9caf0c0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-9caf0c0 */html, body {
            height: 100%;
            overflow-x: hidden
        }

        :root {
            --bg: #ffffff;
            --card: #ffffff;
            --muted: #6b7280;
            --text: #0f172a;
            --brand: #2563eb;
            --accent: #06b6d4;
            --border: #e5e7eb;
            --radius: 18px;
            --shadow: 0 8px 22px rgba(15, 23, 42, .06);
        }

        html, body {
            height: 100%
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
            color: var(--text)
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 8px 0;
            backdrop-filter: saturate(140%) blur(6px);
            transition: box-shadow .3s ease, background-color .3s ease
        }

        header.is-stuck {
            background: rgba(255, 255, 255, .75);
            box-shadow: 0 6px 20px rgba(2, 6, 23, .06)
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800
        }

        .logo {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(37, 99, 235, .2)
        }

        .cta {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--brand), var(--accent));
            color: #fff;
            border: none;
            padding: 14px 18px;
            border-radius: 999px;
            font-weight: 800;
            cursor: pointer;
            transition: transform .18s ease, box-shadow .18s ease
        }

        .cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(37, 99, 235, .28)
        }

        .cta:active {
            transform: translateY(0) scale(.98)
        }

        .cta .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 3px solid rgba(255, 255, 255, .4);
            border-top-color: #fff;
            border-radius: 999px;
            animation: spin 1s linear infinite
        }

        .cta[data-loading="1"] .label {
            opacity: .0
        }

        .cta[data-loading="1"] .spinner {
            display: inline-block
        }

        .muted {
            color: #64748b
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow)
        }

        .hero {
            display: grid;
            grid-template-columns:1.2fr .8fr;
            gap: 28px;
            align-items: center;
            padding: 26px 0
        }

        .hero h1 {
            font-size: clamp(28px, 4.5vw, 46px);
            margin: 0 0 10px;
            line-height: 1.25
        }

        .hero p {
            margin: 0 0 18px;
            color: var(--muted);
            font-size: 18px
        }

        .trust {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 12px;
            color: #475569
        }

        .trust span {
            padding: 6px 10px;
            border: 1px dashed #e2e8f0;
            border-radius: 999px;
            font-size: 12px
        }

        .section {
            margin: 40px 0
        }

        /* ===== Form layout ===== */
        #signup .card {
            max-width: 620px;
            margin-inline: auto
        }

        #lead-form {
            display: grid;
            gap: 12px;
            max-width: 460px;
            margin-inline: auto;
            justify-items: stretch
        }

        .field {
            display: flex;
            flex-direction: column;
            align-items: stretch
        }

        label {
            font-size: 13px;
            color: #334155;
            display: block;
            text-align: right;
            margin-bottom: 6px
        }

        .req::after {
            content: " *";
            color: #ef4444;
            font-weight: 900
        }

        /* Inputs */
        input {
            width: 100%;
            padding: 14px 14px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: #fff;
            color: #0f172a;
            transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
            text-align: right
        }

        /* Keep email & phone LTR while placeholders right */
        input[type="email"], #phone {
            direction: ltr;
            text-align: left
        }

        /* Placeholders aligned RIGHT (cross-browser) */
        input::placeholder {
            color: #9ca3af;
            text-align: right
        }

        input::-webkit-input-placeholder {
            color: #9ca3af;
            text-align: right
        }

        input::-moz-placeholder {
            color: #9ca3af;
            text-align: right
        }

        input:-ms-input-placeholder {
            color: #9ca3af;
            text-align: right
        }

        input::-ms-input-placeholder {
            color: #9ca3af;
            text-align: right
        }

        input:focus {
            outline: none;
            border-color: var(--brand);
            box-shadow: 0 0 0 6px rgba(37, 99, 235, .08)
        }

        input.valid {
            border-color: #16a34a;
            box-shadow: 0 0 0 6px rgba(22, 163, 74, .08)
        }

        input.invalid {
            border-color: #ef4444;
            animation: shake .28s ease
        }

        .error {
            color: #ef4444;
            font-size: 12px;
            display: none;
            text-align: right;
            margin-top: 6px
        }

        .success {
            color: #16a34a;
            font-size: 14px;
            display: none;
            margin-top: 8px;
            text-align: right
        }

        /* === Center heading + helper + CTA === */
        #signup .card h2,
        #signup .card p {
            text-align: center
        }

        #lead-form .cta {
            display: block;
            margin: 6px auto 0
        }

        /* Narrow FAQ to match signup width */
        #faq .card {
            max-width: 620px;
            margin-inline: auto
        }

        details {
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px
        }

        summary {
            cursor: pointer;
            font-weight: 700
        }

        footer {
            margin: 40px 0 20px;
            color: #64748b
        }

        a {
            color: #2563eb;
            text-decoration: none
        }

        @media (max-width: 900px) {
            .hero {
                grid-template-columns:1fr
            }
        }

        /* ===== Decorative / micro-interactions retained ===== */
        .chart-card {
            position: relative;
            border-radius: 16px;
            border: 1px solid #233159;
            background: linear-gradient(180deg, #0f1734, #0b1128);
            box-shadow: 0 20px 60px rgba(2, 6, 23, .18);
            padding: 10px;
            overflow: hidden;
            transform: translateZ(0)
        }

        .chart-card:hover .marker {
            transform: scale(1.04)
        }

        .chart-grid {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, .14) 2px, transparent 2px) 0 0/64px 100%,
            linear-gradient(to bottom, rgba(255, 255, 255, .14) 2px, transparent 2px) 0 0/100% 52px;
            opacity: .25;
            pointer-events: none;
            animation: grid-pan 12s linear infinite
        }

        .chart-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid #5b6ea7;
            background: rgba(59, 76, 120, .35);
            color: #cbd5e1;
            font-weight: 800;
            animation: pop .4s ease both .35s
        }

        .chart-bos {
            position: absolute;
            top: 90px;
            right: 120px;
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fade-in .6s ease .6s forwards
        }

        .chart-bos:before {
            content: "";
            display: inline-block;
            width: 120px;
            border-top: 2px solid #e2e8f0;
            opacity: .8
        }

        .chart-fvg {
            position: absolute;
            top: 140px;
            right: 60px;
            padding: 8px 10px;
            border-radius: 10px;
            border: 1px solid #5b6ea7;
            background: rgba(59, 76, 120, .35);
            color: #e2e8f0;
            box-shadow: 0 0 0 0 rgba(59, 76, 120, .35);
            animation: pulse-box 2.4s ease-in-out infinite
        }

        .marker {
            position: absolute;
            display: grid;
            place-items: center;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, .35);
            background: rgba(255, 255, 255, .12);
            color: #fff;
            transition: transform .2s ease
        }

        .marker.entry {
            bottom: 68px;
            left: 22px;
            animation: bob 2.2s ease-in-out infinite
        }

        .marker.take {
            bottom: 98px;
            right: 22px
        }

        .marker .arrow {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #22c55e;
            filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .2))
        }

        .marker .check {
            font-weight: 900
        }

        .marker:hover {
            box-shadow: 0 10px 26px rgba(255, 255, 255, .14) inset
        }

        .tip {
            position: absolute;
            white-space: nowrap;
            padding: 6px 10px;
            border-radius: 10px;
            background: rgba(15, 23, 42, .86);
            border: 1px solid rgba(148, 163, 184, .35);
            color: #e2e8f0;
            font-size: 12px;
            pointer-events: none;
            transform: translate(10px, -6px);
            opacity: 0;
            transition: opacity .15s ease
        }

        .promo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            background: #eff6ff;
            border: 1px solid #dbeafe;
            margin: 0 0 12px;
            font-weight: 700
        }

        .promo .count {
            font-variant-numeric: tabular-nums
        }

        .carousel {
            position: relative
        }

        .carousel .track {
            display: flex;
            gap: 16px;
            overflow: hidden;
            scroll-behavior: smooth;
            cursor: grab
        }

        .carousel .track:active {
            cursor: grabbing
        }

        .carousel .review.card {
            min-width: 260px;
            text-align: right;
            transform: translateZ(0)
        }

        .carousel .nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #fff;
            display: grid;
            place-items: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 2;
            transition: transform .18s ease
        }

        .carousel .nav:active {
            transform: translateY(-50%) scale(.96)
        }

        .carousel .nav.prev {
            left: -12px
        }

        .carousel .nav.next {
            right: -12px
        }

        .rev-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            direction: rtl;
            justify-content: flex-start
        }

        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 999px;
            object-fit: cover;
            border: 1px solid var(--border)
        }

        .flag {
            font-size: 16px;
            margin-right: 6px
        }

        /* ===== Scroll reveal & progress ===== */
        [data-animate] {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
        }

        [data-animate].in-view {
            opacity: 1;
            transform: none
        }

        .progress {
            position: fixed;
            inset-inline: 0;
            top: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand), var(--accent));
            transform-origin: right;
            transform: scaleX(0);
            z-index: 60
        }

        /* ===== Keyframes ===== */
        @keyframes grid-pan {
            to {
                background-position: 64px 0, 0 52px
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes pulse-box {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(59, 76, 120, .45)
            }
            50% {
                box-shadow: 0 0 0 10px rgba(59, 76, 120, 0)
            }
        }

        @keyframes bob {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-4px)
            }
        }

        @keyframes fade-in {
            to {
                opacity: 1
            }
        }

        @keyframes pop {
            from {
                transform: scale(.96);
                opacity: .0
            }
            to {
                transform: none;
                opacity: 1
            }
        }

        @keyframes confetti {
            to {
                transform: translate(var(--dx), var(--dy)) rotate(1turn);
                opacity: 0
            }
        }

        @keyframes shake {
            10%, 90% {
                transform: translateX(-1px)
            }
            20%, 80% {
                transform: translateX(2px)
            }
            30%, 50%, 70% {
                transform: translateX(-4px)
            }
            40%, 60% {
                transform: translateX(4px)
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important
            }
        }

        /* ====== Animated Hero (scoped) ====== */
        @property --x-lx {
            syntax: '<length>';
            inherits: false;
            initial-value: 12vw;
        }

        @property --x-ly {
            syntax: '<length>';
            inherits: false;
            initial-value: 52vh;
        }

        .x-hero {
            position: relative;
            width: 100vw;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            height: min(688px, 69svh);
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: clamp(16px, 4vw, 56px);
            align-items: center;
            padding: clamp(14px, 4.5vw, 56px);
            overflow: hidden;
            --x-hero-h: min(688px, 69svh);
        }

        @media (max-width: 980px) {
            .x-hero {
                grid-template-columns:1fr;
                height: 62svh;
                --x-hero-h: 62svh
            }
        }

        .x-hero #x-bg-candles {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 0;
            opacity: .36
        }

        .x-hero .grid line {
            stroke: #e5eeff
        }

        .x-hero .wick {
            stroke: #334155;
            stroke-width: 5;
            opacity: .50
        }

        .x-hero .candle.up {
            fill: url(#x-upFill);
            stroke: #16a34a;
            stroke-width: 2.1
        }

        .x-hero .candle.down {
            fill: #fff;
            stroke: #ef4444;
            stroke-width: 2.7
        }

        .x-hero .band {
            filter: drop-shadow(0 0 12px rgba(59, 130, 246, .10));
        }

        .x-hero .veil {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(255, 255, 255, .58) 55%, rgba(255, 255, 255, .66) 75%, rgba(255, 255, 255, 0) 100%);
            z-index: 1
        }

        .x-hero .safe-right {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: min(40vw, 680px);
            z-index: 2;
            background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, .92) 30%, rgba(255, 255, 255, .70) 65%, rgba(255, 255, 255, 0) 100%);
            pointer-events: none
        }

        /* Floating colored glyphs */
        .x-hero .glyph {
            position: absolute;
            z-index: 1;
            opacity: .22;
            filter: drop-shadow(0 10px 24px rgba(2, 6, 23, .12))
        }

        .x-hero .glyph svg {
            width: clamp(54px, 7vw, 110px);
            height: auto;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 3
        }

        .x-hero .g-usd svg {
            stroke: #22c55e
        }

        .x-hero .g-oil svg {
            stroke: #2563eb
        }

        .x-hero .g-crypto svg {
            stroke: #f59e0b
        }

        .x-hero .g-stocks svg {
            stroke: #8b5cf6
        }

        .x-hero .g-fx svg {
            stroke: #14b8a6
        }

        .x-hero .g-gold svg {
            stroke: #fbbf24
        }

        .x-hero .g-usd {
            left: 9%;
            top: 14%;
            animation: drift1 20s ease-in-out infinite
        }

        .x-hero .g-oil {
            left: 26%;
            bottom: 14%;
            animation: drift2 22s ease-in-out infinite
        }

        .x-hero .g-crypto {
            left: 48%;
            top: 22%;
            animation: drift3 24s ease-in-out infinite
        }

        .x-hero .g-stocks {
            right: 22%;
            top: 12%;
            animation: drift4 26s ease-in-out infinite
        }

        .x-hero .g-fx {
            right: 30%;
            bottom: 18%;
            animation: drift5 28s ease-in-out infinite
        }

        .x-hero .g-gold {
            left: 36%;
            bottom: 10%;
            animation: drift6 30s ease-in-out infinite
        }

        @keyframes drift1 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-10px)
            }
        }

        @keyframes drift2 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-12px)
            }
        }

        @keyframes drift3 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes drift4 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-9px)
            }
        }

        @keyframes drift5 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-7px)
            }
        }

        @keyframes drift6 {
            0%, 100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-6px)
            }
        }

        /* Lens with true sync */
        .x-hero .lens {
            position: absolute;
            width: 128px;
            height: 128px;
            border-radius: 999px;
            border: 2px solid rgba(15, 23, 42, .35);
            box-shadow: 0 3px 12px rgba(2, 6, 23, .16), inset 0 0 0 2px rgba(255, 255, 255, .85);
            overflow: hidden;
            pointer-events: none;
            z-index: 2;
            left: var(--x-lx);
            top: var(--x-ly);
            opacity: .96;
            mix-blend-mode: multiply;
            animation: x-scan 13s ease-in-out infinite
        }

        .x-hero .lens::after {
            content: "";
            position: absolute;
            width: 7px;
            height: 64px;
            background: #334155;
            right: 48%;
            bottom: -56px;
            transform: rotate(35deg);
            border-radius: 4px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, .10)
        }

        .x-hero .scene {
            position: absolute;
            width: 100vw;
            height: var(--x-hero-h);
            left: calc(-1 * var(--x-lx));
            top: calc(-1 * var(--x-ly));
            background-image: url('data:image/svg+xml;utf8,%3Csvg%20id%3D%22x-bg-candles%22%20viewBox%3D%220%200%201800%20900%22%20preserveAspectRatio%3D%22none%22%20aria-hidden%3D%22true%22%3E%20%20%3Cdefs%3E%20%20%20%20%3ClinearGradient%20id%3D%22x-upFill%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2322c55e%22/%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2316a34a%22/%3E%20%20%20%20%3C/linearGradient%3E%20%20%3C/defs%3E%20%20%3Cg%20class%3D%22grid%22%3E%3Cline%20x1%3D%220%22%20y1%3D%22120%22%20x2%3D%221800%22%20y2%3D%22120%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22180%22%20x2%3D%221800%22%20y2%3D%22180%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22240%22%20x2%3D%221800%22%20y2%3D%22240%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22300%22%20x2%3D%221800%22%20y2%3D%22300%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22360%22%20x2%3D%221800%22%20y2%3D%22360%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22420%22%20x2%3D%221800%22%20y2%3D%22420%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22480%22%20x2%3D%221800%22%20y2%3D%22480%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22540%22%20x2%3D%221800%22%20y2%3D%22540%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22600%22%20x2%3D%221800%22%20y2%3D%22600%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22660%22%20x2%3D%221800%22%20y2%3D%22660%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22720%22%20x2%3D%221800%22%20y2%3D%22720%22/%3E%3Cline%20x1%3D%220%22%20y1%3D%22780%22%20x2%3D%221800%22%20y2%3D%22780%22/%3E%3C/g%3E%20%20%3Cg%20class%3D%22band%22%3E%3Cline%20x1%3D%2227.0%22%20y1%3D%22334.3%22%20x2%3D%2227.0%22%20y2%3D%22436.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%2220%22%20y%3D%22358.7%22%20width%3D%2214%22%20height%3D%2238.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%2250.0%22%20y1%3D%22310.9%22%20x2%3D%2250.0%22%20y2%3D%22393.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%2243%22%20y%3D%22344.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%2273.0%22%20y1%3D%22272.3%22%20x2%3D%2273.0%22%20y2%3D%22375.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%2266%22%20y%3D%22305.5%22%20width%3D%2214%22%20height%3D%2233.6%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%2296.0%22%20y1%3D%22247.9%22%20x2%3D%2296.0%22%20y2%3D%22349.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%2289%22%20y%3D%22291.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22119.0%22%20y1%3D%22314.0%22%20x2%3D%22119.0%22%20y2%3D%22386.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22112%22%20y%3D%22333.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22142.0%22%20y1%3D%22326.7%22%20x2%3D%22142.0%22%20y2%3D%22412.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22135%22%20y%3D%22349.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22165.0%22%20y1%3D%22323.6%22%20x2%3D%22165.0%22%20y2%3D%22434.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22158%22%20y%3D%22364.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22188.0%22%20y1%3D%22286.3%22%20x2%3D%22188.0%22%20y2%3D%22390.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22181%22%20y%3D%22315.3%22%20width%3D%2214%22%20height%3D%2239.4%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22211.0%22%20y1%3D%22339.6%22%20x2%3D%22211.0%22%20y2%3D%22411.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22204%22%20y%3D%22365.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22234.0%22%20y1%3D%22286.9%22%20x2%3D%22234.0%22%20y2%3D%22382.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22227%22%20y%3D%22320.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22257.0%22%20y1%3D%22246.1%22%20x2%3D%22257.0%22%20y2%3D%22342.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22250%22%20y%3D%22275.3%22%20width%3D%2214%22%20height%3D%2238.8%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22280.0%22%20y1%3D%22271.1%22%20x2%3D%22280.0%22%20y2%3D%22352.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22273%22%20y%3D%22308.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22303.0%22%20y1%3D%22258.6%22%20x2%3D%22303.0%22%20y2%3D%22355.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22296%22%20y%3D%22291.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22326.0%22%20y1%3D%22235.8%22%20x2%3D%22326.0%22%20y2%3D%22316.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22319%22%20y%3D%22260.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22349.0%22%20y1%3D%22219.5%22%20x2%3D%22349.0%22%20y2%3D%22319.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22342%22%20y%3D%22245.0%22%20width%3D%2214%22%20height%3D%2230.6%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22372.0%22%20y1%3D%22270.9%22%20x2%3D%22372.0%22%20y2%3D%22352.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22365%22%20y%3D%22299.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22395.0%22%20y1%3D%22228.3%22%20x2%3D%22395.0%22%20y2%3D%22345.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22388%22%20y%3D%22270.8%22%20width%3D%2214%22%20height%3D%2235.6%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22418.0%22%20y1%3D%22220.5%22%20x2%3D%22418.0%22%20y2%3D%22312.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22411%22%20y%3D%22254.0%22%20width%3D%2214%22%20height%3D%2229.9%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22441.0%22%20y1%3D%22269.3%22%20x2%3D%22441.0%22%20y2%3D%22331.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22434%22%20y%3D%22284.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22464.0%22%20y1%3D%22292.7%22%20x2%3D%22464.0%22%20y2%3D%22354.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22457%22%20y%3D%22309.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22487.0%22%20y1%3D%22306.6%22%20x2%3D%22487.0%22%20y2%3D%22407.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22480%22%20y%3D%22349.0%22%20width%3D%2214%22%20height%3D%2229.7%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22510.0%22%20y1%3D%22314.5%22%20x2%3D%22510.0%22%20y2%3D%22419.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22503%22%20y%3D%22345.3%22%20width%3D%2214%22%20height%3D%2232.1%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22533.0%22%20y1%3D%22299.5%22%20x2%3D%22533.0%22%20y2%3D%22412.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22526%22%20y%3D%22338.1%22%20width%3D%2214%22%20height%3D%2235.2%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22556.0%22%20y1%3D%22307.1%22%20x2%3D%22556.0%22%20y2%3D%22424.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22549%22%20y%3D%22341.4%22%20width%3D%2214%22%20height%3D%2240.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22579.0%22%20y1%3D%22289.7%22%20x2%3D%22579.0%22%20y2%3D%22385.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22572%22%20y%3D%22321.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22602.0%22%20y1%3D%22309.6%22%20x2%3D%22602.0%22%20y2%3D%22393.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22595%22%20y%3D%22338.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22625.0%22%20y1%3D%22353.2%22%20x2%3D%22625.0%22%20y2%3D%22437.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22618%22%20y%3D%22376.1%22%20width%3D%2214%22%20height%3D%2238.9%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22648.0%22%20y1%3D%22334.2%22%20x2%3D%22648.0%22%20y2%3D%22429.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22641%22%20y%3D%22377.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22671.0%22%20y1%3D%22379.3%22%20x2%3D%22671.0%22%20y2%3D%22478.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22664%22%20y%3D%22404.9%22%20width%3D%2214%22%20height%3D%2239.3%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22694.0%22%20y1%3D%22378.2%22%20x2%3D%22694.0%22%20y2%3D%22466.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22687%22%20y%3D%22418.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22717.0%22%20y1%3D%22375.7%22%20x2%3D%22717.0%22%20y2%3D%22454.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22710%22%20y%3D%22394.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22740.0%22%20y1%3D%22389.4%22%20x2%3D%22740.0%22%20y2%3D%22495.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22733%22%20y%3D%22424.7%22%20width%3D%2214%22%20height%3D%2231.5%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22763.0%22%20y1%3D%22376.5%22%20x2%3D%22763.0%22%20y2%3D%22443.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22756%22%20y%3D%22404.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22786.0%22%20y1%3D%22374.9%22%20x2%3D%22786.0%22%20y2%3D%22473.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22779%22%20y%3D%22416.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22809.0%22%20y1%3D%22405.1%22%20x2%3D%22809.0%22%20y2%3D%22503.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22802%22%20y%3D%22438.2%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22832.0%22%20y1%3D%22407.6%22%20x2%3D%22832.0%22%20y2%3D%22508.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22825%22%20y%3D%22429.9%22%20width%3D%2214%22%20height%3D%2234.7%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22855.0%22%20y1%3D%22347.4%22%20x2%3D%22855.0%22%20y2%3D%22433.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22848%22%20y%3D%22380.2%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22878.0%22%20y1%3D%22329.2%22%20x2%3D%22878.0%22%20y2%3D%22415.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22871%22%20y%3D%22362.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22901.0%22%20y1%3D%22287.9%22%20x2%3D%22901.0%22%20y2%3D%22361.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22894%22%20y%3D%22312.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22924.0%22%20y1%3D%22252.3%22%20x2%3D%22924.0%22%20y2%3D%22343.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22917%22%20y%3D%22279.3%22%20width%3D%2214%22%20height%3D%2238.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22947.0%22%20y1%3D%22284.3%22%20x2%3D%22947.0%22%20y2%3D%22352.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22940%22%20y%3D%22294.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%22970.0%22%20y1%3D%22284.3%22%20x2%3D%22970.0%22%20y2%3D%22388.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22963%22%20y%3D%22321.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%22993.0%22%20y1%3D%22271.2%22%20x2%3D%22993.0%22%20y2%3D%22366.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%22986%22%20y%3D%22303.7%22%20width%3D%2214%22%20height%3D%2238.4%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221016.0%22%20y1%3D%22281.7%22%20x2%3D%221016.0%22%20y2%3D%22367.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221009%22%20y%3D%22311.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221039.0%22%20y1%3D%22320.6%22%20x2%3D%221039.0%22%20y2%3D%22402.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221032%22%20y%3D%22343.1%22%20width%3D%2214%22%20height%3D%2233.8%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221062.0%22%20y1%3D%22330.3%22%20x2%3D%221062.0%22%20y2%3D%22406.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221055%22%20y%3D%22350.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221085.0%22%20y1%3D%22367.3%22%20x2%3D%221085.0%22%20y2%3D%22473.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221078%22%20y%3D%22400.4%22%20width%3D%2214%22%20height%3D%2236.3%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221108.0%22%20y1%3D%22359.7%22%20x2%3D%221108.0%22%20y2%3D%22428.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221101%22%20y%3D%22378.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221131.0%22%20y1%3D%22304.4%22%20x2%3D%221131.0%22%20y2%3D%22421.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221124%22%20y%3D%22349.9%22%20width%3D%2214%22%20height%3D%2230.6%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221154.0%22%20y1%3D%22338.8%22%20x2%3D%221154.0%22%20y2%3D%22457.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221147%22%20y%3D%22384.2%22%20width%3D%2214%22%20height%3D%2233.1%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221177.0%22%20y1%3D%22290.7%22%20x2%3D%221177.0%22%20y2%3D%22398.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221170%22%20y%3D%22329.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221200.0%22%20y1%3D%22268.2%22%20x2%3D%221200.0%22%20y2%3D%22359.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221193%22%20y%3D%22305.5%22%20width%3D%2214%22%20height%3D%2231.9%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221223.0%22%20y1%3D%22272.4%22%20x2%3D%221223.0%22%20y2%3D%22382.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221216%22%20y%3D%22300.7%22%20width%3D%2214%22%20height%3D%2237.9%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221246.0%22%20y1%3D%22259.1%22%20x2%3D%221246.0%22%20y2%3D%22350.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221239%22%20y%3D%22297.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221269.0%22%20y1%3D%22263.6%22%20x2%3D%221269.0%22%20y2%3D%22359.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221262%22%20y%3D%22299.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221292.0%22%20y1%3D%22278.3%22%20x2%3D%221292.0%22%20y2%3D%22354.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221285%22%20y%3D%22293.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221315.0%22%20y1%3D%22252.6%22%20x2%3D%221315.0%22%20y2%3D%22342.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221308%22%20y%3D%22276.0%22%20width%3D%2214%22%20height%3D%2238.1%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221338.0%22%20y1%3D%22237.3%22%20x2%3D%221338.0%22%20y2%3D%22334.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221331%22%20y%3D%22281.2%22%20width%3D%2214%22%20height%3D%2230.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221361.0%22%20y1%3D%22228.8%22%20x2%3D%221361.0%22%20y2%3D%22334.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221354%22%20y%3D%22263.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221384.0%22%20y1%3D%22240.5%22%20x2%3D%221384.0%22%20y2%3D%22338.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221377%22%20y%3D%22275.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221407.0%22%20y1%3D%22205.4%22%20x2%3D%221407.0%22%20y2%3D%22296.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221400%22%20y%3D%22244.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221430.0%22%20y1%3D%22200.0%22%20x2%3D%221430.0%22%20y2%3D%22268.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221423%22%20y%3D%22211.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221453.0%22%20y1%3D%22213.2%22%20x2%3D%221453.0%22%20y2%3D%22312.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221446%22%20y%3D%22251.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221476.0%22%20y1%3D%22234.8%22%20x2%3D%221476.0%22%20y2%3D%22314.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221469%22%20y%3D%22260.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221499.0%22%20y1%3D%22178.9%22%20x2%3D%221499.0%22%20y2%3D%22290.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221492%22%20y%3D%22220.9%22%20width%3D%2214%22%20height%3D%2237.1%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221522.0%22%20y1%3D%22232.6%22%20x2%3D%221522.0%22%20y2%3D%22313.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221515%22%20y%3D%22257.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221545.0%22%20y1%3D%22262.7%22%20x2%3D%221545.0%22%20y2%3D%22344.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221538%22%20y%3D%22288.6%22%20width%3D%2214%22%20height%3D%2232.7%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221568.0%22%20y1%3D%22258.0%22%20x2%3D%221568.0%22%20y2%3D%22353.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221561%22%20y%3D%22287.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221591.0%22%20y1%3D%22264.9%22%20x2%3D%221591.0%22%20y2%3D%22347.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221584%22%20y%3D%22292.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221614.0%22%20y1%3D%22250.9%22%20x2%3D%221614.0%22%20y2%3D%22334.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221607%22%20y%3D%22269.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221637.0%22%20y1%3D%22248.8%22%20x2%3D%221637.0%22%20y2%3D%22362.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221630%22%20y%3D%22289.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221660.0%22%20y1%3D%22164.5%22%20x2%3D%221660.0%22%20y2%3D%22293.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221653%22%20y%3D%22210.2%22%20width%3D%2214%22%20height%3D%2236.2%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221683.0%22%20y1%3D%22160.6%22%20x2%3D%221683.0%22%20y2%3D%22277.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221676%22%20y%3D%22203.9%22%20width%3D%2214%22%20height%3D%2232.6%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221706.0%22%20y1%3D%22188.3%22%20x2%3D%221706.0%22%20y2%3D%22296.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221699%22%20y%3D%22225.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221729.0%22%20y1%3D%22211.1%22%20x2%3D%221729.0%22%20y2%3D%22287.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221722%22%20y%3D%22239.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221752.0%22%20y1%3D%22221.3%22%20x2%3D%221752.0%22%20y2%3D%22307.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221745%22%20y%3D%22246.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221775.0%22%20y1%3D%22196.1%22%20x2%3D%221775.0%22%20y2%3D%22281.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221768%22%20y%3D%22225.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221798.0%22%20y1%3D%22214.8%22%20x2%3D%221798.0%22%20y2%3D%22308.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221791%22%20y%3D%22254.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221821.0%22%20y1%3D%22230.9%22%20x2%3D%221821.0%22%20y2%3D%22335.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221814%22%20y%3D%22263.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221844.0%22%20y1%3D%22253.6%22%20x2%3D%221844.0%22%20y2%3D%22321.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221837%22%20y%3D%22266.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221867.0%22%20y1%3D%22279.0%22%20x2%3D%221867.0%22%20y2%3D%22388.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221860%22%20y%3D%22317.5%22%20width%3D%2214%22%20height%3D%2237.1%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221890.0%22%20y1%3D%22276.2%22%20x2%3D%221890.0%22%20y2%3D%22358.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221883%22%20y%3D%22303.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221913.0%22%20y1%3D%22227.6%22%20x2%3D%221913.0%22%20y2%3D%22308.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221906%22%20y%3D%22263.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%221936.0%22%20y1%3D%22236.5%22%20x2%3D%221936.0%22%20y2%3D%22343.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221929%22%20y%3D%22270.4%22%20width%3D%2214%22%20height%3D%2228.2%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221959.0%22%20y1%3D%22279.3%22%20x2%3D%221959.0%22%20y2%3D%22372.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221952%22%20y%3D%22310.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%221982.0%22%20y1%3D%22315.6%22%20x2%3D%221982.0%22%20y2%3D%22390.6%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221975%22%20y%3D%22347.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222005.0%22%20y1%3D%22381.0%22%20x2%3D%222005.0%22%20y2%3D%22443.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%221998%22%20y%3D%22391.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222028.0%22%20y1%3D%22362.7%22%20x2%3D%222028.0%22%20y2%3D%22461.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222021%22%20y%3D%22395.5%22%20width%3D%2214%22%20height%3D%2229.6%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222051.0%22%20y1%3D%22345.3%22%20x2%3D%222051.0%22%20y2%3D%22440.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222044%22%20y%3D%22378.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222074.0%22%20y1%3D%22368.9%22%20x2%3D%222074.0%22%20y2%3D%22462.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222067%22%20y%3D%22404.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222097.0%22%20y1%3D%22345.6%22%20x2%3D%222097.0%22%20y2%3D%22418.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222090%22%20y%3D%22360.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222120.0%22%20y1%3D%22263.1%22%20x2%3D%222120.0%22%20y2%3D%22376.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222113%22%20y%3D%22301.2%22%20width%3D%2214%22%20height%3D%2234.2%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222143.0%22%20y1%3D%22327.0%22%20x2%3D%222143.0%22%20y2%3D%22402.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222136%22%20y%3D%22344.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222166.0%22%20y1%3D%22345.0%22%20x2%3D%222166.0%22%20y2%3D%22443.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222159%22%20y%3D%22371.2%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222189.0%22%20y1%3D%22402.5%22%20x2%3D%222189.0%22%20y2%3D%22485.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222182%22%20y%3D%22435.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222212.0%22%20y1%3D%22411.0%22%20x2%3D%222212.0%22%20y2%3D%22494.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222205%22%20y%3D%22440.2%22%20width%3D%2214%22%20height%3D%2228.7%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222235.0%22%20y1%3D%22439.4%22%20x2%3D%222235.0%22%20y2%3D%22557.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222228%22%20y%3D%22486.1%22%20width%3D%2214%22%20height%3D%2228.7%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222258.0%22%20y1%3D%22483.5%22%20x2%3D%222258.0%22%20y2%3D%22576.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222251%22%20y%3D%22520.8%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222281.0%22%20y1%3D%22494.2%22%20x2%3D%222281.0%22%20y2%3D%22570.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222274%22%20y%3D%22516.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222304.0%22%20y1%3D%22442.6%22%20x2%3D%222304.0%22%20y2%3D%22539.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222297%22%20y%3D%22480.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222327.0%22%20y1%3D%22426.6%22%20x2%3D%222327.0%22%20y2%3D%22531.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222320%22%20y%3D%22461.3%22%20width%3D%2214%22%20height%3D%2233.7%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222350.0%22%20y1%3D%22431.9%22%20x2%3D%222350.0%22%20y2%3D%22500.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222343%22%20y%3D%22444.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222373.0%22%20y1%3D%22413.4%22%20x2%3D%222373.0%22%20y2%3D%22498.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222366%22%20y%3D%22438.4%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222396.0%22%20y1%3D%22392.5%22%20x2%3D%222396.0%22%20y2%3D%22458.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222389%22%20y%3D%22407.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222419.0%22%20y1%3D%22384.0%22%20x2%3D%222419.0%22%20y2%3D%22496.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222412%22%20y%3D%22424.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222442.0%22%20y1%3D%22371.8%22%20x2%3D%222442.0%22%20y2%3D%22436.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222435%22%20y%3D%22395.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222465.0%22%20y1%3D%22349.9%22%20x2%3D%222465.0%22%20y2%3D%22423.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222458%22%20y%3D%22372.6%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222488.0%22%20y1%3D%22362.0%22%20x2%3D%222488.0%22%20y2%3D%22432.9%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222481%22%20y%3D%22384.1%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222511.0%22%20y1%3D%22315.5%22%20x2%3D%222511.0%22%20y2%3D%22410.5%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222504%22%20y%3D%22356.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222534.0%22%20y1%3D%22317.8%22%20x2%3D%222534.0%22%20y2%3D%22443.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222527%22%20y%3D%22364.0%22%20width%3D%2214%22%20height%3D%2239.3%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222557.0%22%20y1%3D%22342.5%22%20x2%3D%222557.0%22%20y2%3D%22470.0%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222550%22%20y%3D%22389.9%22%20width%3D%2214%22%20height%3D%2236.2%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222580.0%22%20y1%3D%22379.6%22%20x2%3D%222580.0%22%20y2%3D%22463.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222573%22%20y%3D%22400.9%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222603.0%22%20y1%3D%22340.4%22%20x2%3D%222603.0%22%20y2%3D%22433.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222596%22%20y%3D%22384.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222626.0%22%20y1%3D%22345.5%22%20x2%3D%222626.0%22%20y2%3D%22425.1%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222619%22%20y%3D%22378.7%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222649.0%22%20y1%3D%22357.9%22%20x2%3D%222649.0%22%20y2%3D%22421.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222642%22%20y%3D%22378.0%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222672.0%22%20y1%3D%22332.2%22%20x2%3D%222672.0%22%20y2%3D%22419.3%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222665%22%20y%3D%22366.2%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222695.0%22%20y1%3D%22334.3%22%20x2%3D%222695.0%22%20y2%3D%22420.8%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222688%22%20y%3D%22353.5%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20down%22/%3E%3Cline%20x1%3D%222718.0%22%20y1%3D%22326.2%22%20x2%3D%222718.0%22%20y2%3D%22421.4%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222711%22%20y%3D%22364.4%22%20width%3D%2214%22%20height%3D%2234.3%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222741.0%22%20y1%3D%22285.8%22%20x2%3D%222741.0%22%20y2%3D%22387.7%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222734%22%20y%3D%22319.4%22%20width%3D%2214%22%20height%3D%2235.3%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3Cline%20x1%3D%222764.0%22%20y1%3D%22240.3%22%20x2%3D%222764.0%22%20y2%3D%22314.2%22%20class%3D%22wick%22/%3E%3Crect%20x%3D%222757%22%20y%3D%22270.3%22%20width%3D%2214%22%20height%3D%2228.0%22%20rx%3D%223%22%20class%3D%22candle%20up%22/%3E%3C/g%3E%3C/svg%3E');
            background-repeat: no-repeat;
            background-size: 100% 100%;
            transform: scale(1.7);
            transform-origin: top left
        }

        .x-hero .signal {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-weight: 900;
            font-size: 18px;
            line-height: 1.1;
            padding: 12px 16px;
            border-radius: 14px;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .9);
            box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
            opacity: 0
        }

        .x-hero .buy {
            background: #16a34a;
            animation: x-buy 13s ease-in-out infinite
        }

        .x-hero .sell {
            background: #ef4444;
            animation: x-sell 13s ease-in-out infinite
        }

        @keyframes x-buy {
            0%, 9% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(.9)
            }
            10%, 30% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1)
            }
            31%, 100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(.96)
            }
        }

        @keyframes x-sell {
            0%, 66% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(.9)
            }
            67%, 88% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1)
            }
            89%, 100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(.96)
            }
        }

        /* Path constrained to chart band */
        @keyframes x-scan {
            0% {
                --x-lx: 12vw;
                --x-ly: 52vh
            }
            25% {
                --x-lx: 28vw;
                --x-ly: 45vh
            }
            50% {
                --x-lx: 40vw;
                --x-ly: 58vh
            }
            75% {
                --x-lx: 46vw;
                --x-ly: 50vh
            }
            100% {
                --x-lx: 12vw;
                --x-ly: 52vh
            }
        }

        /* Headline copy */
        .x-hero .copy {
            position: relative;
            z-index: 4;
            max-width: 82ch;
            margin-right: clamp(12px, 5vw, 80px)
        }

        .x-hero h1 {
            margin: 0 0 12px;
            font-size: clamp(32px, 5.6vw, 68px);
            line-height: 1.08;
            color: #0b1324;
            letter-spacing: -.01em;
            text-shadow: 0 2px 10px rgba(255, 255, 255, .7)
        }

        .x-hero p.desc {
            margin: 0 0 20px;
            font-size: clamp(16px, 2vw, 24px);
            color: #334155;
            text-shadow: 0 1px 8px rgba(255, 255, 255, .75)
        }

        .x-hero .cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        @media (max-width: 820px) {
            .x-hero .glyph {
                display: none
            }

            .x-hero .lens {
                width: 108px;
                height: 108px
            }

            .x-hero .signal {
                font-size: 16px;
                padding: 10px 14px
            }

            .x-hero .copy {
                margin-right: 0;
                max-width: 92vw
            }
        }


        /* ===== Metrics Section (Tadawoul AI) ===== */
        .metrics {
            background: linear-gradient(180deg, #f8fbff, rgba(248, 251, 255, 0));
            padding: clamp(32px, 6vw, 72px) 0
        }

        .metrics-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(16px, 4vw, 24px)
        }

        .metrics-title {
            text-align: center;
            font-size: clamp(26px, 4.5vw, 42px);
            margin: 0 0 clamp(16px, 2vw, 28px);
            color: #0b1324
        }

        .metrics-title span {
            color: #2563eb
        }

        .metrics-grid {
            display: grid;
            grid-template-columns:1fr 6px 1fr 6px 1fr 6px 1fr;
            align-items: center;
            gap: clamp(10px, 1.5vw, 16px)
        }

        .metrics .sep {
            height: 56px;
            background: linear-gradient(180deg, transparent, #e5eeff, transparent);
            border-radius: 6px
        }

        .metric {
            text-align: center
        }

        .metric-value {
            font-weight: 900;
            font-size: clamp(34px, 6vw, 64px);
            letter-spacing: .5px;
            color: #0ea5e9; /* cyan-blue */
        }

        .metric-value .count {
            display: inline-block;
            min-width: 1ch;
        }

        .metric-label {
            color: #334155;
            font-size: clamp(13px, 1.6vw, 18px);
            margin-top: 6px
        }

        .metrics .suffix {
            margin-right: 4px;
            color: #0ea5e9
        }

        @media (max-width: 900px) {
            .metrics-grid {
                grid-template-columns:1fr 1fr;
                gap: 16px
            }

            .metrics .sep {
                display: none
            }

            .metric {
                background: #fff;
                border: 1px solid #e7eefc;
                border-radius: 14px;
                padding: 14px 10px;
                box-shadow: 0 6px 16px rgba(37, 99, 235, .08)
            }
        }


        /* ===== Steps: Activate Tadawoul AI (horizontal) ===== */
        .steps {
            padding: clamp(32px, 6vw, 80px) 0;
            background: linear-gradient(180deg, rgba(241, 246, 255, .35), #fff 60%);
            position: relative
        }

        .steps .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(16px, 4vw, 24px);
            display: grid;
            grid-template-columns:1.3fr .9fr;
            gap: clamp(20px, 4vw, 48px);
            align-items: center
        }

        .steps h2 {
            margin: 0 0 14px;
            font-size: clamp(24px, 4.6vw, 40px);
            color: #0b1324
        }

        .steps p.lead {
            margin: 0 0 18px;
            color: #334155;
            font-size: clamp(14px, 2vw, 18px)
        }

        .h-steps {
            display: flex;
            gap: clamp(12px, 2vw, 18px);
            flex-wrap: wrap
        }

        .h-step {
            flex: 1 1 30%;
            min-width: 220px;
            background: #fff;
            border: 1px solid #e6eefc;
            border-radius: 16px;
            padding: 14px 16px;
            box-shadow: 0 10px 28px rgba(37, 99, 235, .08);
            position: relative;
            overflow: hidden
        }

        .h-step .num {
            position: absolute;
            inset-inline-end: 12px;
            top: 10px;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #1d4ed8;
            color: #fff;
            font-weight: 900;
            display: grid;
            place-items: center;
            box-shadow: 0 6px 16px rgba(29, 78, 216, .25)
        }

        .h-step h3 {
            margin: 0 0 6px;
            font-size: clamp(16px, 2.6vw, 20px);
            color: #0b1324
        }

        .h-step p {
            margin: 0;
            color: #475569;
            font-size: clamp(13px, 2vw, 16px)
        }

        .h-step .apps {
            margin-top: 10px;
            display: flex;
            gap: 10px;
            align-items: center
        }

        .app-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid #e6eefc;
            background: #fff
        }

        .app-badge svg {
            width: 20px;
            height: 20px
        }

        .app-ws svg path {
            fill: #25D366
        }

        .app-tg svg path {
            fill: #34A6E0
        }

        /* phone mock */
        .phone {
            background: #0f172a;
            border: 4px solid #0f172a;
            border-radius: 32px;
            width: min(360px, 90%);
            margin-inline: auto;
            box-shadow: 0 20px 60px rgba(2, 6, 23, .18);
            position: relative
        }

        .phone .notch {
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 14px;
            background: #0f172a;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px
        }

        .phone .screen {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden
        }

        .signal-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-bottom: 1px solid #e8eefc;
            background: #f8fbff
        }

        .signal-header .logo {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: linear-gradient(135deg, #1d4ed8, #60a5fa)
        }

        .signal-header .title {
            font-weight: 800;
            color: #0b1324
        }

        .msg {
            padding: 14px 14px 8px
        }

        .card {
            border: 1px solid #e6eefc;
            border-radius: 12px;
            box-shadow: 0 8px 18px rgba(30, 58, 138, .06);
            margin-bottom: 10px
        }

        .chart {
            height: 120px;
            background: repeating-linear-gradient(90deg, #e8eefc 0 2px, transparent 2px 40px), repeating-linear-gradient(0deg, #e8eefc 0 2px, transparent 2px 24px), linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(16, 185, 129, .18))
        }

        .card .info {
            padding: 10px 12px
        }

        .bullets {
            display: grid;
            gap: 6px;
            margin: 8px 0
        }

        .bullet {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0b1324;
            font-weight: 700
        }

        .bullet small {
            font-weight: 600;
            color: #334155
        }

        .badges {
            display: flex;
            gap: 8px;
            margin-top: 4px;
            flex-wrap: wrap
        }

        .badge {
            font-weight: 900;
            font-size: 12px;
            padding: 6px 8px;
            border-radius: 8px;
            border: 1px solid #dbe8ff;
            background: #fff;
            color: #2563eb
        }

        @media (max-width: 980px) {
            .steps .wrap {
                grid-template-columns:1fr
            }

            .phone {
                order: -1
            }
        }


        /* === Metrics tweak: numbers on the right === */
        .metrics .metric {
            text-align: right
        }

        .metrics .metric-value {
            display: flex;
            justify-content: flex-end;
            align-items: baseline;
            gap: 6px
        }


        /* === Steps tweak: place step numbers on the RIGHT side in RTL too === */
        .steps .h-step {
            padding-right: 56px
        }

        /* space for the badge */
        .steps .h-step .num {
            left: auto;
            right: 12px
        }

        /* force to the physical right */


        /* === Section Title (centered/big like metrics title) === */
        .section-title-lg {
            text-align: center;
            font-size: clamp(26px, 4.5vw, 42px);
            line-height: 1.15;
            margin: 0 0 clamp(16px, 2vw, 28px);
            color: #0b1324;
            letter-spacing: -.01em;
        }

        .section-title-lg .accent {
            color: #2563eb
        }


        /* === Unified CTA size & alignment === */
        .cta {
            padding: 12px 22px !important;
            font-weight: 800 !important;
            font-size: 16px !important;
            border-radius: 999px !important
        }

        .cta-row.center {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px
        }


        /* ==== Footer (light) ==== */
        .site-footer {
            background: linear-gradient(180deg, #f8fbff, #ffffff);
            border-top: 1px solid #e6eefc;
            margin-top: 40px
        }

        .site-footer .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px clamp(16px, 4vw, 24px);
            text-align: center;
            color: #475569;
            font-size: 14px
        }


        /* ==== Footer (light, unified) ==== */
        .site-footer {
            background: linear-gradient(180deg, #f8fbff, #ffffff);
            border-top: 1px solid #e6eefc;
            margin-top: 40px;
            position: relative;
            z-index: 1
        }

        .site-footer .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px clamp(16px, 4vw, 24px);
            text-align: center;
            color: #475569;
            font-size: 14px
        }


        /* Low-emphasis secondary CTA */
        .cta.secondary {
            background: #ffffff;
            color: var(--brand);
            border: 1px solid #dbeafe;
            box-shadow: none;
        }

        .cta.secondary:hover {
            background: #f8fbff;
            box-shadow: 0 6px 16px rgba(37, 99, 235, .08)
        }

        .cta.secondary:active {
            transform: translateY(0) scale(.98)
        }


        /* === Verified user badge near stars === */
        .review .stars {
            display: inline-block;
            margin-inline-end: 8px
        }

        .review .verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #059669;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            padding: 4px 8px;
            border-radius: 999px
        }

        .review .verified .check {
            width: 14px;
            height: 14px
        }


        /* === Screen-reader only utility === */
        .sr-only {
            position: absolute !important;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0
        }


        /* === Testimonials: place 'مستخدم موثّق' under stars === */
        .review .stars {
            display: block;
            margin-bottom: 6px
        }

        .review .verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 0
        }


        /* === Testimonials layout: stars + verified inline; result below === */
        .review .stars {
            display: inline-block;
            margin-inline-end: 8px;
            vertical-align: middle
        }

        .review .verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            vertical-align: middle
        }

        .review .result {
            display: block;
            margin-top: 6px
        }


        /* === Metrics center alignment fix === */
        .metrics .metric {
            text-align: center !important
        }

        .metrics .metric-value {
            display: flex;
            justify-content: center !important;
            align-items: baseline;
            gap: 6px
        }


        .steps {
            scroll-margin-top: 96px
        }

        /* Hide specific hero overlays safely */
        .js-hide-hero-badge {
            display: none !important
        }

        :target {
            scroll-margin-top: 96px
        }

        .cta[aria-busy="true"], .cta[disabled] {
            pointer-events: none;
            opacity: .6
        }

        input:not([type="email"]):not(#phone)::placeholder {
            color: #9ca3af;
            text-align: right
        }

        input[type="email"]::placeholder, #phone::placeholder {
            color: #9ca3af;
            text-align: left;
            direction: ltr
        }

        @media (max-width: 640px) {
            .section {
                margin: 18px 0;
            }

            .container {
                padding: 16px;
            }

            .x-hero .desc {
                margin-bottom: 14px;
            }

            .x-hero .cta-row {
                gap: 10px;
            }
        }

        @media (max-width: 380px) {
            .x-hero {
                height: 50svh;
            }
        }

        @media (max-width: 640px) {
            .x-hero {
                grid-template-columns: 1fr;
                height: 40svh;
                --x-hero-h: 62svh;
            }
        }

        @media (max-width: 640px) {
            #signup .card {
                padding: 16px;
                border-radius: 12px;
                box-shadow: 0 8px 18px rgba(30, 58, 138, .06);
                margin-inline: 12px;
            }

            #signup .promo {
                margin-bottom: 12px;
            }

            #signup h2 {
                margin: 8px 0 8px;
            }

            #signup .card p {
                margin: 0 0 14px;
            }

            #lead-form {
                max-width: 100%;
                margin-inline: 0;
                gap: 10px;
            }

            #lead-form .field {
                gap: 6px;
            }

            #lead-form label {
                font-size: 13px;
                line-height: 1.3;
            }

            #lead-form input {
                font-size: 16px;
                height: 48px;
                padding: 12px 14px;
                border-radius: 12px;
            }

            #lead-form .cta {
                width: auto;
                min-width: 230px;
                border-radius: 9999px;
                padding: 12px 18px;
                margin: 6px auto 0;
            }
        }

        /* Hide hero overlays (lens / sell / buy labels) safely without affecting layout */
        .js-hide-hero-badge {
            display: none !important;
        }

        /* Safety net for common overlay classes in hero */
        .x-hero .lens, .x-hero .magnifier, .x-hero .signal.buy, .x-hero .signal.sell {
            display: none !important;
        }

        /* === Mobile input fields: contain & fit === */
        @media (max-width: 640px) {
            /* Ensure fields don't overflow their container */
            #lead-form, #lead-form .field {
                min-width: 0;
            }

            #lead-form .field {
                display: flex;
                flex-direction: column;
                align-items: stretch;
            }

            #lead-form input, #lead-form select, #lead-form textarea {
                display: block;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            /* Comfortable height and spacing */
            #lead-form input, #lead-form select, #lead-form textarea {
                height: 48px;
                padding: 12px 14px;
                border-radius: 12px;
            }

            /* Keep the card breathing and centered on small screens */
            #signup .card {
                padding: 16px;
                margin-inline: 12px;
            }

            /* Keep the submit button auto width (as requested earlier) */
            #lead-form .cta {
                width: auto;
                min-width: 230px;
                margin: 6px auto 0;
                border-radius: 9999px;
            }
        }

        /* Safety: avoid any global box-sizing issues for form elements */
        #lead-form input, #lead-form select, #lead-form textarea {
            box-sizing: border-box;
        }

        /* === Desktop hero height reduced by ~20% === */
        @media (min-width: 981px) {
            .x-hero {
                height: min(550px, 55svh);
                --x-hero-h: 55svh;
            }
        }

        /* === Tweak: raise Bitcoin/crypto glyph a bit === */
        .x-hero .g-crypto {
            top: 16% !important;
        }

        /* was ~22% */

        /* === Tweak: raise Bitcoin/crypto glyph a bit more === */
        .x-hero .g-crypto {
            top: 12% !important;
        }

        /* === Tweak: raise and shift-left the Bitcoin/crypto glyph === */
        .x-hero .g-crypto {
            top: 9% !important;
            left: 44% !important;
        }

        /* CTA at the end of steps */
        .steps-cta-wrap {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 8px;
        }

        @media (max-width: 640px) {
            .steps-cta-wrap .cta.large {
                width: auto; /* keep natural width on mobile as requested earlier */
                min-width: 220px;
                padding-block: 14px;
            }
        }

        /* === Steps CTA spacing & centering fix === */
        #steps .steps-cta-wrap {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: clamp(12px, 2vw, 20px);
            padding-bottom: clamp(12px, 2vw, 18px);
            margin: 0; /* neutralize extra margins */
        }

        #steps .steps-cta-wrap .cta {
            margin: 0 auto;
        }

        #steps.section {
            margin-bottom: clamp(18px, 3vw, 24px);
        }

        /* trim excess space below steps */
        @media (max-width: 640px) {
            #steps .steps-cta-wrap .cta.large {
                width: auto;
                min-width: 220px;
                padding-block: 14px;
            }
        }

        /* === Steps CTA spacing (desktop) — more above, less below, balanced with next section === */
        @media (min-width: 641px) {
            #steps .steps-cta-wrap {
                padding-top: clamp(18px, 3vw, 28px);
                padding-bottom: clamp(6px, 1vw, 10px);
            }

            /* Trim the overall bottom margin of the steps section */
            #steps.section {
                margin-bottom: clamp(12px, 2vw, 20px);
            }

            /* Reduce the top margin of the next section to avoid large gap */
            #steps + .section {
                margin-top: clamp(12px, 2vw, 20px);
            }

            /* Slightly reduce bottom padding inside the steps container */
            #steps .container {
                padding-bottom: 10px;
            }

            #steps .steps-cta-wrap .cta {
                margin: 0 auto;
            }
        }

        /* === Mobile: center-align CTA text === */
        @media (max-width: 640px) {
            .cta {
                justify-content: center !important;
                text-align: center;
            }

            .cta .label {
                text-align: center;
            }
        }

        /* === Countdown timer styling (promo) === */
        #signup .promo .count {
            font-variant-numeric: tabular-nums;
            direction: ltr; /* keep HH:MM:SS readable */
            display: inline-flex;
            align-items: baseline;
            gap: 2px;
            padding: 0 2px;
        }


        @media (max-width: 640px) {
            #signup .promo {
                gap: 6px 8px;
            }

        }

        /* Digits styling for quota counter */
        #signup .promo .count {
            font-variant-numeric: tabular-nums;
            direction: ltr;
        }

        /* === Mobile polish: promo (عرض محدود) and quota number === */
        @media (max-width: 640px) {
            #signup .promo {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
                text-align: center;
                gap: 6px 8px; /* row gap, column gap */
                padding: 8px 12px; /* tighter padding on mobile */
                border-radius: 10px;
                font-size: 13px;
                line-height: 1.5;
            }

            #signup .promo strong {
                font-weight: 800;
            }

            #signup .promo .count {
                font-variant-numeric: tabular-nums;
                direction: ltr;
                display: inline-flex;
                align-items: baseline;
                gap: 2px;
                padding: 0 2px;
                font-size: 16px;
                font-weight: 800;
            }

            #signup .promo small {
                display: block;
                width: 100%;
                opacity: .9;
                margin-top: 2px;
            }
        }

        /* Logo sizing and avatar polish */
        header .logo {
            display: inline-block;
            vertical-align: middle;
        }

        .review .avatar {
            width: 48px;
            height: 48px;
            border-radius: 9999px;
            object-fit: cover;
        }

        /* Avatar circle and sizing */
        .review .avatar {
            width: 48px;
            height: 48px;
            border-radius: 9999px;
            object-fit: cover;
        }

        /* Real-person avatar polish */
        .review .avatar {
            width: 48px;
            height: 48px;
            border-radius: 9999px;
            object-fit: cover;
            object-position: center;
        }/* End custom CSS */