
    .wx-assess-wrap {
        --wx-ink: #0B1220;
        --wx-ink-soft: #4B5567;
        --wx-bg: #F5F7FA;
        --wx-card: #FFFFFF;
        --wx-teal: #0EA5A8;
        --wx-teal-soft: rgba(14, 165, 168, 0.12);
        --wx-amber: #F59E0B;
        --wx-line: #E2E8F0;
        font-family: 'IBM Plex Sans', system-ui, sans-serif;
        color: var(--wx-ink);
    }

    .wx-assess-wrap .wx-display {
        font-family: 'Archivo', system-ui, sans-serif;
    }

    .wx-assess-wrap .wx-mono {
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: 0.08em;
    }

    /* ---------- Spotlight section ---------- */
    .wx-spotlight {
        background: var(--wx-bg);
        padding: 5.5rem 0;
    }

    .wx-spotlight__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--wx-teal);
        margin-bottom: 1rem;
    }

    .wx-spotlight__eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--wx-teal);
        box-shadow: 0 0 0 4px var(--wx-teal-soft);
    }

    .wx-spotlight__title {
        font-size: clamp(2rem, 3.2vw, 2.75rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }

    .wx-spotlight__lead {
        font-size: 1.1rem;
        color: var(--wx-ink-soft);
        max-width: 36rem;
        margin-bottom: 1.75rem;
    }

    .wx-spotlight__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2.25rem;
    }

    .wx-spotlight__tags span {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.4rem 0.75rem;
        border: 1px solid var(--wx-line);
        border-radius: 100px;
        color: var(--wx-ink-soft);
        background: var(--wx-card);
    }

    .wx-spotlight__cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--wx-ink);
        text-decoration: none;
        border-bottom: 2px solid var(--wx-teal);
        padding-bottom: 2px;
        transition: gap 0.15s ease, color 0.15s ease;
    }

    .wx-spotlight__cta:hover {
        gap: 0.8rem;
        color: var(--wx-teal);
    }

    .wx-spotlight__cta:focus-visible {
        outline: 2px solid var(--wx-teal);
        outline-offset: 4px;
    }

    /* ---------- Signature RF-sweep visual ---------- */
    .wx-sweep {
        position: relative;
        min-height: 420px;
    }

    .wx-sweep__svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .wx-sweep__beam {
        transform-origin: 120px 120px;
        animation: wx-sweep-rotate 7s linear infinite;
    }

    @keyframes wx-sweep-rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    @media (prefers-reduced-motion: reduce) {
        .wx-sweep__beam { animation: none; }
    }

    .wx-sweep__card {
        position: absolute;
        right: 0;
        bottom: 0;
        width: min(320px, 88%);
        background: var(--wx-card);
        border-radius: 16px;
        box-shadow: 0 24px 48px -16px rgba(11, 18, 32, 0.22);
        border: 1px solid var(--wx-line);
        overflow: hidden;
    }

    .wx-sweep__card-header {
        background: var(--wx-ink);
        color: #fff;
        padding: 1.25rem 1.5rem;
    }

    .wx-sweep__card-header .wx-mono {
        font-size: 0.68rem;
        color: var(--wx-amber);
        display: block;
        margin-bottom: 0.25rem;
    }

    .wx-sweep__card-header h3 {
        font-family: 'Archivo', sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        margin: 0;
    }

    .wx-sweep__card-body {
        padding: 1.5rem;
    }

    .wx-sweep__check-list {
        list-style: none;
        margin: 0 0 1.5rem;
        padding: 0;
    }

    .wx-sweep__check-list li {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 0.92rem;
        margin-bottom: 0.7rem;
    }

    .wx-sweep__check-list li:last-child {
        margin-bottom: 0;
    }

    .wx-sweep__check {
        flex: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--wx-teal-soft);
        color: var(--wx-teal);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
    }

    .wx-sweep__btn {
        display: block;
        text-align: center;
        background: var(--wx-ink);
        color: #fff;
        font-weight: 600;
        font-size: 0.92rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.15s ease;
    }

    .wx-sweep__btn:hover {
        background: var(--wx-teal);
    }

    .wx-sweep__btn:focus-visible {
        outline: 2px solid var(--wx-amber);
        outline-offset: 3px;
    }

    @media (max-width: 991.98px) {
        .wx-sweep {
            min-height: 320px;
            margin-top: 1.5rem;
        }
        .wx-sweep__card {
            position: relative;
            margin: 2rem auto 0;
            width: 100%;
        }
        .wx-sweep__svg {
            opacity: 0.6;
        }
    }

    /* ---------- Cross-sell banner ---------- */
    .wx-banner {
        background: var(--wx-ink);
        padding: 2.5rem 0;
    }

    .wx-banner__eyebrow {
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--wx-amber);
        display: block;
        margin-bottom: 0.5rem;
    }

    .wx-banner__text {
        color: #E6EAF2;
        font-size: 1.05rem;
        margin: 0;
    }

    .wx-banner__text strong {
        color: #fff;
    }

    .wx-banner__cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--wx-teal);
        color: #fff;
        font-weight: 600;
        font-size: 0.92rem;
        padding: 0.85rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.15s ease;
    }

    .wx-banner__cta:hover {
        background: var(--wx-amber);
        color: var(--wx-ink);
    }

    .wx-banner__cta:focus-visible {
        outline: 2px solid var(--wx-amber);
        outline-offset: 3px;
    }