
        .error {
            color: #c0392b !important;
            font-size: 10px !important;
            margin-top: 4px !important;
            text-transform: unset !important;
            font-weight: 500 !important;
        }
        :root {
            --navy: #065897;
            --navy-dark: #043d6b;
            --navy-mid: #0c73c2;
            --navy-light: #34a4fa;
            --gold: #feb600;
            --gold-light: #ffd45e;
            --gold-dim: rgba(254, 182, 0, 0.12);
            --dark: #172f42;
            --muted: #5a7a95;
            --bg: #f5f8fc;
            --white: #fff;
            --border: #dde8f4;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", sans-serif;
            background: var(--bg);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s ease, transform .65s ease;
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-28px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(28px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-1 {
            transition-delay: .1s !important;
        }

        .delay-2 {
            transition-delay: .2s !important;
        }

        .delay-3 {
            transition-delay: .3s !important;
        }

        .delay-4 {
            transition-delay: .4s !important;
        }

        /* ── GATE OVERLAY ── */
        #gate-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(4, 61, 107, 0.72);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
        }

        #gate-overlay.show {
            display: flex;
            animation: fadeIn .3s ease both;
        }

        .gate-box {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 36px;
            max-width: 420px;
            width: 90%;
            text-align: center;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
            position: relative;
            overflow: hidden;
        }

        .gate-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 20px 20px 0 0;
        }

        .gate-icon {
            font-size: 40px;
            margin-bottom: 14px;
        }

        .gate-box h3 {
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .gate-box h3 em {
            font-style: normal;
            color: var(--navy);
        }

        .gate-box p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 24px;
        }

        .gate-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 0 28px;
            height: 48px;
            width: 100%;
            justify-content: center;
            background: var(--gold);
            color: var(--dark);
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .04em;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(254, 182, 0, .35);
            transition: all .2s;
        }

        .gate-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .gate-dismiss {
            display: block;
            margin-top: 12px;
            font-size: 13px;
            color: #b0c4d4;
            cursor: pointer;
            text-decoration: underline;
        }

        /* ── CONTENT GATE (blur lock) ── */
        #gated-content {
            position: relative;
            transition: filter .6s ease, opacity .6s ease;
        }

        #gated-content.locked {
            filter: blur(6px);
            pointer-events: none;
            user-select: none;
        }

        #content-gate-bar {
            position: sticky;
            top: 72px;
            /* below the nav */
            z-index: 200;
            background: rgba(4, 61, 107, 0.94);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            padding: 14px 32px;
            border-bottom: 2px solid var(--gold);
            transition: opacity .5s ease, transform .5s ease;
        }

        #content-gate-bar.hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-8px);
        }

        .gate-bar-icon {
            font-size: 20px;
        }

        .gate-bar-text {
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: .03em;
        }

        .gate-bar-text em {
            font-style: normal;
            color: var(--gold);
        }

        .gate-bar-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0 22px;
            height: 38px;
            background: var(--gold);
            color: var(--dark);
            font-family: "Montserrat", sans-serif;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .04em;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(254, 182, 0, .4);
            transition: all .2s;
            white-space: nowrap;
        }

        .gate-bar-btn:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes riseUp {
            from {
                opacity: 0;
                transform: translateY(16px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes wipeX {
            from {
                transform: scaleX(0)
            }

            to {
                transform: scaleX(1)
            }
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(.9)
            }

            65% {
                transform: scale(1.03)
            }

            100% {
                opacity: 1;
                transform: scale(1)
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center
            }

            100% {
                background-position: 200% center
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-7px)
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(254, 182, 0, .5)
            }

            50% {
                box-shadow: 0 0 0 10px rgba(254, 182, 0, 0)
            }
        }

        /* ── URGENCY BAR ── */
        .urgency-bar {
            background: linear-gradient(90deg, #feb600 0%, #ffd45e 50%, #feb600 100%);
            background-size: 200% auto;
            animation: shimmer 3s linear infinite;
            padding: 10px 48px;
            text-align: center;
            font-family: "Montserrat", sans-serif;
            font-size: 12px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: .04em;
        }

        .urgency-bar span {
            font-weight: 500;
            margin: 0 10px;
        }

        /* ── NAV ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 20px rgba(6, 88, 151, .07);
            padding: 0 48px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 48px;
            width: auto;
            display: block;
        }

        .nav-tag {
            font-family: "Montserrat", sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
            text-align: center;
        }

        /* ── HERO + FORM ── */
        .hero {
            background: var(--navy);
            padding: 72px 48px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 88% 15%, rgba(52, 164, 250, .2) 0%, transparent 55%),
                radial-gradient(ellipse at 8% 85%, rgba(254, 182, 0, .1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1060px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 64px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .hero-left {
            animation: riseUp .6s ease .1s both;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--gold-dim);
            border: 1px solid rgba(254, 182, 0, .25);
            border-radius: 100px;
            padding: 6px 16px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 22px;
        }

        .hero-left h1 {
            font-family: "DM Serif Display", serif;
            font-size: clamp(34px, 4vw, 54px);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .hero-left h1 em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-sub {
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, .72);
            line-height: 1.7;
            max-width: 500px;
            margin-bottom: 32px;
        }

        .stat-pills {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .stat-pill {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            padding: 14px 18px;
            transition: background .2s;
        }

        .stat-pill:hover {
            background: rgba(255, 255, 255, .11);
        }

        .stat-num {
            font-family: "Montserrat", sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            flex-shrink: 0;
            min-width: 78px;
        }

        .stat-text {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .65);
            line-height: 1.5;
        }

        .stat-text strong {
            color: var(--white);
            font-weight: 700;
        }

        /* ── FORM ── */
        .form-card {
            background: var(--white);
            border-radius: 18px;
            padding: 32px 28px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
            animation: popIn .6s cubic-bezier(.4, 0, .2, 1) .2s both;
            position: relative;
            overflow: hidden;
        }

        .form-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

        .form-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(254, 182, 0, .1);
            border: 1px solid rgba(254, 182, 0, .25);
            border-radius: 100px;
            padding: 4px 12px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #b38600;
            margin-bottom: 14px;
        }

        .form-card h2 {
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .form-card h2 em {
            font-style: normal;
            color: var(--navy);
        }

        .form-tagline {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .field {
            margin-bottom: 14px;
        }

        .field label {
            display: block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 5px;
        }

        .field label span {
            color: #c0392b;
        }

        .field input,
        .field select {
            width: 100%;
            height: 44px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 0 14px;
            font-family: "DM Sans", sans-serif;
            font-size: 14px;
            color: var(--dark);
            background: var(--white);
            transition: border-color .2s, box-shadow .2s;
            outline: none;
        }

        .field input:focus,
        .field select:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(6, 88, 151, .1);
        }

        .field input::placeholder {
            color: #b0c4d4;
        }

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

        #otherWrap {
            display: none;
            margin-top: 8px;
        }

        #otherWrap input {
            height: 40px;
        }

        .submit-btn {
            width: 100%;
            height: 52px;
            margin-top: 6px;
            background: var(--gold);
            color: var(--dark);
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .05em;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(254, 182, 0, .4);
            transition: all .2s;
        }

        .submit-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .form-privacy {
            font-size: 12px;
            color: #b0c4d4;
            text-align: center;
            margin-top: 10px;
            line-height: 1.6;
        }

        .form-privacy a {
            color: var(--navy);
            text-decoration: none;
        }

        .success-msg {
            display: none;
            text-align: center;
            padding: 24px 0;
        }

        .success-msg .check {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .success-msg h3 {
            font-family: "Montserrat", sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .success-msg p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── WHO YOU ARE ── */
        .who {
            background: var(--white);
            padding: 80px 48px;
            border-bottom: 1px solid var(--border);
        }

        .who-inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .section-tag {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--navy);
            display: block;
            margin-bottom: 10px;
        }

        .who h2,
        .how h2,
        .threat h2,
        .solution h2 {
            font-family: "DM Serif Display", serif;
            font-size: clamp(26px, 3vw, 38px);
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .who-sub {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 680px;
            margin-bottom: 44px;
        }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .who-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 16px;
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s, border-color .3s;
            cursor: default;
            min-height: 220px;
        }

        .who-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(6, 88, 151, .14);
            border-color: var(--navy);
        }

        .who-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 16px 16px 0 0;
        }

        .who-card.msp::before {
            background: linear-gradient(90deg, var(--navy), var(--navy-mid));
        }

        .who-card.mca::before {
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

        .who-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .who-card.msp .who-icon {
            background: rgba(6, 88, 151, .08);
        }

        .who-card.mca .who-icon {
            background: rgba(254, 182, 0, .12);
        }

        .who-title {
            font-family: "Montserrat", sans-serif;
            font-size: 17px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 3px;
            line-height: 1.2;
        }

        .who-subtitle {
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 10px;
        }

        .who-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .who-hint {
            font-size: 10px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: .1em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: .7;
        }

        .who-card.mca .who-hint {
            color: #b38600;
        }

        .who-reveal {
            position: absolute;
            inset: 0;
            border-radius: 14px;
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
        }

        .who-card.msp .who-reveal {
            background: var(--navy);
        }

        .who-card.mca .who-reveal {
            background: linear-gradient(135deg, #172f42 0%, #065897 100%);
        }

        .who-card:hover .who-reveal {
            opacity: 1;
            pointer-events: auto;
        }

        .who-reveal-label {
            font-family: "Montserrat", sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .who-card.msp .who-reveal-label {
            color: rgba(255, 255, 255, .45);
        }

        .who-card.mca .who-reveal-label {
            color: rgba(254, 182, 0, .6);
        }

        .who-reveal-items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .who-reveal-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px;
            border-radius: 100px;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            font-weight: 700;
        }

        .who-card.msp .who-reveal-item {
            background: rgba(255, 255, 255, .1);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, .15);
        }

        .who-card.mca .who-reveal-item {
            background: rgba(254, 182, 0, .15);
            color: var(--gold);
            border: 1px solid rgba(254, 182, 0, .28);
        }

        .who-reveal-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        /* ── HOW IT WORKS ── */
        .how {
            background: var(--bg);
            padding: 80px 48px;
            border-bottom: 1px solid var(--border);
        }

        .how-inner {
            max-width: 960px;
            margin: 0 auto;
            text-align: center;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative;
        }

        .steps-connector {
            position: absolute;
            top: 47px;
            left: calc(16.66% + 10px);
            right: calc(16.66% + 10px);
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--navy-mid) 50%, var(--navy) 100%);
            z-index: 0;
            border-radius: 2px;
        }

        .step {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 32px 20px 28px;
            position: relative;
            z-index: 1;
            margin: 0 8px;
            transition: transform .25s, box-shadow .25s;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 36px rgba(6, 88, 151, .1);
        }

        .step-badge {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            transition: transform .3s, box-shadow .3s;
            position: relative;
        }

        .step:hover .step-badge {
            transform: scale(1.1);
        }

        .step-badge-icon {
            display: block;
        }

        .step-badge svg {
            display: block;
        }

        .step-badge-num {
            font-family: "Montserrat", sans-serif;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-top: 2px;
            display: block;
        }

        /* Step 1 — gold */
        .step:nth-child(2) .step-badge {
            background: linear-gradient(135deg, #feb600, #ffd45e);
            color: var(--dark);
            box-shadow: 0 6px 20px rgba(254, 182, 0, .4);
        }

        /* Step 2 — navy mid */
        .step:nth-child(3) .step-badge {
            background: linear-gradient(135deg, #065897, #0c73c2);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(6, 88, 151, .35);
        }

        /* Step 3 — dark with gold ring */
        .step:nth-child(4) .step-badge {
            background: linear-gradient(135deg, #172f42, #065897);
            color: var(--gold);
            box-shadow: 0 6px 20px rgba(23, 47, 66, .35);
            border: 2.5px solid var(--gold);
        }

        .step-title {
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.65;
        }

        .step-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 14px;
            font-size: 11px;
            font-weight: 700;
            color: var(--navy);
            cursor: pointer;
            text-decoration: none;
        }

        .step-link:hover {
            color: var(--navy-mid);
        }

        /* ── THREAT ── */
        .threat {
            background: var(--white);
            padding: 80px 48px;
            border-bottom: 1px solid var(--border);
        }

        .threat-inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .threat h2 em {
            font-style: italic;
            color: var(--navy);
        }

        .threat-intro {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 680px;
            margin-bottom: 40px;
        }

        .threat-intro strong {
            color: var(--dark);
            font-weight: 600;
        }

        .threat-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 36px;
        }

        .tc {
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 28px 24px;
            position: relative;
            overflow: hidden;
            transition: transform .25s, box-shadow .25s;
        }

        .tc:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(6, 88, 151, .1);
        }

        .tc::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--navy-mid));
        }

        .tc-brand {
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 14px;
        }

        .tc-stat {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }

        .tc-num {
            font-family: "Montserrat", sans-serif;
            font-size: 38px;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }

        .tc-unit {
            font-size: 16px;
            font-weight: 800;
            color: var(--navy);
        }

        .tc-stat-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 10px;
        }

        .tc-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.65;
        }

        .tc-lock {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 12px;
            background: rgba(6, 88, 151, .08);
            border-radius: 6px;
            padding: 5px 10px;
            font-size: 10px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .retention-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: var(--navy);
            border-radius: 14px;
            overflow: hidden;
        }

        .ret-cell {
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, .1);
        }

        .ret-cell:last-child {
            border-right: none;
        }

        .ret-num {
            font-family: "Montserrat", sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .ret-label {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .65);
            line-height: 1.5;
        }

        .ret-label strong {
            color: var(--white);
            font-weight: 700;
        }

        /* ── SOLUTION ── */
        .solution {
            background: var(--bg);
            padding: 80px 48px;
            border-bottom: 1px solid var(--border);
        }

        .solution-inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .solution h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .solution-intro {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 680px;
            margin-bottom: 40px;
        }

        /* residual spotlight — simplified */
        .residual-spotlight {
            background: var(--navy);
            border-radius: 18px;
            padding: 44px 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .residual-spotlight::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(254, 182, 0, .15) 0%, transparent 60%);
            pointer-events: none;
        }

        .residual-eyebrow {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .residual-headline {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .residual-headline em {
            font-style: normal;
            color: var(--gold);
        }

        .residual-sub {
            font-size: 16px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.65;
            max-width: 560px;
            margin: 0 auto 36px;
            position: relative;
            z-index: 1;
        }

        /* deal examples */
        .deal-row {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

        .deal-card {
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 14px;
            padding: 24px 28px;
            text-align: center;
            min-width: 200px;
            flex: 1;
            max-width: 240px;
            transition: background .2s;
        }

        .deal-card:hover {
            background: rgba(255, 255, 255, .14);
        }

        .deal-size {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 8px;
        }

        .deal-amount {
            font-family: "Montserrat", sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 4px;
        }

        .deal-arrow {
            font-size: 18px;
            color: var(--gold);
            margin: 6px 0;
        }

        .deal-earn {
            font-family: "Montserrat", sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .deal-earn-label {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, .5);
            margin-top: 4px;
        }

        .deal-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
            font-weight: 900;
            color: rgba(255, 255, 255, .2);
            padding: 0 4px;
        }

        .deal-highlight {
            background: var(--gold);
            border-radius: 14px;
            padding: 24px 28px;
            text-align: center;
            min-width: 200px;
            flex: 1;
            max-width: 240px;
        }

        .deal-highlight .deal-size {
            color: rgba(23, 47, 66, .55);
        }

        .deal-highlight .deal-amount {
            color: rgba(23, 47, 66, .65);
        }

        .deal-highlight .deal-arrow {
            color: var(--dark);
        }

        .deal-highlight .deal-earn {
            color: var(--dark);
        }

        .deal-highlight .deal-earn-label {
            color: rgba(23, 47, 66, .6);
        }

        .deal-note {
            font-size: 13px;
            color: rgba(255, 255, 255, .35);
            position: relative;
            z-index: 1;
        }

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

        .benefit {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 26px 22px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: transform .25s, box-shadow .25s;
        }

        .benefit:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(6, 88, 151, .08);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(6, 88, 151, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .benefit-title {
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .benefit-desc {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ── PROCESSORS ── */
        .processors {
            background: var(--white);
            padding: 60px 48px;
            border-bottom: 1px solid var(--border);
        }

        .processors-inner {
            max-width: 960px;
            margin: 0 auto;
            text-align: center;
        }

        .proc-heading {
            font-family: "Montserrat", sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 32px;
        }

        .proc-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .proc-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 14px 24px;
            transition: all .25s;
        }

        .proc-badge:hover {
            background: var(--navy);
            border-color: var(--navy);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(6, 88, 151, .18);
        }

        .proc-badge:hover .proc-name {
            color: var(--white);
        }

        .proc-badge:hover .proc-logo-svg path,
        .proc-badge:hover .proc-logo-svg rect,
        .proc-badge:hover .proc-logo-svg circle {
            fill: var(--white) !important;
        }

        .proc-logo-svg {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .proc-name {
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            font-weight: 800;
            color: var(--dark);
        }

        /* ── BOTTOM CTA ── */
        .bottom-cta {
            background: var(--navy);
            padding: 80px 48px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .bottom-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(254, 182, 0, .12) 0%, transparent 60%);
            pointer-events: none;
        }

        .bottom-cta-inner {
            max-width: 660px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .bottom-cta h2 {
            font-family: "DM Serif Display", serif;
            font-size: clamp(28px, 3.5vw, 46px);
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .bottom-cta h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .bottom-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .bottom-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 40px;
            height: 56px;
            background: var(--gold);
            color: var(--dark);
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: .05em;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(254, 182, 0, .4);
            transition: all .2s;
        }

        .bottom-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(254, 182, 0, .45);
        }

        .urgency-note {
            margin-top: 18px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .04em;
        }

        /* ── CONTACT ── */
        .contact {
            background: var(--bg);
            padding: 64px 48px;
            border-bottom: 1px solid var(--border);
        }

        .contact-inner {
            max-width: 760px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .contact h3 {
            font-family: "DM Serif Display", serif;
            font-size: 26px;
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .contact h3 em {
            font-style: italic;
            color: var(--navy);
        }

        .contact-sub {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.65;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cl {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-size: 13px;
            color: var(--dark);
            text-decoration: none;
            transition: all .2s;
        }

        .cl:hover {
            border-color: var(--navy);
            background: rgba(6, 88, 151, .03);
            transform: translateX(3px);
        }

        .cl-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(6, 88, 151, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .cl-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .cl-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .cl-val {
            font-weight: 600;
            color: var(--navy);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--dark);
            padding: 28px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-logo img {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: .6;
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
        }

        /* Responsive adjustments */
         @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 768px) {
            .field-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .who-grid,
            .steps,
            .threat-grid,
            .retention-strip {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .deal-row {
                flex-direction: column;
                align-items: center !important;
            }

            nav {
                height: 85px;
                flex-direction: column;
                align-items: center;
                justify-content: center;

            }
        }

        @media (max-width: 596px) {
            .contact-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefits {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 500px) {
            #content-gate-bar {
                flex-direction: column;
                gap: 10px;
            }
        }
        .unlock-all #gated-content.locked {
    filter: none !important;
    pointer-events: auto !important;
    user-select: auto !important;
}
.unlock-all #gate-overlay {
    display: none !important;
}
.unlock-all #content-gate-bar {
    display: none !important;
}
.loader-div {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    overflow: hidden;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}
.form-card-flex {
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
    }
    .success-msg {
        display: none;
        flex: 1 1 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 320px;
    }
    .success-msg.active {
        display: flex !important;
    }
    @media (max-width: 900px) {
        .form-card-flex { min-height: 0; }
        .success-msg { min-height: 180px; }
    }
@media (max-width: 575.98px) {
            .hero,
            .who,
            .how,
            .threat,
            .solution,
            .bottom-cta,
            .contact,
            .processors {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            nav,
            footer {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .urgency-bar {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .mobile-none {
                display: none !important;
            }
        }