:root {
    --bg: #031027;
    --bg2: #061735;
    --panel: rgba(8, 25, 55, .86);
    --panel2: rgba(5, 18, 42, .94);
    --panel3: rgba(11, 31, 66, .64);
    --border: rgba(107, 145, 226, .24);
    --border2: rgba(100, 147, 255, .38);

    --white: #f5f8ff;
    --text: #d9e4fb;
    --muted: #91a3c8;

    --blue: #1d7dff;
    --blue2: #3b98ff;
    --violet: #6463ff;
    --cyan: #3db4ff;

    --green: #17d995;
    --red: #ff455d;
    --orange: #ff8a22;
    --yellow: #ffc21c;
    --low: #22aaff;
    --info: #899cbd;

    --container: 1320px;

    --shadow:
        0 30px 80px rgba(0, 0, 0, .34),
        0 0 70px rgba(34, 114, 255, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(34, 89, 196, .28),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #041229 0%,
            #031029 52%,
            #020b1d 100%
        );

    min-height: 100vh;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

.hidden {
    display: none !important;
}

.wm-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );
    margin: 0 auto;
}


/* SUPPORT BAR */

.support-bar {
    position: relative;
    z-index: 50;

    border-bottom:
        1px solid rgba(87, 129, 218, .18);

    background:
        linear-gradient(
            90deg,
            #071a3d,
            #0a214c,
            #071a3d
        );
}

.support-inner {
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.support-message {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    color: #d4dff3;
}

.support-shield {
    color: #8eb1ff;
}

.support-button {
    min-height: 28px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(139, 168, 228, .35);

    border-radius: 7px;

    background:
        rgba(255, 255, 255, .045);

    font-size: 12px;
    font-weight: 700;

    transition: .2s ease;
}

.support-button:hover {
    background:
        rgba(255, 255, 255, .1);
}

.support-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    border: 0;
    background: transparent;

    color: #9fb0d2;
    cursor: pointer;

    font-size: 21px;
}


/* HEADER */

.wm-header {
    position: relative;
    z-index: 40;

    border-bottom:
        1px solid rgba(80, 120, 208, .09);

    background:
        rgba(2, 13, 33, .72);

    backdrop-filter:
        blur(18px);
}

.header-inner {
    height: 82px;

    display: flex;
    align-items: center;
    gap: 32px;
}

.wm-brand {
    min-width: 270px;

    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;

    display: block;
}

.brand-mark svg {
    width: 100%;
    height: 100%;

    filter:
        drop-shadow(
            0 10px 18px rgba(49, 117, 255, .28)
        );
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    color: white;
    font-size: 17px;
    letter-spacing: -.02em;
}

.brand-copy small {
    margin-top: 2px;

    color: #899abb;
    font-size: 11px;
}

.wm-nav {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
}

.nav-link {
    position: relative;

    min-height: 82px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    color: #b8c5de;

    font-size: 13px;
    font-weight: 550;

    cursor: pointer;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: #54a8ff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #2c89ff,
            #59bdff
        );

    box-shadow:
        0 0 16px rgba(45, 144, 255, .5);
}

.nav-beta {
    margin-left: 7px;
    padding: 2px 6px;

    border-radius: 5px;

    background:
        rgba(73, 105, 255, .18);

    color: #8cb4ff;

    font-size: 9px;
    text-transform: uppercase;
}

.header-cta {
    min-height: 44px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border:
        1px solid rgba(78, 166, 255, .55);

    border-radius: 7px;

    color: white;

    background:
        linear-gradient(
            180deg,
            #1888ff,
            #0870ed
        );

    box-shadow:
        0 12px 30px rgba(9, 117, 255, .23);

    font-size: 13px;
    font-weight: 750;

    white-space: nowrap;

    transition:
        transform .18s ease,
        filter .18s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 125px);

    padding:
        32px 0 75px;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(48, 105, 232, .15),
            transparent 29%
        );

    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;

    max-width: 920px;
    margin: 0 auto 27px;

    text-align: center;
}

.hero-copy h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(42px, 4.1vw, 63px);

    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 820;
}

.hero-copy h1 span {
    color: #2d83ff;

    background:
        linear-gradient(
            90deg,
            #3a9dff,
            #236aff
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 720px;
    margin:
        14px auto 0;

    color: #a9b8d5;

    font-size: 14px;
    line-height: 1.55;
}

.network-orb {
    position: absolute;

    top: 105px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    opacity: .33;

    background:
        radial-gradient(
            circle,
            rgba(41, 124, 255, .15),
            transparent 63%
        );

    border:
        1px solid rgba(59, 127, 255, .07);

    pointer-events: none;
}

.network-orb::before {
    content: "";

    position: absolute;
    inset: 24px;

    border-radius: 50%;

    background-image:
        radial-gradient(
            circle,
            rgba(55, 133, 255, .8) 1.2px,
            transparent 1.5px
        );

    background-size:
        18px 18px;

    mask-image:
        radial-gradient(
            circle,
            black,
            transparent 69%
        );
}

.network-orb::after {
    content: "";

    position: absolute;
    inset: 72px 40px;

    border-top:
        1px solid rgba(57, 134, 255, .19);

    border-bottom:
        1px solid rgba(57, 134, 255, .13);

    transform: rotate(-14deg);
}

.orb-left {
    left: -125px;
}

.orb-right {
    right: -125px;
    transform: scaleX(-1);
}


/* SCANNER */

.scanner-shell {
    position: relative;
    z-index: 5;

    width: min(100%, 1080px);
    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid rgba(101, 144, 233, .35);

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            rgba(12, 34, 72, .9),
            rgba(4, 18, 43, .95)
        );

    box-shadow:
        var(--shadow);
}

.scanner-tabs {
    height: 48px;

    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    border-bottom:
        1px solid rgba(101, 144, 233, .23);
}

.scanner-tab {
    position: relative;

    border: 0;
    background: transparent;

    color: #b9c6df;

    font-size: 14px;
    font-weight: 580;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scanner-tab:hover {
    color: white;
}

.scanner-tab.active {
    color: white;
}

.scanner-tab.active::after {
    content: "";

    position: absolute;
    left: 21%;
    right: 21%;
    bottom: -1px;

    height: 2px;

    background:
        #3c83ff;

    box-shadow:
        0 0 14px rgba(52, 136, 255, .6);
}

.tab-icon {
    color: #73a7ff;
    font-size: 18px;
}

.tab-beta {
    padding: 2px 6px;

    border-radius: 4px;

    background:
        rgba(47, 111, 255, .18);

    color: #73a7ff;

    font-size: 9px;
}

.scanner-panel {
    display: none;

    padding: 14px;
}

.scanner-panel.active {
    display: block;
}

.url-scan-layout {
    min-height: 195px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 300px;

    overflow: hidden;

    border:
        1px solid rgba(101, 144, 233, .25);

    border-radius: 8px;

    background:
        linear-gradient(
            180deg,
            rgba(7, 23, 52, .58),
            rgba(3, 14, 35, .72)
        );
}

.scan-primary {
    padding: 18px 28px 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scan-globe {
    position: relative;

    width: 58px;
    height: 58px;

    margin:
        0 auto 14px;

    overflow: hidden;

    border:
        1.5px solid #4388ff;

    border-radius: 50%;

    box-shadow:
        0 0 30px rgba(47, 122, 255, .15);
}

.scan-globe::before,
.scan-globe::after {
    content: "";

    position: absolute;
    inset: 10px 0;

    border:
        1px solid #4a93ff;

    border-radius: 50%;
}

.scan-globe::after {
    inset: 0 17px;
}

.globe-lat,
.globe-long {
    position: absolute;
    background: rgba(78, 150, 255, .75);
}

.globe-lat {
    left: 6px;
    right: 6px;

    height: 1px;
}

.lat-one {
    top: 20px;
}

.lat-two {
    bottom: 20px;
}

.globe-long {
    top: 6px;
    bottom: 6px;

    width: 1px;
}

.long-one {
    left: 28px;
}

.long-two {
    display: none;
}

.scan-form {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 148px;

    gap: 10px;
}

.scan-input-wrap {
    min-height: 45px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border:
        1px solid rgba(120, 154, 228, .49);

    border-radius: 6px;

    background:
        rgba(2, 11, 29, .68);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.02);
}

.scan-link-icon {
    width: 44px;
    flex: 0 0 44px;

    display: flex;
    justify-content: center;

    color: #d6e4ff;

    font-size: 23px;
}

.scan-input-wrap input {
    width: 100%;
    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 13px;
}

.scan-input-wrap input::placeholder {
    color: #899ab9;
}

.scan-button {
    min-height: 45px;

    border:
        1px solid rgba(91, 160, 255, .5);

    border-radius: 6px;

    background:
        linear-gradient(
            180deg,
            #2587ff,
            #126bea
        );

    color: white;

    font-weight: 750;
    font-size: 12px;

    cursor: pointer;

    box-shadow:
        0 10px 28px rgba(11, 103, 238, .21);

    transition:
        transform .17s ease,
        filter .17s ease;
}

.scan-button:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.scan-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.scan-button.full,
.danger-button.full {
    width: 100%;
}

.trust-inline {
    margin-top: 15px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;

    color: #a9b7d0;

    font-size: 10px;
}

.trust-inline span::first-letter {
    color: var(--green);
}

.dns-preview {
    padding: 18px;

    border-left:
        1px solid rgba(101, 144, 233, .22);

    background:
        rgba(4, 16, 38, .35);

    text-align: center;
}

.dns-preview-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    color: white;

    font-size: 13px;
}

.dns-preview-title span {
    padding: 2px 7px;

    border:
        1px solid rgba(32, 200, 139, .3);

    border-radius: 4px;

    color: #40dcac;

    background:
        rgba(18, 188, 128, .09);

    font-size: 9px;
}

.dns-preview p {
    margin:
        8px 0 12px;

    color: #9fafcd;

    font-size: 11px;
    line-height: 1.4;
}

.dns-preview-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 6px;
}

.dns-preview-grid span {
    min-height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(91, 128, 210, .18);

    border-radius: 4px;

    background:
        rgba(17, 38, 79, .75);

    color: #c0d0ec;

    font-size: 9px;
}

.preview-open {
    margin-top: 11px;

    border: 0;
    background: transparent;

    color: #63a8ff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


/* TOOL PANELS */

.tool-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    padding:
        20px 20px 15px;
}

.tool-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(74, 139, 255, .37);

    border-radius: 50%;

    color: #62a6ff;

    font-size: 24px;
}

.eyebrow {
    color: #71a8ff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tool-heading h2 {
    margin:
        4px 0 5px;

    color: white;

    font-size: 22px;
    letter-spacing: -.025em;
}

.tool-heading p {
    margin: 0;

    color: #95a7c8;

    font-size: 12px;
}

.dns-form {
    padding:
        4px 20px 20px;
}

.dns-form-row {
    display: grid;
    grid-template-columns:
        1.4fr .8fr 155px;

    gap: 9px;
}

.dns-form input,
.deep-input {
    min-height: 43px;

    padding: 0 14px;

    border:
        1px solid rgba(107, 147, 226, .3);

    border-radius: 6px;

    outline: none;

    background:
        rgba(2, 12, 31, .72);

    color: white;

    font-size: 12px;
}

.dns-form input::placeholder,
.deep-input::placeholder {
    color: #7388ae;
}

.dns-results {
    padding:
        5px 20px 20px;
}

.dns-score-row {
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);

    gap: 8px;

    margin-bottom: 12px;
}

.dns-check {
    padding: 10px;

    border:
        1px solid rgba(103, 144, 226, .18);

    border-radius: 6px;

    background:
        rgba(9, 27, 58, .5);
}

.dns-check strong {
    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 11px;
}

.dns-check small {
    color: #8296bb;

    font-size: 9px;
    line-height: 1.35;
}

.dns-check.pass {
    border-color:
        rgba(23, 217, 149, .26);
}

.dns-check.warn {
    border-color:
        rgba(255, 194, 28, .29);
}

.record-groups {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.record-card {
    min-height: 120px;

    overflow: hidden;

    border:
        1px solid rgba(103, 144, 226, .18);

    border-radius: 6px;

    background:
        rgba(5, 19, 43, .62);
}

.record-card header {
    min-height: 35px;
    padding: 0 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid rgba(103, 144, 226, .14);
}

.record-card header strong {
    color: white;
    font-size: 10px;
}

.record-card header span {
    color: #689dff;

    font-size: 8px;
    letter-spacing: .1em;
}

.record-card > div {
    padding: 10px;

    color: #a8bad9;

    font-size: 9px;
    line-height: 1.45;

    word-break: break-word;
}

.record-line {
    padding: 5px 0;

    border-bottom:
        1px solid rgba(100, 140, 220, .08);
}

.record-line:last-child {
    border-bottom: 0;
}


/* DEEP SCAN */

.deep-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 410px;

    gap: 22px;

    padding: 14px;
}

.deep-intro,
.deep-workflow {
    padding: 21px;

    border:
        1px solid rgba(101, 144, 233, .2);

    border-radius: 7px;

    background:
        rgba(3, 15, 37, .48);
}

.deep-beta {
    display: inline-flex;

    padding: 4px 8px;

    border:
        1px solid rgba(64, 126, 255, .32);

    border-radius: 4px;

    background:
        rgba(42, 97, 231, .13);

    color: #6ca6ff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.deep-intro h2 {
    margin:
        12px 0 8px;

    color: white;

    font-size: 27px;
    letter-spacing: -.035em;
}

.deep-intro > p {
    margin: 0;

    color: #9dafd0;

    font-size: 12px;
    line-height: 1.55;
}

.deep-capabilities {
    margin-top: 16px;

    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.deep-capabilities span {
    padding: 5px 8px;

    border:
        1px solid rgba(103, 144, 226, .16);

    border-radius: 999px;

    background:
        rgba(16, 38, 79, .6);

    color: #b9cae9;

    font-size: 9px;
}

.beta-message {
    margin-top: 17px;
    padding: 13px;

    border:
        1px solid rgba(98, 135, 218, .18);

    border-radius: 6px;

    background:
        rgba(22, 45, 88, .28);
}

.beta-message strong {
    color: #dbe7ff;
    font-size: 10px;
}

.beta-message p {
    margin:
        5px 0 0;

    color: #8498bd;

    font-size: 9px;
    line-height: 1.5;
}

.deep-status-row {
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #d9e7ff;

    font-size: 11px;
}

.deep-status-row > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(23, 217, 149, .8);
}

.field-label {
    display: block;

    margin:
        10px 0 6px;

    color: #879abe;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.deep-input {
    width: 100%;
}

.deep-workflow .scan-button {
    margin-top: 9px;
}

.deep-agent {
    margin-top: 15px;
}

.deep-step {
    padding:
        10px 0;

    display: flex;
    align-items: center;
    gap: 10px;

    border-top:
        1px solid rgba(102, 143, 224, .13);
}

.deep-step > span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(89, 146, 255, .3);

    border-radius: 50%;

    color: #74aaff;

    font-size: 9px;
}

.deep-step strong,
.deep-step small {
    display: block;
}

.deep-step strong {
    color: white;
    font-size: 10px;
}

.deep-step small {
    margin-top: 2px;

    color: #7890b6;
    font-size: 8px;
}

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

    gap: 7px;
}

.secondary-button,
.danger-button {
    min-height: 37px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(101, 144, 233, .25);

    border-radius: 5px;

    background:
        rgba(11, 32, 69, .66);

    color: #bfd2f4;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}

.danger-button {
    margin-top: 8px;

    border-color:
        rgba(255, 69, 93, .25);

    color: #ff8697;

    background:
        rgba(123, 25, 42, .14);
}

.danger-button:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.verified-box {
    margin-top: 9px;
    padding: 9px;

    border:
        1px solid rgba(23, 217, 149, .22);

    border-radius: 5px;

    color: #77e3bc;

    background:
        rgba(17, 138, 99, .08);

    font-size: 9px;
}

.deep-progress {
    margin-top: 12px;
}

.deep-progress > div:not(.progress-track) {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9fb0ce;
    font-size: 9px;
}

.progress-track {
    height: 5px;

    margin:
        5px 0 11px;

    overflow: hidden;

    border-radius: 99px;

    background:
        rgba(105, 142, 220, .12);
}

.progress-track > div {
    height: 100%;
    width: 0%;

    background:
        linear-gradient(
            90deg,
            #267cff,
            #4ab2ff
        );

    transition:
        width .25s ease;
}

.deep-findings {
    max-height: 210px;
    overflow: auto;

    margin-top: 10px;

    border:
        1px solid rgba(102, 143, 224, .15);

    border-radius: 5px;
}

.deep-finding {
    padding: 8px 10px;

    border-bottom:
        1px solid rgba(102, 143, 224, .11);

    font-size: 9px;
}

.deep-finding:last-child {
    border-bottom: 0;
}

.deep-finding strong,
.deep-finding span {
    display: block;
}

.deep-finding strong {
    color: #dce7fb;
}

.deep-finding span {
    margin-top: 3px;
    color: #7f94b9;
}


/* PRINCIPLES */

.principle-row {
    position: relative;
    z-index: 4;

    width: min(100%, 1190px);
    margin:
        19px auto 0;

    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
}

.principle {
    min-height: 61px;
    padding: 0 16px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    border-right:
        1px solid rgba(94, 132, 214, .15);
}

.principle:first-child {
    padding-left: 0;
}

.principle:last-child {
    border-right: 0;
}

.principle-icon {
    flex: 0 0 auto;

    color: #3491ff;
    font-size: 25px;
}

.principle strong {
    display: block;

    color: #48a1ff;

    font-size: 11px;
}

.principle p {
    margin:
        4px 0 0;

    color: #9aaccc;

    font-size: 10px;
    line-height: 1.45;
}


/* RESULTS */

.results-shell {
    position: relative;
    z-index: 4;

    width: min(100%, 1240px);
    margin:
        19px auto 0;

    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr) .85fr;

    overflow: hidden;

    border:
        1px solid rgba(101, 144, 233, .24);

    border-radius: 7px;

    background:
        rgba(5, 18, 42, .73);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15);
}

.results-summary {
    padding: 13px;
}

.results-title-row {
    min-height: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-title-row h2 {
    margin:
        3px 0 0;

    color: white;

    font-size: 12px;
}

.scan-target-label {
    color: #609cff;
    font-size: 9px;
}

.severity-grid {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);

    gap: 9px;
}

.severity-card {
    min-height: 103px;
    padding: 11px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border:
        1px solid rgba(105, 143, 221, .23);

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            rgba(15, 38, 76, .69),
            rgba(4, 17, 38, .65)
        );
}

.severity-name {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 10px;
    font-weight: 600;
}

.severity-card strong {
    color: white;

    font-size: 28px;
    line-height: 1;
}

.severity-card small {
    color: #c2cee4;
    font-size: 9px;
}

.severity-critical {
    border-color:
        rgba(255, 69, 93, .44);

    background:
        linear-gradient(
            180deg,
            rgba(105, 25, 52, .35),
            rgba(40, 12, 30, .32)
        );
}

.severity-critical .severity-name {
    color: #ff586c;
}

.severity-high {
    border-color:
        rgba(255, 138, 34, .39);
}

.severity-high .severity-name {
    color: var(--orange);
}

.severity-medium {
    border-color:
        rgba(255, 194, 28, .35);
}

.severity-medium .severity-name {
    color: var(--yellow);
}

.severity-low {
    border-color:
        rgba(34, 170, 255, .35);
}

.severity-low .severity-name {
    color: #39b3ff;
}

.severity-info .severity-name {
    color: #9eb0d1;
}

.recent-findings {
    padding: 13px;

    border-left:
        1px solid rgba(101, 144, 233, .2);
}

.recent-findings header {
    color: white;

    font-size: 11px;
    font-weight: 700;
}

.finding-row {
    min-height: 27px;

    display: grid;
    grid-template-columns:
        8px minmax(0, 1fr) auto;

    gap: 7px;

    align-items: center;

    border-bottom:
        1px solid rgba(100, 140, 220, .1);

    color: #b7c5de;

    font-size: 9px;
}

.finding-row:last-child {
    border-bottom: 0;
}

.finding-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.finding-dot.critical {
    background: var(--red);
}

.finding-dot.high {
    background: var(--orange);
}

.finding-dot.medium {
    background: var(--yellow);
}

.finding-dot.low {
    background: var(--low);
}

.finding-dot.info {
    background: var(--info);
}

.finding-level {
    padding:
        2px 6px;

    border-radius: 3px;

    font-size: 8px;
    font-weight: 600;
}

.finding-level.critical {
    color: #ff6477;
    background: rgba(145, 26, 48, .3);
}

.finding-level.high {
    color: #ff9d3d;
    background: rgba(141, 71, 19, .29);
}

.finding-level.medium {
    color: #ffd052;
    background: rgba(123, 92, 9, .28);
}

.finding-level.low {
    color: #43b6ff;
    background: rgba(14, 79, 126, .34);
}

.finding-level.info {
    color: #afbdd4;
    background: rgba(68, 83, 110, .32);
}

.technical-output {
    position: relative;
    z-index: 4;

    width: min(100%, 1240px);
    margin:
        10px auto 0;

    border:
        1px solid rgba(99, 140, 223, .2);

    border-radius: 6px;

    background:
        rgba(3, 14, 34, .8);
}

.technical-output summary {
    padding:
        10px 13px;

    display: flex;
    justify-content: space-between;

    color: #a5b5d2;

    font-size: 9px;

    cursor: pointer;
}

.technical-output pre {
    max-height: 330px;
    overflow: auto;

    margin: 0;
    padding: 13px;

    border-top:
        1px solid rgba(99, 140, 223, .12);

    color: #70d6ad;

    font:
        10px/1.55
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Consolas,
        monospace;

    white-space: pre-wrap;
}


/* MISSION */

.mission {
    position: relative;
    z-index: 4;

    width: min(100%, 690px);
    margin:
        17px auto 0;

    display: grid;
    grid-template-columns:
        56px 1fr;

    gap: 15px;

    align-items: center;
}

.mission-shield {
    color: #7892c2;
}

.mission-shield svg {
    width: 52px;
    height: 52px;
}

.mission > div:last-child > span {
    color: #9eacc5;
    font-size: 10px;
}

.mission h2 {
    margin:
        3px 0;

    color: #d6e2fa;

    font-size: 20px;
    letter-spacing: -.02em;
}

.mission p {
    margin: 0;

    color: #7d8fad;

    font-size: 9px;
    line-height: 1.5;
}

.support-project {
    position: relative;
    z-index: 4;

    width: min(100%, 850px);
    margin:
        70px auto 0;

    padding: 45px;

    text-align: center;

    border:
        1px solid rgba(101, 144, 233, .18);

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            rgba(10, 29, 63, .7),
            rgba(4, 17, 39, .7)
        );
}

.support-project > span {
    color: #67a7ff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.support-project h2 {
    margin:
        10px 0;

    color: white;

    font-size: 28px;
}

.support-project p {
    max-width: 560px;
    margin:
        0 auto 19px;

    color: #90a2c2;

    font-size: 12px;
    line-height: 1.55;
}

.support-project small {
    color: #7184a7;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .header-inner {
        height: auto;
        min-height: 78px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .wm-brand {
        min-width: auto;
    }

    .wm-nav {
        order: 3;
        width: 100%;
    }

    .nav-link {
        min-height: 44px;
    }

    .url-scan-layout,
    .deep-layout {
        grid-template-columns: 1fr;
    }

    .dns-preview {
        border-left: 0;
        border-top:
            1px solid rgba(101, 144, 233, .22);
    }

    .principle-row {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .principle {
        border-right: 0;
    }

    .results-shell {
        grid-template-columns: 1fr;
    }

    .recent-findings {
        border-left: 0;
        border-top:
            1px solid rgba(101, 144, 233, .2);
    }

    .dns-score-row {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .record-groups {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .wm-container {
        width: min(
            calc(100% - 24px),
            var(--container)
        );
    }

    .support-inner {
        min-height: 50px;
        justify-content: flex-start;
        padding-right: 35px;
    }

    .support-message {
        font-size: 10px;
    }

    .header-cta {
        display: none;
    }

    .wm-nav {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .nav-link {
        flex: 0 0 auto;
    }

    .hero {
        padding-top: 25px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-copy p {
        font-size: 12px;
    }

    .scanner-tabs {
        overflow-x: auto;
        grid-template-columns:
            repeat(3, minmax(130px, 1fr));
    }

    .scan-primary {
        padding: 18px 14px;
    }

    .scan-form {
        grid-template-columns: 1fr;
    }

    .trust-inline {
        justify-content: flex-start;
        gap: 9px 15px;
    }

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

    .dns-score-row,
    .record-groups,
    .principle-row {
        grid-template-columns: 1fr;
    }

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

    .severity-card:last-child {
        grid-column:
            1 / -1;
    }

    .mission {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-shield {
        margin: auto;
    }

    .support-project {
        padding: 28px 18px;
    }
}


/* =========================================================
   WM FINAL BUSINESS PATCH
   ========================================================= */


/* REAL FINDING RESOURCE / PATH */

.finding-row-detailed {
    min-height: 55px;
    align-items: center;
}

.finding-main {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.finding-title {
    color: #dce8fb;

    font-size: 10px;
    font-weight: 650;
}

.finding-resource {
    display: block;

    max-width: 420px;

    overflow: hidden;

    color: #748aae;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 8px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.finding-resource b {
    color: #78a6ea;
    font-weight: 650;
}

.recent-findings header {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.recent-findings header small {
    color: #6f84a8;

    font-size: 8px;
    font-weight: 400;
}


/* CLEANUP CTA AFTER SCAN */

.cleanup-result-cta {
    grid-column: 1 / -1;

    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid rgba(101, 144, 233, .18);

    background:
        linear-gradient(
            90deg,
            rgba(16, 43, 91, .72),
            rgba(5, 19, 43, .78)
        );
}

.cleanup-result-cta strong {
    display: block;

    margin-top: 4px;

    color: white;

    font-size: 12px;
}

.cleanup-result-cta p {
    margin: 4px 0 0;

    color: #8296ba;

    font-size: 9px;
}


/* CONTACT */

.contact-section {
    position: relative;
    z-index: 4;

    width: min(100%, 1050px);

    margin: 75px auto 0;

    padding: 40px;

    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 52px;

    border:
        1px solid rgba(101, 144, 233, .22);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(11, 34, 75, .9),
            rgba(4, 17, 39, .92)
        );

    box-shadow:
        0 28px 75px rgba(0,0,0,.2);
}

.contact-copy h2 {
    margin: 10px 0 12px;

    color: white;

    font-size: 30px;
    line-height: 1.15;

    letter-spacing: -.035em;
}

.contact-copy > p {
    margin: 0;

    color: #91a5c7;

    font-size: 12px;
    line-height: 1.65;
}

.contact-points {
    margin-top: 22px;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px;
}

.contact-points span {
    color: #a7bad9;
    font-size: 10px;
}

.contact-points span::first-letter {
    color: #17d995;
}

.contact-form {
    display: grid;
    gap: 11px;
}

.contact-form label {
    display: grid;
    gap: 5px;
}

.contact-form label > span {
    color: #91a5c7;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 11px 12px;

    border:
        1px solid rgba(106, 147, 229, .26);

    border-radius: 6px;

    outline: none;

    background:
        rgba(2, 12, 30, .72);

    color: white;

    font-size: 11px;

    resize: vertical;
}

.contact-form input {
    min-height: 42px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color:
        rgba(54, 139, 255, .7);

    box-shadow:
        0 0 0 3px
        rgba(38, 122, 255, .08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #657a9d;
}

.contact-honeypot {
    position: absolute !important;

    left: -100000px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
}

.contact-status {
    padding: 10px 11px;

    border-radius: 5px;

    font-size: 9px;
    line-height: 1.45;
}

.contact-status.success {
    color: #64dfb6;

    border:
        1px solid rgba(23, 217, 149, .24);

    background:
        rgba(23, 217, 149, .07);
}

.contact-status.error {
    color: #ff8394;

    border:
        1px solid rgba(255, 69, 93, .25);

    background:
        rgba(255, 69, 93, .07);
}


/* FOOTER */

.wm-footer {
    position: relative;
    z-index: 4;

    width: min(100%, 1240px);

    margin: 90px auto 0;

    border-top:
        1px solid rgba(101, 144, 233, .16);
}

.footer-main {
    padding: 38px 0 42px;

    display: grid;
    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 45px;
}

.footer-brand {
    align-self: flex-start;
}

.footer-brand-block p {
    max-width: 260px;

    margin: 14px 0 0;

    color: #7184a6;

    font-size: 10px;
    line-height: 1.5;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 9px;
}

.footer-column strong {
    margin-bottom: 5px;

    color: white;

    font-size: 10px;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column button {
    padding: 0;

    border: 0;

    background: transparent;

    color: #8396b8;

    font-size: 10px;

    cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
    color: #5ba9ff;
}

.footer-bottom {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(101, 144, 233, .11);

    color: #607397;

    font-size: 9px;
}


@media (max-width: 900px) {

    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cleanup-result-cta {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 26px 18px;
    }

    .contact-points {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 18px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .finding-resource {
        max-width: 220px;
    }

}


/* ==========================================================
   WM DNS INTELLIGENCE V2
   ========================================================== */

.dns-intel-root {
    display:grid;
    gap:18px;
    margin-top:22px;
}


.dns-intel-panel {
    border:1px solid rgba(74,144,226,.28);
    background:rgba(3,18,44,.48);
    border-radius:14px;
    overflow:hidden;
}


.dns-intel-head {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    padding:18px 20px;

    border-bottom:
        1px solid rgba(74,144,226,.17);
}


.dns-intel-head h3 {
    margin:4px 0 4px;

    font-size:16px;

    color:#f4f8ff;
}


.dns-intel-head p {
    margin:0;

    font-size:12px;

    color:#7890b3;
}


.dns-intel-actions {
    display:flex;
    gap:8px;
}


.dns-intel-button,
.dns-intel-select {
    border:
        1px solid rgba(52,134,255,.5);

    border-radius:8px;

    padding:9px 12px;

    background:#071a38;

    color:#d8e8ff;

    font-size:11px;

    font-weight:700;
}


.dns-intel-button {
    background:
        linear-gradient(
            180deg,
            #2d8cff,
            #1769d8
        );

    color:#fff;

    cursor:pointer;
}


.dns-intel-button:disabled {
    opacity:.55;

    cursor:wait;
}


.dns-intel-content {
    padding:18px 20px;
}


.dns-intel-placeholder,
.dns-intel-loading,
.dns-intel-warning {
    padding:14px;

    border:
        1px dashed rgba(87,145,220,.25);

    border-radius:9px;

    color:#7890b3;

    font-size:12px;
}


.dns-intel-warning {
    color:#f6b85a;
}


.dns-whois-grid {
    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(190px,1fr)
        );

    gap:10px;
}


.dns-whois-item {
    padding:12px 13px;

    border:
        1px solid rgba(71,130,205,.18);

    border-radius:9px;

    background:
        rgba(2,13,31,.34);

    min-width:0;
}


.dns-whois-item span,
.dns-propagation-summary span,
.dns-dominant-answer span {
    display:block;

    margin-bottom:5px;

    color:#4b83cf;

    font-size:9px;

    font-weight:800;

    letter-spacing:.1em;

    text-transform:uppercase;
}


.dns-whois-item strong {
    display:block;

    color:#c9d9ee;

    font-size:11px;

    font-weight:600;

    line-height:1.5;

    overflow-wrap:anywhere;
}


.dns-propagation-summary {
    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(110px,1fr)
        );

    gap:9px;

    margin-bottom:14px;
}


.dns-propagation-summary > div {
    padding:12px;

    border:
        1px solid rgba(71,130,205,.18);

    border-radius:9px;

    background:
        rgba(2,13,31,.34);
}


.dns-propagation-summary strong {
    color:#f0f6ff;

    font-size:17px;
}


.dns-dominant-answer {
    padding:12px;

    margin-bottom:13px;

    border:
        1px solid rgba(44,135,255,.25);

    border-radius:9px;

    background:
        rgba(28,86,160,.1);
}


.dns-dominant-answer strong {
    color:#bcd8ff;

    font-size:11px;

    overflow-wrap:anywhere;
}


.dns-propagation-list {
    display:grid;

    gap:7px;
}


.dns-propagation-row {
    display:grid;

    grid-template-columns:
        minmax(150px,1.1fr)
        88px
        minmax(220px,2fr)
        70px;

    gap:12px;

    align-items:center;

    padding:10px 12px;

    border:
        1px solid rgba(71,130,205,.14);

    border-radius:8px;

    background:
        rgba(1,10,26,.32);
}


.dns-propagation-location strong,
.dns-propagation-answer strong {
    display:block;

    color:#c7d7ec;

    font-size:10px;

    overflow-wrap:anywhere;
}


.dns-propagation-location span,
.dns-propagation-answer span {
    display:block;

    margin-top:3px;

    color:#617a9f;

    font-size:9px;

    overflow-wrap:anywhere;
}


.dns-propagation-status {
    font-size:9px;

    font-weight:800;

    letter-spacing:.04em;
}


.dns-propagation-status.ok {
    color:#37d69d;
}


.dns-propagation-status.different {
    color:#f0b95b;
}


.dns-propagation-status.failed {
    color:#ef6677;
}


.dns-propagation-latency {
    text-align:right;

    color:#7f97b9;

    font-size:9px;
}


@media(max-width:760px) {

    .dns-intel-head {
        flex-direction:column;
        align-items:flex-start;
    }


    .dns-intel-actions {
        width:100%;
    }


    .dns-intel-button,
    .dns-intel-select {
        flex:1;
    }


    .dns-propagation-row {
        grid-template-columns:1fr;
    }


    .dns-propagation-latency {
        text-align:left;
    }

}

/* WM DNS INTELLIGENCE V2 END */



/* ==========================================================================
   WM INTELLIGENCE UI V1
   ========================================================================== */

.intelligence-overview {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.6fr);
    gap: 14px;
    margin: 20px 0 18px;
}


.intelligence-risk-card,
.intelligence-metrics,
.intelligence-incidents {
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #ffffff;
}


.intelligence-risk-card {
    padding: 22px;
    position: relative;
    overflow: hidden;
}


.intelligence-risk-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2f9e72;
}


.intelligence-risk-card[data-level="low"]::before {
    background: #4776c9;
}


.intelligence-risk-card[data-level="medium"]::before {
    background: #c18b28;
}


.intelligence-risk-card[data-level="high"]::before {
    background: #d4653f;
}


.intelligence-risk-card[data-level="critical"]::before {
    background: #c63f46;
}


.intelligence-label {
    display: block;
    color: #8d94a1;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}


.intelligence-risk-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
}


.intelligence-risk-line > strong {
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.03em;
}


.intelligence-risk-line > b {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-size: 28px;
    line-height: 1;
}


.intelligence-risk-line > b small {
    color: #9aa0aa;
    font-size: 11px;
}


.intelligence-risk-card[data-level="clean"]
.intelligence-risk-line > strong {
    color: #27805d;
}


.intelligence-risk-card[data-level="low"]
.intelligence-risk-line > strong {
    color: #4776c9;
}


.intelligence-risk-card[data-level="medium"]
.intelligence-risk-line > strong {
    color: #ae7b1d;
}


.intelligence-risk-card[data-level="high"]
.intelligence-risk-line > strong {
    color: #cb5e3c;
}


.intelligence-risk-card[data-level="critical"]
.intelligence-risk-line > strong {
    color: #bd343b;
}


.intelligence-risk-card > p {
    margin: 12px 0 0;
    color: #767e8c;
    font-size: 10px;
    line-height: 1.55;
}


.intelligence-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}


.intelligence-metrics article {
    min-width: 0;
    padding: 20px;
    border-right: 1px solid #e8eaef;
}


.intelligence-metrics article:last-child {
    border-right: 0;
}


.intelligence-metrics span {
    display: block;
    color: #9299a6;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.intelligence-metrics strong {
    display: block;
    margin-top: 8px;
    color: #242a35;
    font-size: 22px;
    letter-spacing: -.03em;
}


.intelligence-metrics small {
    display: block;
    margin-top: 3px;
    color: #a1a6b0;
    font-size: 8px;
}


.intelligence-incidents {
    grid-column: 1 / -1;
    overflow: hidden;
}


.intelligence-incidents > header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 17px 20px;
    border-bottom: 1px solid #e8eaee;
    background: #fafbfc;
}


.intelligence-incidents > header strong {
    display: block;
    margin-top: 4px;
    color: #303642;
    font-size: 12px;
}


.intelligence-incidents > header > small {
    color: #9299a4;
    font-size: 9px;
}


.intelligence-incident-list {
    display: grid;
}


.intelligence-incident-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f3;
}


.intelligence-incident-row:last-child {
    border-bottom: 0;
}


.intelligence-incident-index {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f1f3f6;
    color: #747c89;
    font-size: 9px;
    font-weight: 850;
}


.intelligence-incident-title {
    display: flex;
    align-items: center;
    gap: 8px;
}


.intelligence-incident-title strong {
    color: #303641;
    font-size: 11px;
}


.intelligence-level {
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .05em;
}


.intelligence-level.clean {
    background: #eaf8f1;
    color: #287457;
}


.intelligence-level.low {
    background: #edf4ff;
    color: #436eb8;
}


.intelligence-level.medium {
    background: #fff6df;
    color: #966b14;
}


.intelligence-level.high {
    background: #fff0ea;
    color: #b95638;
}


.intelligence-level.critical {
    background: #ffebec;
    color: #b63138;
}


.intelligence-incident-main p {
    margin: 5px 0 3px;
    color: #697281;
    font-size: 9px;
    line-height: 1.5;
}


.intelligence-incident-main > small {
    color: #9aa0ab;
    font-size: 8px;
}


.intelligence-incident-score {
    min-width: 86px;
    text-align: right;
}


.intelligence-incident-score strong {
    color: #292f39;
    font-size: 21px;
}


.intelligence-incident-score > span {
    color: #969ca7;
    font-size: 9px;
}


.intelligence-incident-score small {
    display: block;
    margin-top: 3px;
    color: #969ca7;
    font-size: 7.5px;
}


@media (max-width: 900px) {

    .intelligence-overview {
        grid-template-columns: 1fr;
    }

    .intelligence-incidents {
        grid-column: auto;
    }

    .intelligence-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .intelligence-metrics article:nth-child(2) {
        border-right: 0;
    }

    .intelligence-metrics article:nth-child(-n+2) {
        border-bottom: 1px solid #e8eaef;
    }

}


@media (max-width: 600px) {

    .intelligence-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .intelligence-incident-row {
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .intelligence-incident-score {
        grid-column: 2;
        text-align: left;
    }

    .intelligence-incidents > header {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ==========================================================================
   WM INTELLIGENCE DARK ALIGN V2
   Matches current WM Security dark scanner design
   ========================================================================== */

.intelligence-overview {
    display: grid;
    grid-template-columns: minmax(250px, .9fr) minmax(0, 1.65fr);
    gap: 12px;
    margin: 18px 0 16px;
}


/* --------------------------------------------------------------------------
   COMMON SURFACE
   -------------------------------------------------------------------------- */

.intelligence-risk-card,
.intelligence-metrics,
.intelligence-incidents {
    background:
        linear-gradient(
            180deg,
            rgba(8, 31, 70, .96) 0%,
            rgba(5, 24, 57, .96) 100%
        ) !important;

    border: 1px solid #214d82 !important;
    border-radius: 9px !important;
    box-shadow: none !important;
}


.intelligence-label {
    color: #6faeff !important;
    font-size: 8px !important;
    font-weight: 800;
    letter-spacing: .11em;
}


/* --------------------------------------------------------------------------
   RISK CARD
   -------------------------------------------------------------------------- */

.intelligence-risk-card {
    min-height: 116px;
    padding: 18px 18px 16px !important;
    position: relative;
    overflow: hidden;
}


.intelligence-risk-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 2px !important;
    height: 100%;

    background: #29d391;
}


.intelligence-risk-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 0 50%,
            rgba(41, 211, 145, .08),
            transparent 45%
        );
}


.intelligence-risk-card[data-level="clean"] {
    border-color: rgba(41, 211, 145, .58) !important;
}


.intelligence-risk-card[data-level="low"] {
    border-color: rgba(43, 139, 255, .60) !important;
}


.intelligence-risk-card[data-level="medium"] {
    border-color: rgba(255, 190, 52, .65) !important;
}


.intelligence-risk-card[data-level="high"] {
    border-color: rgba(255, 139, 43, .67) !important;
}


.intelligence-risk-card[data-level="critical"] {
    border-color: rgba(255, 70, 88, .72) !important;
}


.intelligence-risk-card[data-level="low"]::before {
    background: #2b8bff;
}


.intelligence-risk-card[data-level="medium"]::before {
    background: #ffbe34;
}


.intelligence-risk-card[data-level="high"]::before {
    background: #ff8b2b;
}


.intelligence-risk-card[data-level="critical"]::before {
    background: #ff4658;
}


.intelligence-risk-line {
    margin-top: 12px !important;
    position: relative;
    z-index: 1;
}


.intelligence-risk-line > strong {
    color: #29d391 !important;
    font-size: 24px !important;
    font-weight: 800;
    letter-spacing: -.035em;
}


.intelligence-risk-card[data-level="low"]
.intelligence-risk-line > strong {
    color: #4c9fff !important;
}


.intelligence-risk-card[data-level="medium"]
.intelligence-risk-line > strong {
    color: #ffca54 !important;
}


.intelligence-risk-card[data-level="high"]
.intelligence-risk-line > strong {
    color: #ff9a4d !important;
}


.intelligence-risk-card[data-level="critical"]
.intelligence-risk-line > strong {
    color: #ff6573 !important;
}


.intelligence-risk-line > b {
    color: #f0f6ff !important;
    font-size: 23px !important;
    font-weight: 800;
}


.intelligence-risk-line > b small {
    color: #718bb0 !important;
    font-size: 9px !important;
}


.intelligence-risk-card > p {
    position: relative;
    z-index: 1;

    margin-top: 11px !important;

    color: #7f98bd !important;
    font-size: 8.5px !important;
    line-height: 1.55;
}


/* --------------------------------------------------------------------------
   METRICS
   -------------------------------------------------------------------------- */

.intelligence-metrics {
    overflow: hidden;
}


.intelligence-metrics article {
    min-height: 116px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 16px !important;

    background: transparent !important;

    border-right:
        1px solid rgba(45, 93, 149, .55) !important;
}


.intelligence-metrics article:last-child {
    border-right: 0 !important;
}


.intelligence-metrics span {
    color: #7292bd !important;

    font-size: 7.5px !important;
    font-weight: 800;

    letter-spacing: .095em;
}


.intelligence-metrics strong {
    margin-top: 8px !important;

    color: #f2f6fd !important;

    font-size: 22px !important;
    font-weight: 750;

    letter-spacing: -.03em;
}


.intelligence-metrics small {
    margin-top: 3px;

    color: #536f98 !important;
    font-size: 7px !important;
}


/* --------------------------------------------------------------------------
   INCIDENT BLOCK
   -------------------------------------------------------------------------- */

.intelligence-incidents {
    grid-column: 1 / -1;
    overflow: hidden;
}


.intelligence-incidents > header {
    padding: 14px 17px !important;

    background:
        rgba(4, 22, 53, .70) !important;

    border-bottom:
        1px solid rgba(42, 87, 139, .55) !important;
}


.intelligence-incidents > header strong {
    color: #dceaff !important;
    font-size: 10px !important;
}


.intelligence-incidents > header > small {
    color: #6884aa !important;
    font-size: 7.5px !important;
}


.intelligence-incident-row {
    padding: 13px 17px !important;

    background: transparent !important;

    border-bottom:
        1px solid rgba(33, 75, 124, .43) !important;
}


.intelligence-incident-row:hover {
    background:
        rgba(22, 71, 126, .12) !important;
}


.intelligence-incident-index {
    width: 28px !important;
    height: 28px !important;

    background:
        rgba(22, 65, 113, .55) !important;

    border:
        1px solid rgba(64, 121, 184, .38);

    color: #75a9e4 !important;

    border-radius: 6px !important;
}


.intelligence-incident-title strong {
    color: #e6effb !important;
    font-size: 9.5px !important;
}


.intelligence-incident-main p {
    color: #7791b5 !important;
    font-size: 8px !important;
}


.intelligence-incident-main > small {
    color: #55749d !important;
    font-size: 7px !important;
}


.intelligence-incident-score strong {
    color: #eff6ff !important;
    font-size: 18px !important;
}


.intelligence-incident-score > span,
.intelligence-incident-score small {
    color: #617da4 !important;
}


/* --------------------------------------------------------------------------
   BADGES
   -------------------------------------------------------------------------- */

.intelligence-level {
    border-radius: 4px !important;
    border: 1px solid transparent;
    background: transparent !important;

    padding: 3px 6px !important;

    font-size: 6.5px !important;
}


.intelligence-level.clean {
    color: #3dde9b !important;
    border-color: rgba(61, 222, 155, .35);
}


.intelligence-level.low {
    color: #4b9dff !important;
    border-color: rgba(75, 157, 255, .35);
}


.intelligence-level.medium {
    color: #ffc950 !important;
    border-color: rgba(255, 201, 80, .38);
}


.intelligence-level.high {
    color: #ff9a4d !important;
    border-color: rgba(255, 154, 77, .38);
}


.intelligence-level.critical {
    color: #ff6573 !important;
    border-color: rgba(255, 101, 115, .42);
}


/* --------------------------------------------------------------------------
   ALIGN WITH EXISTING SEVERITY CARDS
   -------------------------------------------------------------------------- */

.intelligence-overview + .severity-grid {
    margin-top: 0 !important;
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {

    .intelligence-overview {
        grid-template-columns: 1fr;
    }

    .intelligence-incidents {
        grid-column: auto;
    }

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

    .intelligence-metrics article {
        min-height: 92px;
    }

}


@media (max-width: 560px) {

    .intelligence-risk-card {
        min-height: auto;
    }

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

    .intelligence-incident-row {
        grid-template-columns:
            28px minmax(0, 1fr);
    }

    .intelligence-incident-score {
        grid-column: 2;
        text-align: left;
    }

}


