        :root {
            --bg: #0b0d12;
            --card: #121624;
            --muted: rgba(255, 255, 255, .72);
            --muted2: rgba(255, 255, 255, .58);
            --text: rgba(255, 255, 255, .92);
            --line: rgba(255, 255, 255, .12);
            --shadow: 0 16px 40px rgba(0, 0, 0, .35);
            --radius: 18px;
            --radius2: 26px;
            --pad: clamp(14px, 2.2vw, 22px);
            --max: 1180px;
            --accent: #7c5cff;
            --accent2: #28d3ff;
            --good: #43f0a7;
            --warn: #ffd75a;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            margin: 0;
            background: radial-gradient(circle at 15% 10%, rgba(124, 92, 255, .25), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(40, 211, 255, .18), transparent 55%),
                radial-gradient(circle at 70% 95%, rgba(67, 240, 167, .12), transparent 55%),
                var(--bg);
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: var(--text);
            font: 15px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            letter-spacing: .2px;
        }

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

        .container {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 18px
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(12px);
            background: linear-gradient(to bottom, rgba(11, 13, 18, .85), rgba(11, 13, 18, .45));
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 12px;
        }

        .nav-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 750;
            letter-spacing: .3px
        }

        .mark {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: radial-gradient(70% 70% at 30% 25%, rgba(255, 255, 255, .55), transparent 55%),
                linear-gradient(135deg, var(--accent), var(--accent2));
            box-shadow: 0 10px 22px rgba(124, 92, 255, .18);
            position: relative;
            overflow: hidden;
        }

        .mark:after {
            content: "";
            position: absolute;
            inset: 9px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, .35);
            transform: rotate(12deg);
        }

        .brand span {
            font-size: 16px
        }

        .links {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap
        }

        .links a {
            color: var(--muted);
            font-weight: 600;
            font-size: 13px
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 11px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            font-weight: 700;
            font-size: 13px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
            cursor: pointer;
            transition: transform .12s ease, background .12s ease, border-color .12s ease;
            user-select: none;
            white-space: nowrap;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .16)
        }

        .btn:active {
            transform: translateY(0px)
        }

        .btn.primary {
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #0b0d12;
        }

        .btn.primary:hover {
            filter: saturate(1.05) brightness(1.03)
        }

        .btn.ghost {
            background: transparent
        }

        .hamburger {
            display: none
        }

        .mobile {
            display: none
        }

        /* Hero */
        .hero {
            padding: 34px 0 18px
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 22px;
            align-items: stretch;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .05);
            border-radius: 999px;
            padding: 8px 10px;
            color: var(--muted);
            font-weight: 650;
            font-size: 12px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--good);
            box-shadow: 0 0 0 6px rgba(67, 240, 167, .12)
        }

        h1 {
            margin: 14px 0 10px;
            font-size: clamp(30px, 4.2vw, 52px);
            line-height: 1.05;
            letter-spacing: -.7px;
        }

        .sub {
            margin: 0 0 18px;
            font-size: clamp(15px, 1.6vw, 18px);
            color: var(--muted);
            max-width: 56ch;
        }

        .cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center
        }

        .meta-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 18px
        }

        .mini {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            color: var(--muted);
            font-weight: 650;
            font-size: 12px;
        }

        .mini b {
            color: var(--text)
        }

        .panel {
            border-radius: var(--radius2);
            border: 1px solid rgba(255, 255, 255, .10);
            background: linear-gradient(180deg, rgba(18, 22, 36, .88), rgba(18, 22, 36, .55));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .panel-inner {
            padding: var(--pad)
        }

        /* Lead form */
        .form-title {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px
        }

        .form-title h3 {
            margin: 0;
            font-size: 16px;
            letter-spacing: -.2px
        }

        .form-title p {
            margin: 6px 0 0;
            color: var(--muted);
            font-size: 13px
        }

        form {
            margin-top: 14px
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px
        }

        label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--muted);
            margin: 10px 0 6px
        }

        input,
        select,
        textarea {
            width: 100%;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(0, 0, 0, .18);
            padding: 11px 12px;
            color: var(--text);
            outline: none;
            transition: border-color .12s ease, background .12s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: rgba(255, 255, 255, .4);
            background: rgba(255, 255, 255, .1);
            outline: none
        }

        .input-error {
            border-color: #ff6b6b !important;
        }

        .error-message {
            color: #ff6b6b;
            font-size: 13px;
            margin-top: 6px;
            display: block;
            text-align: left;
            width: 100%;
        }

        .checkbox-row {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .checkbox-row input {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            accent-color: var(--accent2);
        }

        .checkbox-row label {
            margin: 0;
            font-weight: 650;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.35;
            flex: 1;
        }

        textarea {
            resize: vertical;
            min-height: 100px
        }

        .form-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
            flex-wrap: wrap
        }

        .fineprint {
            font-size: 11px;
            color: var(--muted2);
            line-height: 1.4;
            max-width: 72ch
        }

        .fineprint a {
            text-decoration: underline;
            text-underline-offset: 3px
        }

        /* Sections */
        section {
            padding: 28px 0;
            background: transparent
        }

        /* Optional section background variants */
        .section-dark {
            background: linear-gradient(180deg, rgba(11, 13, 18, .85), rgba(11, 13, 18, .65))
        }

        .section-soft {
            background: radial-gradient(closest-side, rgba(255, 255, 255, 0.04), transparent);
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 14px
        }

        .section-head h2 {
            margin: 0;
            font-size: clamp(18px, 2.2vw, 28px);
            letter-spacing: -.3px
        }

        .section-head p {
            margin: 0;
            color: var(--muted);
            max-width: 70ch
        }

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

        .card {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            padding: 16px;
            box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
            min-height: 120px;
        }

        .card h4 {
            margin: 0 0 6px;
            font-size: 14px
        }

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

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 9px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .12);
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .2px;
            background: rgba(0, 0, 0, .10);
        }

        .steps {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .step {
            display: flex;
            gap: 12px;
            align-items: flex-start
        }

        .num {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(124, 92, 255, .85), rgba(40, 211, 255, .75));
            color: #0b0d12;
            font-weight: 900;
            flex: 0 0 auto;
        }

        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        /* FAQ */
        .faq {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            align-items: start;
        }

        details {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            overflow: hidden;
            transition: background .2s ease, border-color .2s ease;
        }

        details[open] {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(255, 255, 255, .18);
        }

        summary {
            cursor: pointer;
            font-weight: 800;
            list-style: none;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: color .2s ease;
        }

        summary:hover {
            color: #fff;
        }

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

        summary::after {
            content: "+";
            font-size: 18px;
            font-weight: 400;
            color: var(--muted);
            transition: transform .3s ease, color .3s ease;
            line-height: 1;
        }

        details[open] summary::after {
            transform: rotate(45deg);
            color: var(--accent2);
        }

        details p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            padding: 0 20px 20px;
            line-height: 1.6;
            opacity: .9;
        }

        /* Footer */
        footer {
            padding: 22px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, .07);
            color: var(--muted)
        }

        .foot {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap
        }

        .foot small {
            color: var(--muted2)
        }

        /* Responsive */
        @media (max-width: 940px) {
            .hero-grid {
                grid-template-columns: 1fr
            }

            .cards {
                grid-template-columns: 1fr
            }

            .steps {
                grid-template-columns: 1fr
            }

            .split {
                grid-template-columns: 1fr
            }

            .faq {
                grid-template-columns: 1fr
            }
        }

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

            .hamburger {
                display: inline-flex
            }

            .hidden-mobile {
                display: none !important;
            }

            .mobile {
                padding: 10px 0 14px
            }

            .mobile.open {
                display: block
            }

            .mobile a {
                display: block;
                padding: 10px 0;
                color: var(--muted);
                font-weight: 700
            }

            .mobile a:hover {
                color: var(--text)
            }

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

        /* Toast */
        .toast {
            position: fixed;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            background: #ffffff;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 99px;
            padding: 12px 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
            color: #0b0d12;
            font-weight: 700;
            font-size: 14px;
            display: none;
            z-index: 1000;
            max-width: calc(100% - 40px);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }