        :root {
            --bg0: #05070b;
            --bg1: #07120c;
            --card: rgba(255, 255, 255, .06);
            --card2: rgba(255, 255, 255, .08);
            --border: rgba(255, 255, 255, .10);
            --text: #e6edf6;
            --muted: rgba(230, 237, 246, .72);
            --muted2: rgba(230, 237, 246, .55);
            --green: #2ee59d;
            --green2: #11c58a;
            --black: #05070b;
            --shadow: 0 20px 50px rgba(0, 0, 0, .45);
            --radius: 18px;
            --radius2: 14px;
            --page-gutter: clamp(16px, 4vw, 24px);
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
            color: var(--text);

            /* Base background only (gradients moved to body::before to avoid seams) */
            background: linear-gradient(180deg, var(--bg0), var(--bg1));
            position: relative;

            overflow-x: hidden;
        }

        /* One continuous background canvas across the whole page */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(900px 600px at 20% 10%, rgba(46, 229, 157, .18), transparent 55%),
                radial-gradient(800px 500px at 80% 30%, rgba(17, 197, 138, .14), transparent 60%),
                radial-gradient(900px 700px at 50% 100%, rgba(255, 255, 255, .06), transparent 60%),
                linear-gradient(180deg, var(--bg0), var(--bg1));
        }

        a {
            color: inherit;
        }

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

        /* Nav */
        .nav {
            position: sticky;
            top: 0;
            z-index: 10;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            background: rgba(5, 7, 11, .55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px max(var(--page-gutter), env(safe-area-inset-right));
            padding-left: max(var(--page-gutter), env(safe-area-inset-left));
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            letter-spacing: -.02em;
            text-decoration: none;
        }

        .brand-mark {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background:
                radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, .35), transparent 60%),
                linear-gradient(135deg, rgba(46, 229, 157, .95), rgba(17, 197, 138, .7));
            box-shadow: 0 12px 30px rgba(46, 229, 157, .15);
            position: relative;
        }

        .brand-mark:after {
            content: "";
            position: absolute;
            inset: 8px;
            border-radius: 10px;
            border: 2px solid rgba(5, 7, 11, .65);
            opacity: .55;
        }

        .brand-text {
            line-height: 1.05;
            font-size: 16px;
        }

        .brand-text b {
            display: block;
            font-size: 18px;
        }

        .nav-spacer {
            flex: 1;
        }

        .nav-links {
            display: flex;
            gap: 22px;
            align-items: center;
            font-weight: 700;
            color: rgba(230, 237, 246, .82);
        }

        .nav-links a {
            text-decoration: none;
            opacity: .85;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 12px;
            padding: 10px 14px;
            font-weight: 800;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            text-decoration: none;
            transition: transform .08s ease, background .15s ease, border-color .15s ease;
            user-select: none;
        }

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

        .btn.primary {
            background: linear-gradient(135deg, rgba(46, 229, 157, .95), rgba(17, 197, 138, .8));
            border-color: rgba(46, 229, 157, .45);
            color: #04110b;
            box-shadow: 0 18px 40px rgba(46, 229, 157, .18);
        }

        .btn.primary:hover {
            border-color: rgba(46, 229, 157, .65);
            background: linear-gradient(135deg, rgba(46, 229, 157, 1), rgba(17, 197, 138, .9));
        }

        .btn:disabled {
            opacity: .55;
            cursor: not-allowed;
            transform: none;
        }

        /* Layout */
        .hero-wrap {
            padding-top: 44px;
            padding-bottom: 70px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 440px;
            gap: 34px;
            align-items: start;
        }

        /* Left hero */
        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(46, 229, 157, .28);
            background: rgba(46, 229, 157, .08);
            color: rgba(230, 237, 246, .9);
            font-weight: 800;
            font-size: 13px;
        }

        .kicker .dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--green);
            box-shadow: 0 0 0 4px rgba(46, 229, 157, .15);
        }

        h1 {
            margin: 14px 0 10px;
            font-size: 52px;
            line-height: 1.02;
            letter-spacing: -0.03em;
        }

        .accent {
            background: linear-gradient(135deg, rgba(46, 229, 157, 1), rgba(17, 197, 138, .8));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .sub {
            color: var(--muted);
            font-weight: 650;
            font-size: 16px;
            line-height: 1.6;
            max-width: 52ch;
            margin-top: 10px;
        }

        .bullets {
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
            max-width: 56ch;
        }

        .bullets li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: rgba(230, 237, 246, .88);
            font-weight: 700;
        }

        .tick {
            width: 22px;
            height: 22px;
            border-radius: 8px;
            background: rgba(46, 229, 157, .12);
            border: 1px solid rgba(46, 229, 157, .25);
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            margin-top: 1px;
        }

        .tick:before {
            content: "";
            width: 10px;
            height: 10px;
            background: var(--green);
            clip-path: polygon(14% 54%, 0 68%, 36% 100%, 100% 24%, 84% 10%, 36% 72%);
        }

        .trust {
            margin-top: 18px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .trust .pill {
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .05);
            color: rgba(230, 237, 246, .85);
            font-weight: 800;
            font-size: 12px;
        }

        .trust .pill b {
            color: var(--text);
        }

        /* Wizard card */
        .card {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .12);
            background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .card-head {
            padding: 18px 18px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            background: rgba(255, 255, 255, .04);
        }

        .card-head h2 {
            margin: 0;
            font-size: 20px;
            letter-spacing: -.02em;
        }

        .card-head p {
            margin: 6px 0 0;
            color: var(--muted);
            font-weight: 650;
            font-size: 13px;
            line-height: 1.45;
        }

        .card-body {
            padding: 18px;
        }

        .wizard {
            display: grid;
            grid-template-columns: 30px 1fr;
            gap: 14px;
            align-items: start;
        }

        .rail {
            position: relative;
            padding-top: 4px;
        }

        .rail:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 6px;
            bottom: 10px;
            width: 2px;
            transform: translateX(-50%);
            background: linear-gradient(180deg, rgba(46, 229, 157, .55), rgba(46, 229, 157, .06));
            border-radius: 99px;
        }

        .dot {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 2px solid rgba(46, 229, 157, .45);
            background: rgba(5, 7, 11, .9);
            display: grid;
            place-items: center;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .dot .inner {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(46, 229, 157, .0);
        }

        .dot.active {
            border-color: rgba(46, 229, 157, .9);
            box-shadow: 0 0 0 4px rgba(46, 229, 157, .14);
        }

        .dot.active .inner {
            background: rgba(46, 229, 157, 1);
        }

        .dot.done {
            background: rgba(46, 229, 157, .95);
            border-color: rgba(46, 229, 157, .95);
        }

        .dot.done .inner {
            width: 10px;
            height: 10px;
            background: #06120c;
            clip-path: polygon(14% 54%, 0 68%, 36% 100%, 100% 24%, 84% 10%, 36% 72%);
        }

        .spacer {
            height: 118px;
        }

        /* tuned for our step heights */
        .step {
            padding-bottom: 18px;
        }

        .step-title {
            font-weight: 900;
            letter-spacing: -.01em;
            font-size: 14px;
        }

        .step-hint {
            color: var(--muted2);
            font-weight: 700;
            font-size: 12px;
            margin-top: 3px;
        }

        label {
            display: block;
            margin-top: 12px;
            font-weight: 800;
            font-size: 13px;
            color: rgba(230, 237, 246, .92);
        }

        input {
            width: 100%;
            margin-top: 8px;
            padding: 12px 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(5, 7, 11, .55);
            color: var(--text);
            outline: none;
            font-size: 14px;
        }

        select {
            width: 100%;
            margin-top: 8px;
            padding: 12px 46px 12px 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            -webkit-appearance: none;
            appearance: none;
            background-color: rgba(5, 7, 11, .55);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23b8c3d4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 14px 9px;
            color: var(--text);
            outline: none;
            font-size: 14px;
        }

        input::placeholder {
            color: rgba(230, 237, 246, .45);
        }

        input:focus,
        select:focus {
            border-color: rgba(46, 229, 157, .55);
            box-shadow: 0 0 0 4px rgba(46, 229, 157, .12);
        }

        .row-actions {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }

        .row-actions .btn {
            flex: 1;
            height: 44px;
            border-radius: 14px;
        }

        .row-actions .btn.secondary {
            background: rgba(255, 255, 255, .03);
            border-color: rgba(255, 255, 255, .12);
            color: rgba(230, 237, 246, .9);
        }

        .company {
            margin-top: 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
            padding: 12px 12px;
            display: none;
        }

        .company b {
            display: block;
            font-size: 13px;
            letter-spacing: .01em;
        }

        .company .meta {
            margin-top: 6px;
            color: rgba(230, 237, 246, .8);
            font-weight: 700;
            font-size: 12px;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }

        .company .addr {
            margin-top: 6px;
            color: rgba(230, 237, 246, .7);
            font-weight: 700;
            font-size: 12px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .error {
            margin-top: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 75, 75, .35);
            background: rgba(255, 75, 75, .10);
            color: rgba(255, 190, 190, .95);
            font-weight: 800;
            font-size: 13px;
            display: none;
        }

        /* Option list like your screenshots (radio blocks) */
        .option {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            padding: 12px 12px;
            margin-top: 10px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .03);
            cursor: pointer;
            user-select: none;
        }

        .option:hover {
            background: rgba(255, 255, 255, .05);
            border-color: rgba(255, 255, 255, .14);
        }

        .option input {
            width: auto;
            margin-top: 3px;
        }

        .option .t {
            font-weight: 900;
            font-size: 14px;
            letter-spacing: -.01em;
        }

        .option .s {
            margin-top: 4px;
            color: var(--muted2);
            font-weight: 750;
            font-size: 12px;
            line-height: 1.35;
        }

        .fineprint {
            margin-top: 10px;
            color: var(--muted2);
            font-weight: 650;
            font-size: 12px;
            line-height: 1.45;
        }

        .divider {
            margin-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 12px;
            color: rgba(230, 237, 246, .68);
            font-weight: 700;
            font-size: 12px;
        }

        .hidden {
            display: none !important;
        }

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

            h1 {
                font-size: 44px;
            }
        }

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

            h1 {
                font-size: 38px;
            }
        }

        /* --- About / Info section --- */
        .info-section {
            position: relative;
            margin-top: 70px;
            padding: 56px 0 70px;
        }

        .info-section::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(46, 229, 157, .20), transparent);
            opacity: .7;
        }

        .info-wrap {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 var(--page-gutter);
        }

        .info-head {
            text-align: center;
            max-width: 78ch;
            margin: 0 auto 26px;
        }

        .info-head h2 {
            margin: 0;
            font-size: 34px;
            letter-spacing: -0.02em;
        }

        .info-head p {
            margin: 10px 0 0;
            color: var(--muted);
            font-weight: 650;
            line-height: 1.6;
        }

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

        .how-card,
        .features-card {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .04);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
            padding: 18px 18px;
        }

        .how-card h3,
        .features-card h3 {
            margin: 0 0 12px;
            font-size: 16px;
            letter-spacing: -0.01em;
        }

        .steps {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .steps li {
            display: grid;
            grid-template-columns: 26px 1fr;
            gap: 12px;
            align-items: start;
            padding: 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(5, 7, 11, .35);
        }

        .step-nr {
            width: 26px;
            height: 26px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            font-weight: 900;
            color: #04110b;
            background: linear-gradient(135deg, rgba(46, 229, 157, 1), rgba(17, 197, 138, .85));
        }

        .steps b {
            display: block;
            font-size: 14px;
        }

        .steps .muted {
            margin-top: 4px;
            color: var(--muted2);
            font-weight: 650;
            font-size: 12px;
            line-height: 1.4;
        }

        .note {
            margin-top: 12px;
            padding: 12px;
            border-radius: 14px;
            border: 1px solid rgba(46, 229, 157, .22);
            background: rgba(46, 229, 157, .08);
            color: rgba(230, 237, 246, .88);
            font-weight: 650;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 34px 1fr;
            gap: 12px;
            padding: 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(5, 7, 11, .35);
            margin-top: 10px;
        }

        .icon-chip {
            width: 34px;
            height: 34px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            font-weight: 900;
            color: #04110b;
            background: rgba(46, 229, 157, .95);
        }

        .feature-row b {
            display: block;
            font-size: 14px;
        }

        .feature-row .muted {
            margin-top: 4px;
            color: var(--muted2);
            font-weight: 650;
            font-size: 12px;
            line-height: 1.4;
        }

        /* Pricing */
        .pricing {
            margin-top: 20px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .03);
            padding: 18px;
        }

        .pricing h3 {
            margin: 0 0 12px;
            font-size: 16px;
            letter-spacing: -0.01em;
        }

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

        .price-card {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(5, 7, 11, .35);
            padding: 16px;
        }

        .price-card.highlight {
            border-color: rgba(46, 229, 157, .28);
            background:
                radial-gradient(500px 200px at 20% 10%, rgba(46, 229, 157, .14), transparent 60%),
                rgba(5, 7, 11, .35);
        }

        .price-top b {
            display: block;
            font-size: 14px;
            letter-spacing: -.01em;
        }

        .price-top .muted {
            margin-top: 4px;
            color: var(--muted2);
            font-weight: 650;
            font-size: 12px;
        }

        .price {
            margin-top: 10px;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .amount {
            font-size: 36px;
            font-weight: 950;
            letter-spacing: -0.03em;
        }

        .currency {
            color: var(--muted);
            font-weight: 800;
        }

        .price-btn {
            width: 100%;
            margin-top: 12px;
            height: 44px;
            border-radius: 14px;
        }

        .price-list {
            margin: 12px 0 0;
            padding-left: 18px;
            color: rgba(230, 237, 246, .82);
            font-weight: 650;
            line-height: 1.8;
            font-size: 13px;
        }

        /* FAQ */
        .faq-section {
            position: relative;
            margin-top: 40px;
            padding: 14px 0 70px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 14px;
            align-items: stretch;
        }

        .faq-card {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .04);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
            padding: 16px;
        }

        .faq-card h3 {
            margin: 0;
            font-size: 16px;
            letter-spacing: -.01em;
        }

        .faq-card p {
            margin: 9px 0 0;
            color: var(--muted);
            font-weight: 650;
            line-height: 1.55;
            font-size: 14px;
        }

        /* responsive */
        @media (max-width: 980px) {
            .info-grid {
                grid-template-columns: 1fr;
            }

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

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

            .info-head h2 {
                font-size: 28px;
            }
        }

        /* Footer */
        footer[role="contentinfo"] {
            max-width: 1120px;
            margin: 42px auto 20px;
            padding: 16px var(--page-gutter);
            border-top: 1px solid rgba(255, 255, 255, .12);
            color: rgba(230, 237, 246, .72);
            font-size: 13px;
            line-height: 1.6;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px 24px;
            flex-wrap: wrap;
        }

        footer[role="contentinfo"] span {
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        footer[role="contentinfo"] a {
            color: rgba(230, 237, 246, .85);
            text-decoration: none;
            transition: color .15s ease, opacity .15s ease;
        }

        footer[role="contentinfo"] a:hover {
            color: var(--green);
            opacity: 1;
        }

        .footer-icon {
            display: inline-block;
            width: 75px;
            height: 24px;
            object-fit: contain;
            vertical-align: middle;
            opacity: .92;
            transition: opacity .15s ease, transform .15s ease;
        }

        a:hover .footer-icon {
            opacity: 1;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            footer[role="contentinfo"] {
                margin-top: 30px;
                padding: 16px;
                justify-content: center;
                text-align: center;
                font-size: 12px;
            }

            footer[role="contentinfo"] span {
                justify-content: center;
            }
        }

        @media (min-width: 1200px) {
            footer[role="contentinfo"] {
                max-width: 1360px;
                flex-wrap: nowrap;
                gap: 10px 16px;
                font-size: 12px;
            }

            footer[role="contentinfo"] span {
                white-space: nowrap;
            }

            footer[role="contentinfo"] span:last-child {
                margin-left: auto;
            }
        }
