:root {
            --bg: #020817;
            --bg2: #06152c;
            --panel: #091d3a;
            --panel2: #0d284d;
            --text: #fff;
            --soft: #d8e5f7;
            --muted: #8da6c7;
            --blue: #1687ff;
            --cyan: #00b7ff;
            --violet: #7739ff;
            --gold: #f3b526;
            --green: #2de18c;
            --red: #d72938;
            --border: rgba(129, 177, 235, .16);
            --shadow: 0 30px 85px rgba(0, 0, 0, .48);
            --radius: 24px;
            --ease: cubic-bezier(.2, .75, .25, 1)
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            background: var(--bg)
        }

        body {
            font-family: Inter, Arial, sans-serif;
            color: var(--text);
            background: radial-gradient(circle at 12% 12%, rgba(22, 135, 255, .14), transparent 28%), linear-gradient(180deg, #020817, #06142b 55%, #020817);
            overflow-x: hidden
        }

        body:before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            background-image: linear-gradient(rgba(86, 145, 218, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(86, 145, 218, .06) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(#000, transparent 88%)
        }

        a {
            color: inherit;
            text-decoration: none
        }

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

        button,
        input {
            font: inherit
        }

        .container {
            width: min(1220px, calc(100% - 40px));
            margin: auto
        }

        .section {
            padding: 105px 0;
            border-top: 1px solid rgba(130, 176, 230, .08)
        }

        .section-head {
            max-width: 820px;
            margin: 0 auto 50px;
            text-align: center
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 15px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase
        }

        .eyebrow:before {
            content: "";
            width: 26px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent)
        }

        h2 {
            font-family: Montserrat, Inter, sans-serif;
            font-size: clamp(34px, 4.5vw, 58px);
            line-height: 1.04;
            letter-spacing: -.05em
        }

        .section-head p {
            margin-top: 18px;
            color: var(--soft);
            font-size: 18px;
            line-height: 1.75
        }

        .btn {
            display: inline-flex;
            min-height: 54px;
            align-items: center;
            justify-content: center;
            padding: 0 26px;
            border: 0;
            border-radius: 13px;
            cursor: pointer;
            font-weight: 900;
            transition: .28s var(--ease)
        }

        .btn:hover {
            transform: translateY(-3px)
        }

        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--violet), var(--blue));
            box-shadow: 0 18px 44px rgba(31, 109, 255, .3)
        }

        .newsbar {
            position: relative;
            z-index: 120;
            color: #fff;
            background: linear-gradient(90deg, #7b111b, #d42a38 45%, #8d1420)
        }

        .newsbar .container {
            min-height: 38px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 18px
        }

        .news-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase
        }

        .news-label:before {
            content: "!";
            width: 20px;
            height: 20px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--red);
            background: #fff
        }

        .ticker {
            overflow: hidden;
            white-space: nowrap;
            font-size: 12px
        }

        .ticker span {
            display: inline-block;
            padding-left: 100%;
            animation: ticker 22s linear infinite
        }

        .newsbar a {
            font-size: 12px;
            font-weight: 800
        }

        @keyframes ticker {
            to {
                transform: translateX(-100%)
            }
        }

        .header {
            position: absolute;
            top: 38px;
            left: 0;
            right: 0;
            z-index: 100;
            transition: .3s
        }

        .header.scrolled {
            background: rgba(1, 8, 22, .88);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border)
        }

        .nav {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 11px;
            font: 900 21px Montserrat
        }

        .brand-mark {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: linear-gradient(145deg, var(--blue), #4030c8);
            box-shadow: 0 12px 28px rgba(0, 92, 255, .34)
        }

        .brand-mark svg {
            width: 22px
        }

        .brand small {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font: 700 9px Inter;
            letter-spacing: .11em;
            text-transform: uppercase
        }

        .nav-links {
            display: flex;
            gap: 27px
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 800;
            color: #d6e4f7
        }

        .nav-links a:hover {
            color: var(--gold)
        }

        .nav-cta {
            min-height: 44px;
            padding: 0 18px;
            font-size: 12px
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            place-items: center;
            color: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: rgba(255, 255, 255, .06)
        }

        .hero {
            position: relative;
            min-height: 100vh;
            padding-top: 120px;
            overflow: hidden;
            background: #031027
        }

        .hero-content-wrap {
            position: relative;
            z-index: 4;
            min-height: 100vh;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr);
            align-items: center;
            gap: 56px;
            padding-top: 72px;
            padding-bottom: 72px
        }

        .hero-copy {
            max-width: 680px
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 22px;
            padding: 10px 15px;
            border: 1px solid rgba(243, 181, 38, .38);
            border-radius: 999px;
            color: var(--gold);
            background: rgba(3, 15, 35, .62);
            backdrop-filter: blur(12px);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .09em;
            text-transform: uppercase;
            box-shadow: 0 12px 34px rgba(0, 0, 0, .18)
        }

        .hero-badge:before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 18px rgba(243, 181, 38, .8)
        }

        .hero-title {
            max-width: 650px;
            font: 900 clamp(44px, 4.25vw, 68px)/1 Montserrat, Inter, sans-serif;
            letter-spacing: -.052em;
            text-transform: uppercase;
            text-shadow: 0 12px 34px rgba(0, 0, 0, .48)
        }

        .hero-title span {
            display: block;
            margin-top: 17px;
            color: var(--gold);
            font-size: .54em;
            line-height: 1.16;
            letter-spacing: -.022em;
            text-transform: none
        }

        .hero-text {
            max-width: 620px;
            margin-top: 21px;
            color: #eef4ff;
            font-size: 17px;
            line-height: 1.65;
            text-shadow: 0 6px 24px rgba(0, 0, 0, .72)
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 27px
        }

        .hero-secondary {
            display: inline-flex;
            min-height: 54px;
            align-items: center;
            justify-content: center;
            padding: 0 22px;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 13px;
            color: #fff;
            background: rgba(3, 15, 35, .56);
            backdrop-filter: blur(12px);
            font-weight: 800;
            transition: .28s var(--ease)
        }

        .hero-secondary:hover {
            transform: translateY(-3px);
            border-color: rgba(243, 181, 38, .55);
            background: rgba(7, 25, 53, .78)
        }

        .hero-form-card {
            position: relative;
            width: 100%;
            max-width: 470px;
            margin-left: auto;
            padding: 30px;
            border: 1px solid rgba(139, 182, 234, .24);
            border-radius: 25px;
            background: linear-gradient(160deg, rgba(9, 30, 61, .9), rgba(2, 12, 29, .94));
            box-shadow: 0 30px 75px rgba(0, 0, 0, .42), 0 0 50px rgba(22, 135, 255, .08);
            backdrop-filter: blur(20px);
            overflow: hidden
        }

        .hero-form-card:before {
            content: "";
            position: absolute;
            inset: -1px;
            pointer-events: none;
            background: radial-gradient(circle at 90% 0%, rgba(22, 135, 255, .22), transparent 34%), radial-gradient(circle at 0% 100%, rgba(119, 57, 255, .14), transparent 38%)
        }

        .hero-form-card>* {
            position: relative;
            z-index: 1
        }

        .hero-form-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 22px
        }

        .hero-form-card h2 {
            font: 800 28px/1.08 Montserrat, Inter, sans-serif;
            letter-spacing: -.035em
        }

        .hero-form-card>p {
            margin: -10px 0 22px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55
        }

        .hero-form-status {
            flex: none;
            padding: 7px 10px;
            border: 1px solid rgba(243, 181, 38, .28);
            border-radius: 999px;
            color: var(--gold);
            background: rgba(243, 181, 38, .08);
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .06em
        }

        .hero-lead-form {
            display: grid;
            gap: 12px
        }

        .hero-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .hero-input {
            width: 100%;
            min-height: 54px;
            padding: 0 15px;
            border: 1px solid rgba(139, 182, 234, .18);
            border-radius: 12px;
            outline: 0;
            color: #fff;
            background: rgba(1, 9, 22, .68);
            transition: border-color .2s, box-shadow .2s, background .2s
        }

        .hero-input::placeholder {
            color: #7189aa
        }

        .hero-input:focus {
            border-color: var(--blue);
            background: rgba(4, 17, 39, .86);
            box-shadow: 0 0 0 4px rgba(22, 135, 255, .12)
        }

        .hero-phone {
            display: grid;
            overflow: hidden;
            border: 1px solid rgba(139, 182, 234, .18);
            border-radius: 12px;
            background: rgba(1, 9, 22, .68)
        }

        .hero-country {
            display: grid;
            place-items: center;
            border-right: 1px solid rgba(139, 182, 234, .18);
            color: var(--soft);
            font-size: 12px;
            font-weight: 900
        }

        .hero-phone .hero-input {
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none
        }

        .hero-form-submit {
            width: 100%;
            min-height: 58px;
            margin-top: 2px
        }

        .hero-form-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
            color: #aebed5;
            font-size: 11px;
            font-weight: 700
        }

        .hero-form-trust span {
            display: inline-flex;
            align-items: center;
            gap: 6px
        }

        .hero-form-trust span:before {
            content: "✓";
            color: var(--green);
            font-weight: 900
        }

        .hero-form-note {
            margin-top: 13px;
            color: #7186a4;
            font-size: 10px;
            line-height: 1.5;
            text-align: center
        }

        .hero-media {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(2, 9, 24, .12), rgba(2, 9, 24, .02)), url("../images/01.png") center/cover no-repeat;
            animation: heroZoom 16s ease-in-out infinite alternate
        }

        .hero:after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 33%;
            background: linear-gradient(transparent, #020817)
        }

        @keyframes heroZoom {
            to {
                transform: scale(1.04)
            }
        }

        .hero-link {
            position: absolute;
            left: 3.2%;
            bottom: 11.5%;
            z-index: 5;
            width: 25.5%;
            min-width: 280px;
            height: 82px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .15);
            background: linear-gradient(135deg, rgba(119, 57, 255, .05), rgba(22, 135, 255, .05));
            transition: .25s
        }

        .hero-link:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, .4)
        }

        .hero-mobile {
            display: none
        }

        .signals-wrap {
            position: relative;
            z-index: 6;
            padding: 22px 0;
            background: linear-gradient(90deg, rgba(4, 17, 41, .98), rgba(9, 33, 67, .98));
            border-block: 1px solid var(--border)
        }

        .signals {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px
        }

        .signal {
            display: flex;
            align-items: center;
            gap: 13px;
            min-height: 74px;
            padding: 14px;
            border: 1px solid rgba(121, 170, 231, .12);
            border-radius: 16px;
            background: rgba(255, 255, 255, .025)
        }

        .sig-icon {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            flex: none;
            border-radius: 12px;
            color: var(--cyan);
            background: rgba(22, 135, 255, .1);
            border: 1px solid rgba(22, 135, 255, .25)
        }

        .sig-icon svg {
            width: 22px
        }

        .signal:nth-child(2) .sig-icon {
            color: #9a6bff;
            background: rgba(119, 57, 255, .1)
        }

        .signal:nth-child(3) .sig-icon {
            color: var(--green);
            background: rgba(45, 225, 140, .1)
        }

        .signal:nth-child(4) .sig-icon {
            color: var(--gold);
            background: rgba(243, 181, 38, .1)
        }

        .signal b {
            display: block;
            margin-bottom: 3px;
            font-size: 13px
        }

        .signal span {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.4
        }

        .bento {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 20px
        }

        .stack {
            display: grid;
            gap: 20px
        }

        .card {
            position: relative;
            overflow: hidden;
            min-height: 260px;
            padding: 30px;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: radial-gradient(circle at 88% 8%, rgba(22, 135, 255, .14), transparent 36%), linear-gradient(145deg, rgba(11, 31, 61, .97), rgba(5, 19, 43, .97));
            box-shadow: var(--shadow);
            transition: .35s var(--ease)
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: rgba(49, 145, 255, .5)
        }

        .card.large {
            min-height: 540px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: radial-gradient(circle at 72% 18%, rgba(22, 135, 255, .23), transparent 35%), radial-gradient(circle at 36% 66%, rgba(119, 57, 255, .16), transparent 34%), linear-gradient(145deg, #0a1a36, #040d20)
        }

        .num {
            position: absolute;
            top: 18px;
            right: 22px;
            color: rgba(255, 255, 255, .07);
            font: 900 72px Montserrat
        }

        .icon {
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            margin-bottom: 24px;
            border-radius: 17px;
            background: linear-gradient(145deg, var(--blue), var(--violet));
            box-shadow: 0 16px 34px rgba(24, 107, 255, .26)
        }

        .icon svg {
            width: 28px
        }

        .card h3 {
            margin-bottom: 14px;
            font: 800 clamp(24px, 3vw, 39px)/1.1 Montserrat;
            letter-spacing: -.035em
        }

        .card:not(.large) h3 {
            font-size: 24px
        }

        .card p {
            color: var(--soft);
            font-size: 15px;
            line-height: 1.75
        }

        .orbitbox {
            position: absolute;
            top: 35px;
            left: 38px;
            width: 250px;
            height: 250px;
            opacity: .75
        }

        .orbit {
            position: absolute;
            inset: 0;
            border: 1px solid rgba(60, 154, 255, .22);
            border-radius: 50%;
            animation: spin 13s linear infinite
        }

        .orbit:before,
        .orbit:after {
            content: "";
            position: absolute;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 18px var(--cyan)
        }

        .orbit:before {
            top: 17%;
            left: 8%
        }

        .orbit:after {
            right: 5%;
            bottom: 22%;
            background: var(--gold);
            box-shadow: 0 0 18px var(--gold)
        }

        .orbit.two {
            inset: 28px;
            animation-direction: reverse;
            animation-duration: 9s
        }

        .core {
            position: absolute;
            inset: 82px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(22, 135, 255, .9), rgba(119, 57, 255, .25));
            box-shadow: 0 0 42px rgba(22, 135, 255, .42);
            font: 900 24px Montserrat
        }

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

        .timeline {
            max-width: 980px;
            margin: auto;
            position: relative
        }

        .timeline:before {
            content: "";
            position: absolute;
            left: 38px;
            top: 40px;
            bottom: 40px;
            width: 2px;
            background: linear-gradient(var(--blue), var(--gold), transparent)
        }

        .step {
            position: relative;
            display: grid;
            grid-template-columns: 78px 1fr;
            gap: 26px;
            margin-bottom: 22px
        }

        .step-index {
            z-index: 2;
            width: 78px;
            height: 78px;
            display: grid;
            place-items: center;
            border: 4px solid #07152d;
            border-radius: 22px;
            background: linear-gradient(145deg, var(--blue), var(--violet));
            box-shadow: 0 14px 34px rgba(22, 135, 255, .28);
            font: 900 20px Montserrat
        }

        .step-card {
            padding: 26px 28px;
            border: 1px solid var(--border);
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(11, 31, 61, .96), rgba(5, 18, 42, .96));
            transition: .35s
        }

        .step-card:hover {
            transform: translateX(9px);
            border-color: rgba(48, 145, 255, .48)
        }

        .step-card h3 {
            margin-bottom: 9px;
            font-size: 21px
        }

        .step-card p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7
        }

        .platform {
            overflow: hidden;
            border: 1px solid rgba(55, 149, 255, .36);
            border-radius: 30px;
            background: linear-gradient(145deg, rgba(9, 26, 55, .98), rgba(3, 13, 31, .98));
            box-shadow: var(--shadow)
        }

        .platform-top {
            min-height: 66px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 22px;
            border-bottom: 1px solid var(--border)
        }

        .ptitle {
            display: flex;
            align-items: center;
            gap: 11px;
            font-weight: 900
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 18px var(--green)
        }

        .filters {
            display: flex;
            gap: 8px
        }

        .filters span {
            padding: 8px 11px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .04);
            color: var(--muted);
            font-size: 11px
        }

        .platform-body {
            display: grid;
            grid-template-columns: 210px 1fr;
            min-height: 510px
        }

        .side {
            padding: 22px 14px;
            border-right: 1px solid var(--border);
            background: rgba(1, 8, 20, .6)
        }

        .side a {
            display: block;
            margin-bottom: 7px;
            padding: 12px 13px;
            border-radius: 10px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700
        }

        .side a.active {
            color: #fff;
            border-left: 3px solid var(--blue);
            background: linear-gradient(90deg, rgba(22, 135, 255, .22), rgba(22, 135, 255, .04))
        }

        .pmain {
            padding: 22px
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 16px
        }

        .metric {
            min-height: 102px;
            padding: 16px;
            border: 1px solid rgba(121, 170, 231, .12);
            border-radius: 16px;
            background: rgba(255, 255, 255, .035)
        }

        .metric small {
            display: block;
            margin-bottom: 10px;
            color: var(--muted);
            font-size: 10px
        }

        .metric b {
            display: block;
            margin-bottom: 5px;
            font-size: 21px
        }

        .metric span {
            color: var(--green);
            font-size: 11px
        }

        .dash {
            display: grid;
            grid-template-columns: 1.35fr .65fr;
            gap: 14px
        }

        .chart-card,
        .opp-card {
            min-height: 295px;
            padding: 18px;
            border: 1px solid rgba(121, 170, 231, .13);
            border-radius: 18px;
            background: rgba(255, 255, 255, .025)
        }

        .box-title {
            display: flex;
            justify-content: space-between;
            margin-bottom: 16px;
            font-size: 13px;
            font-weight: 800
        }

        .chart {
            position: relative;
            min-height: 220px;
            border-radius: 12px;
            background: linear-gradient(rgba(112, 165, 227, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(112, 165, 227, .08) 1px, transparent 1px);
            background-size: 44px 44px
        }

        .chart svg {
            position: absolute;
            inset: 20px 10px 12px;
            width: calc(100% - 20px);
            height: calc(100% - 32px)
        }

        .opps {
            display: grid;
            gap: 9px
        }

        .opp {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 10px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, .05);
            border-radius: 12px;
            background: rgba(255, 255, 255, .03)
        }

        .opp b {
            display: block;
            margin-bottom: 4px;
            font-size: 12px
        }

        .opp span {
            color: var(--muted);
            font-size: 10px
        }

        .opp .score {
            color: var(--green);
            font-size: 18px;
            font-weight: 900
        }

        .registration {
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 18% 22%, rgba(22, 135, 255, .16), transparent 30%), radial-gradient(circle at 80% 68%, rgba(119, 57, 255, .12), transparent 28%), #020817
        }

        .reg-layout {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 30px
        }

        .reg-copy,
        .form-card {
            padding: 35px;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: rgba(8, 25, 52, .82);
            backdrop-filter: blur(16px)
        }

        .reg-copy {
            display: flex;
            flex-direction: column;
            justify-content: space-between
        }

        .reg-copy h2 {
            font-size: clamp(32px, 4vw, 50px)
        }

        .reg-copy p {
            margin-top: 16px;
            color: var(--soft);
            line-height: 1.75
        }

        .points {
            display: grid;
            gap: 13px;
            margin-top: 30px
        }

        .point {
            display: flex;
            gap: 11px;
            color: var(--soft);
            font-size: 14px
        }

        .point:before {
            content: "✓";
            width: 22px;
            height: 22px;
            display: grid;
            place-items: center;
            flex: none;
            border-radius: 50%;
            color: #00140b;
            background: var(--green);
            font-size: 11px;
            font-weight: 900
        }

        .form-card h3 {
            margin-bottom: 8px;
            font: 800 28px Montserrat
        }

        .form-card>p {
            margin-bottom: 24px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6
        }

        .lead-form {
            display: grid;
            gap: 13px
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px
        }

        .field {
            width: 100%;
            min-height: 56px;
            padding: 0 16px;
            border: 1px solid rgba(139, 182, 234, .16);
            border-radius: 12px;
            outline: 0;
            color: #fff;
            background: rgba(1, 9, 22, .68);
            transition: .2s
        }

        .field:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(22, 135, 255, .12)
        }

        .field::placeholder {
            color: #6f88aa
        }

        .phone {
            display: grid;
            border: 1px solid rgba(139, 182, 234, .16);
            border-radius: 12px;
            overflow: hidden;
            background: rgba(1, 9, 22, .68)
        }

        .country {
            display: grid;
            place-items: center;
            border-right: 1px solid rgba(139, 182, 234, .16);
            color: var(--soft);
            font-size: 13px;
            font-weight: 800
        }

        .phone .field {
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none
        }

        .submit {
            width: 100%;
            min-height: 60px
        }

        .privacy {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.6;
            text-align: center
        }

        .reviews {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .review {
            padding: 25px;
            border: 1px solid var(--border);
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(11, 31, 61, .94), rgba(5, 18, 42, .94));
            transition: .35s
        }

        .review:hover {
            transform: translateY(-7px);
            border-color: rgba(49, 145, 255, .48)
        }

        .stars {
            margin-bottom: 17px;
            color: var(--gold);
            letter-spacing: 3px
        }

        .review p {
            min-height: 132px;
            margin-bottom: 22px;
            color: var(--soft);
            font-size: 14px;
            line-height: 1.75
        }

        .author {
            display: flex;
            align-items: center;
            gap: 11px
        }

        .avatar {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--blue), var(--violet));
            font-weight: 900
        }

        .author b {
            display: block;
            font-size: 13px
        }

        .author small {
            color: var(--muted);
            font-size: 11px
        }

        .faq {
            max-width: 900px;
            margin: auto;
            display: grid;
            gap: 12px
        }

        details {
            padding: 0 22px;
            border: 1px solid var(--border);
            border-radius: 17px;
            background: rgba(7, 23, 48, .82)
        }

        summary {
            min-height: 66px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            list-style: none;
            font-weight: 800
        }

        summary::-webkit-details-marker {
            display: none
        }

        summary:after {
            content: "+";
            color: var(--gold);
            font-size: 24px
        }

        details[open] summary:after {
            transform: rotate(45deg)
        }

        details p {
            padding: 0 0 20px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75
        }

        footer {
            padding: 70px 0 30px;
            background: #010611;
            border-top: 1px solid var(--border)
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr .75fr .75fr 1fr;
            gap: 30px;
            margin-bottom: 42px
        }

        footer h4 {
            margin-bottom: 15px;
            font-size: 14px
        }

        footer p,
        footer li,
        footer a {
            color: var(--muted);
            font-size: 12px;
            line-height: 1.8
        }

        footer ul {
            list-style: none
        }

        .risk {
            padding-top: 26px;
            border-top: 1px solid var(--border);
            color: #67809f;
            font-size: 11px;
            line-height: 1.8
        }

        .bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: #607997;
            font-size: 11px
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: .8s var(--ease)
        }

        .reveal.visible {
            opacity: 1;
            transform: none
        }

        @media(max-width:1040px) {
            .nav-links {
                display: none
            }

            .menu-toggle {
                display: grid
            }

            .nav-links.open {
                position: absolute;
                top: 76px;
                left: 20px;
                right: 20px;
                display: grid;
                gap: 0;
                padding: 12px;
                border: 1px solid var(--border);
                border-radius: 16px;
                background: rgba(1, 8, 22, .98);
                box-shadow: var(--shadow)
            }

            .nav-links.open a {
                padding: 13px 12px
            }

            .signals {
                grid-template-columns: repeat(2, 1fr)
            }

            .bento,
            .reg-layout {
                grid-template-columns: 1fr
            }

            .platform-body {
                grid-template-columns: 1fr
            }

            .side {
                display: none
            }

            .metrics {
                grid-template-columns: repeat(2, 1fr)
            }

            .reviews,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:1040px) {
            .hero-content-wrap {
                grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
                gap: 30px
            }

            .hero-title {
                font-size: clamp(40px, 4.8vw, 58px)
            }

            .hero-form-card {
                padding: 24px
            }

            .hero-form-row {
                grid-template-columns: 1fr
            }
        }

        @media(max-width:760px) {
            .hero-content-wrap {
                display: grid;
                grid-template-columns: 1fr;
                min-height: auto;
                gap: 24px;
                padding-top: 32px;
                padding-bottom: 42px
            }

            .hero-copy {
                max-width: none
            }

            .hero-badge {
                font-size: 10px
            }

            .hero-title {
                font-size: clamp(38px, 11vw, 52px)
            }

            .hero-text {
                font-size: 15px
            }

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

            .hero-actions .btn,
            .hero-secondary {
                width: 100%
            }

            .hero-form-card {
                max-width: none;
                margin: 0;
                padding: 22px
            }

            .hero-form-row {
                grid-template-columns: 1fr
            }

            .hero-mobile {
                display: none !important
            }

            .hero-mobile .eyebrow {
                margin-bottom: 14px
            }

            .hero-mobile h1 {
                max-width: 520px
            }

            .container {
                width: calc(100% - 28px)
            }

            .section {
                padding: 78px 0
            }

            .newsbar .container {
                min-height: 34px;
                grid-template-columns: auto 1fr
            }

            .newsbar a {
                display: none
            }

            .header {
                top: 34px
            }

            .nav {
                min-height: 68px
            }

            .brand {
                font-size: 17px
            }

            .brand-mark {
                width: 36px;
                height: 36px
            }

            .nav-cta {
                display: none
            }

            .hero {
                min-height: auto;
                padding-top: 102px
            }

            .hero-media {
                position: absolute;
                width: auto;
                aspect-ratio: auto;
                background-position: 62% center;
                animation: none
            }

            .hero:before {
                content: "";
                position: absolute;
                inset: 0;
                z-index: 1;
                background: linear-gradient(180deg, rgba(2, 9, 24, .74), rgba(2, 9, 24, .9))
            }

            .hero:after,
            .hero-link {
                display: none
            }

            .hero-mobile {
                display: none
            }

            .hero-mobile h1 {
                font: 900 38px/1.03 Montserrat;
                letter-spacing: -.05em
            }

            .hero-mobile h1 span {
                color: var(--gold)
            }

            .hero-mobile p {
                margin: 14px 0 22px;
                color: var(--soft);
                font-size: 15px;
                line-height: 1.65
            }

            .signals,
            .metrics,
            .dash,
            .reviews,
            .footer-grid,
            .form-row {
                grid-template-columns: 1fr
            }

            .card.large {
                min-height: 460px
            }

            .orbitbox {
                width: 200px;
                height: 200px
            }

            .core {
                inset: 64px
            }

            .timeline:before {
                left: 27px
            }

            .step {
                grid-template-columns: 56px 1fr;
                gap: 15px
            }

            .step-index {
                width: 56px;
                height: 56px;
                border-radius: 16px;
                font-size: 15px
            }

            .step-card {
                padding: 21px
            }

            .platform-top {
                align-items: flex-start;
                flex-direction: column;
                padding: 17px
            }

            .pmain {
                padding: 14px
            }

            .reg-copy,
            .form-card {
                padding: 25px
            }

            .bottom {
                flex-direction: column
            }
        }

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

            .reveal {
                opacity: 1;
                transform: none
            }
        }
