:root {
    --bg:#f3f4ef;
    --card:#ffffff;
    --text:#10120e;
    --muted:#74786c;
    --border:#dde0d6;

    --lime:#cbff3d;
    --red:#ff625a;
    --red-soft:#ffe2df;
    --orange:#ffb74d;
    --orange-soft:#fff0d2;
    --blue-soft:#e6efff;

    --radius:20px;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    background:var(--bg);
    color:var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

button,
input,
select {
    font:inherit;
}

button {
    cursor:pointer;
}

button:disabled {
    opacity:.55;
    cursor:wait;
}

.hidden {
    display:none !important;
}


/* HEADER */

.topbar {
    max-width:1250px;
    height:78px;

    margin:auto;
    padding:0 24px;

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

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

    color:inherit;
    text-decoration:none;

    font-weight:900;
}

.brand small {
    padding:4px 6px;

    border-radius:6px;

    background:#111;
    color:#fff;

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

.logo {
    width:38px;
    height:38px;

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

    border-radius:12px;

    background:var(--lime);

    font-weight:950;
}

.logo.big {
    width:52px;
    height:52px;

    margin-bottom:10px;
}

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

.email {
    color:var(--muted);
    font-size:12px;
}

.plan-badge {
    padding:6px 9px;

    border-radius:100px;

    background:var(--lime);

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


/* BUTTONS */

.btn {
    padding:11px 16px;

    border:0;
    border-radius:11px;

    font-weight:750;

    transition:.15s;
}

.btn:hover {
    transform:translateY(-1px);
}

.btn.primary {
    background:#11130f;
    color:#fff;
}

.btn.secondary {
    background:#fff;
    color:var(--text);

    border:1px solid var(--border);
}

.btn.cyber {
    background:var(--lime);
    color:#111;
}

.btn.warning {
    background:var(--orange-soft);
    color:#7d4c00;
}

.btn.ghost {
    background:transparent;
}

.btn.full {
    width:100%;
    padding:14px;
}

.btn.huge {
    padding:16px 22px;
    margin-top:28px;
}


/* LANDING */

.hero {
    max-width:950px;

    margin:105px auto 80px;
    padding:0 24px;

    text-align:center;
}

.eyebrow {
    color:var(--muted);

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

    letter-spacing:.15em;
}

.hero h1 {
    margin:20px 0;

    font-size:clamp(
        50px,
        7vw,
        90px
    );

    line-height:.96;

    letter-spacing:-.065em;
}

.hero h1 span {
    background:var(--lime);
    padding:0 .08em;
}

.hero p {
    max-width:680px;

    margin:auto;

    color:var(--muted);

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


/* PLANS */

.plans {
    max-width:1200px;

    margin:0 auto 120px;

    padding:0 24px;

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

    gap:10px;
}

.plans article {
    min-height:300px;

    padding:22px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius);
}

.plans article.premium-plan {
    background:#11130f;
    color:white;
}

.plan-name {
    display:block;

    color:var(--muted);

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

    letter-spacing:.12em;
}

.plans strong {
    display:block;

    margin-top:25px;

    font-size:31px;
}

.plans p {
    color:var(--muted);
}

.plans ul {
    margin:25px 0 0;
    padding-left:20px;

    line-height:1.9;

    font-size:13px;
}


/* DASHBOARD */

.dashboard {
    max-width:1250px;

    margin:auto;

    padding:50px 24px 100px;
}

.dashboard-head {
    display:flex;
    align-items:end;
    justify-content:space-between;

    gap:20px;
}

.dashboard-head h1 {
    margin:5px 0 0;

    font-size:55px;
    letter-spacing:-.055em;
}


/* STATS */

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

    gap:10px;

    margin-top:38px;
}

.stats article {
    min-height:130px;

    display:flex;
    flex-direction:column;

    padding:18px;

    background:white;

    border:1px solid var(--border);
    border-radius:var(--radius);
}

.stats article.green {
    background:var(--lime);
}

.stats article.red {
    background:var(--red-soft);
}

.stats span {
    color:var(--muted);
    font-size:12px;
}

.stats strong {
    margin-top:auto;

    font-size:38px;

    letter-spacing:-.05em;
}


/* TABS */

.tabs {
    display:flex;
    gap:4px;

    width:max-content;

    margin-top:32px;
    padding:4px;

    border-radius:12px;

    background:#e7e9e2;
}

.tab {
    padding:9px 15px;

    border:0;
    border-radius:9px;

    background:transparent;

    font-weight:750;
}

.tab.active {
    background:#fff;
}


/* SITE CARDS */

.monitor-list {
    display:flex;
    flex-direction:column;
    gap:10px;

    margin-top:20px;
}

.monitor-card {
    padding:18px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:18px;
}

.monitor-top {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;

    gap:20px;
}

.monitor-identity {
    min-width:0;

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

.dot {
    width:11px;
    height:11px;

    flex:none;

    margin-top:5px;

    border-radius:50%;
}

.dot.up {
    background:var(--lime);
}

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

.dot.unknown {
    background:#aaa;
}

.monitor-name {
    min-width:0;
}

.monitor-name strong,
.monitor-name span {
    display:block;

    overflow:hidden;

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

.monitor-name strong {
    font-size:16px;
}

.monitor-name span {
    margin-top:4px;

    color:var(--muted);
    font-size:12px;
}

.badges {
    display:flex;
    flex-wrap:wrap;
    gap:6px;

    margin-top:10px;
}

.badge {
    padding:6px 9px;

    border-radius:100px;

    background:#edf0e8;

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

.badge.verified {
    background:var(--lime);
}

.badge.unverified {
    background:var(--orange-soft);
}

.badge.critical {
    background:var(--red-soft);
}

.health-score {
    min-width:76px;

    padding:11px;

    text-align:center;

    border-radius:14px;

    background:#edf0e8;

    font-size:17px;
    font-weight:900;
}

.health-score.good {
    background:var(--lime);
}

.health-score.warn {
    background:var(--orange-soft);
}

.health-score.bad {
    background:var(--red-soft);
}

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

    gap:8px;

    margin-top:17px;
}

.metric {
    padding:12px;

    background:var(--bg);

    border-radius:12px;
}

.metric span {
    display:block;

    color:var(--muted);

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

.metric strong {
    display:block;

    margin-top:5px;

    font-size:13px;
}

.monitor-footer {
    display:flex;

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

    gap:12px;

    margin-top:13px;
    padding-top:13px;

    border-top:1px solid var(--border);
}

.monitor-message {
    color:var(--muted);

    font-size:12px;
}

.monitor-actions {
    display:flex;
    flex-wrap:wrap;
    gap:6px;

    justify-content:flex-end;
}


/* HEARTBEATS */

.heartbeat-header {
    display:flex;
    justify-content:space-between;
    align-items:end;

    margin-top:28px;
}

.heartbeat-header h2 {
    margin:6px 0 0;
}

.heartbeat-list {
    display:flex;
    flex-direction:column;

    gap:10px;

    margin-top:20px;
}

.heartbeat-card {
    padding:18px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:18px;
}

.hb-head {
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.hb-status {
    padding:6px 9px;

    border-radius:100px;

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

.hb-status.ok {
    background:var(--lime);
}

.hb-status.late {
    background:var(--red-soft);
}

.hb-status.waiting {
    background:#eee;
}

.command {
    margin-top:12px;
    padding:11px;

    overflow:auto;

    background:#11130f;
    color:#eee;

    border-radius:10px;

    font-family:monospace;
    font-size:10px;
}


/* MODALS */

.modal {
    position:fixed;
    inset:0;

    z-index:100;

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

    padding:15px;
}

.backdrop {
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.44);

    backdrop-filter:blur(8px);
}

.modal-card {
    position:relative;
    z-index:2;

    width:min(430px,100%);

    max-height:calc(100dvh - 30px);

    overflow-y:auto;
    overflow-x:hidden;

    padding:28px;

    background:#fff;

    border-radius:23px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.26);

    -webkit-overflow-scrolling:touch;
}

.modal-card.wide {
    width:min(680px,100%);
}

.modal-card.extra-wide {
    width:min(900px,100%);
}

.modal-card h2 {
    margin:8px 0 17px;

    font-size:29px;

    letter-spacing:-.04em;
}

.close {
    position:absolute;

    top:13px;
    right:13px;

    width:36px;
    height:36px;

    border:0;
    border-radius:50%;

    background:var(--bg);

    font-size:21px;
}

.google {
    width:100%;

    padding:13px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:11px;

    font-weight:750;
}

.separator {
    margin:17px 0;

    text-align:center;

    color:var(--muted);

    font-size:11px;
}

form label {
    display:flex;
    flex-direction:column;

    gap:7px;

    margin:13px 0;

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

input,
select {
    width:100%;

    padding:13px;

    border:1px solid var(--border);
    border-radius:11px;

    background:var(--bg);

    outline:none;
}

.switch {
    width:100%;

    margin-top:14px;

    border:0;

    background:transparent;

    color:var(--muted);
}

.error {
    margin:10px 0;

    color:#b12620;

    font-size:11px;
}

.muted {
    color:var(--muted);
    line-height:1.5;
}

.loading {
    padding:35px;

    text-align:center;

    background:var(--bg);

    border-radius:15px;

    font-weight:750;
}

.loading small {
    display:block;

    margin-top:8px;

    color:var(--muted);

    font-weight:400;
}

.success-box {
    padding:18px;

    background:var(--lime);

    border-radius:14px;

    font-weight:750;
}

.notice {
    margin:12px 0;

    padding:12px;

    border-radius:11px;

    background:var(--orange-soft);

    font-size:12px;
}

.hint {
    color:var(--muted);

    font-size:11px;
}


/* DNS RECORD */

.dns-record {
    display:flex;
    flex-direction:column;

    gap:8px;

    margin:18px 0;
}

.dns-record > div {
    padding:13px;

    background:var(--bg);

    border-radius:12px;
}

.dns-record span {
    display:block;

    margin-bottom:5px;

    color:var(--muted);

    font-size:9px;
}

.dns-record code {
    display:block;

    overflow-wrap:anywhere;

    font-size:11px;
}


/* ATTACK SURFACE */

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

    gap:8px;

    margin-bottom:18px;
}

.attack-summary article {
    min-height:95px;

    display:flex;
    flex-direction:column;

    padding:14px;

    background:var(--bg);

    border-radius:13px;
}

.attack-summary span {
    color:var(--muted);
    font-size:10px;
}

.attack-summary strong {
    margin-top:auto;

    font-size:27px;
}

.cyber-section {
    margin-top:18px;
}

.cyber-section h3 {
    margin:0 0 9px;
}

.finding {
    margin-top:7px;
    padding:12px;

    border-radius:11px;

    background:#eef0ea;

    font-size:12px;
}

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

.finding.warning {
    background:var(--orange-soft);
}

.asset-row,
.service-row {
    display:grid;
    grid-template-columns:
        1.4fr 1fr auto;

    gap:10px;

    margin-top:6px;
    padding:10px;

    background:var(--bg);

    border-radius:10px;

    font-size:11px;
}

.change-new {
    color:#b12620;
    font-weight:800;
}


/* DETAILS */

.detail-grid {
    display:grid;
    grid-template-columns:
        repeat(2,1fr);

    gap:8px;
}

.detail-box {
    padding:13px;

    background:var(--bg);

    border-radius:12px;
}

.detail-box span {
    display:block;

    margin-bottom:5px;

    color:var(--muted);

    font-size:9px;
}

.empty {
    padding:40px;

    text-align:center;

    color:var(--muted);

    background:#fff;

    border:1px dashed var(--border);
    border-radius:17px;
}


/* RESPONSIVE */

@media(max-width:900px) {

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

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

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

}


@media(max-width:620px) {

    .email {
        display:none;
    }

    .dashboard-head,
    .heartbeat-header,
    .monitor-footer {
        flex-direction:column;
        align-items:stretch;
    }

    .dashboard-head h1 {
        font-size:40px;
    }

    .plans,
    .stats,
    .attack-summary,
    .detail-grid {
        grid-template-columns:1fr;
    }

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

    .monitor-actions {
        justify-content:stretch;
    }

    .monitor-actions .btn {
        flex:1;
    }

    .asset-row,
    .service-row {
        grid-template-columns:1fr;
    }

}

/* ==========================================================
   VIGIE V3.4 CYBER CONSOLE
   ========================================================== */

.cyber-tabs {
    display:flex;
    gap:5px;

    margin:20px 0;

    padding:5px;

    overflow-x:auto;

    background:#e7e9e2;

    border-radius:12px;
}

.cyber-tab {
    flex:none;

    padding:9px 13px;

    border:0;
    border-radius:8px;

    background:transparent;

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

.cyber-tab.active {
    background:#fff;
}

.console-panel {
    display:none;
}

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

.tech-list {
    display:flex;
    flex-wrap:wrap;
    gap:8px;

    margin-top:12px;
}

.tech-card {
    min-width:150px;

    padding:13px;

    background:var(--bg);

    border-radius:12px;
}

.tech-card strong {
    display:block;
}

.tech-card span {
    display:block;

    margin-top:5px;

    color:var(--muted);

    font-size:10px;
}

.security-row {
    display:flex;

    justify-content:space-between;
    gap:15px;

    margin-top:6px;
    padding:11px;

    background:var(--bg);

    border-radius:10px;

    font-size:11px;
}

.status-good {
    color:#488900;
    font-weight:900;
}

.status-bad {
    color:#b12620;
    font-weight:900;
}

.console-title {
    margin:25px 0 8px;
}

@media(max-width:650px) {

    .cyber-console {
        width:100%;
        height:calc(100dvh - 20px);
    }

}


/* ==========================================================
   VIGIE V3.5 - VULNERABILITIES
   ========================================================== */

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

    gap:8px;

    margin-bottom:20px;
}

.vulnerability-summary article {
    min-height:90px;

    display:flex;
    flex-direction:column;

    padding:13px;

    background:var(--bg);

    border-radius:12px;
}

.vulnerability-summary span {
    font-size:9px;
    font-weight:850;

    letter-spacing:.08em;

    color:var(--muted);
}

.vulnerability-summary strong {
    margin-top:auto;

    font-size:27px;
}

.vuln-critical {
    background:#ffd5d2 !important;
}

.vuln-high {
    background:#ffe3d0 !important;
}

.vuln-medium {
    background:#fff0c7 !important;
}

.vuln-low {
    background:#e8f1ff !important;
}

.product-assessments {
    display:flex;
    flex-direction:column;

    gap:6px;
}

.product-assessment {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:15px;

    padding:12px;

    background:var(--bg);

    border-radius:11px;

    font-size:11px;
}

.product-assessment strong,
.product-assessment span {
    display:block;
}

.product-assessment div span {
    margin-top:3px;

    color:var(--muted);
}

.vulnerability-card {
    margin-top:9px;
    padding:15px;

    border-radius:13px;

    background:var(--bg);
}

.vulnerability-head {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:10px;
}

.vulnerability-head > div:first-child {
    display:flex;
    align-items:center;

    gap:7px;
}

.cvss-pill {
    padding:6px 9px;

    border-radius:100px;

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

.kev-badge {
    padding:5px 7px;

    border-radius:100px;

    background:#111;
    color:white;

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

.vuln-product {
    margin-top:9px;

    color:var(--muted);

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

.vulnerability-card p {
    margin-bottom:0;

    line-height:1.45;

    font-size:11px;
}

.kev-action {
    margin-top:12px;
    padding:11px;

    border-radius:10px;

    background:#111;
    color:#fff;

    font-size:11px;

    line-height:1.45;
}

@media(max-width:700px) {

    .vulnerability-summary {
        grid-template-columns:
            1fr 1fr;
    }

}

/* VIGIE_INFRA_CSS_START */

.infra-header {
    display:flex;
    justify-content:space-between;
    align-items:end;

    gap:20px;

    margin-top:28px;
}

.infra-header h2 {
    margin:6px 0;

    font-size:32px;
    letter-spacing:-.04em;
}

.infra-header p {
    max-width:650px;

    margin:0;

    color:var(--muted);

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

.infra-list {
    display:flex;
    flex-direction:column;

    gap:10px;

    margin-top:20px;
}

.infra-card {
    padding:18px;

    background:white;

    border:1px solid var(--border);
    border-radius:18px;
}

.infra-card-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:15px;
}

.infra-title {
    display:flex;
    align-items:center;

    gap:8px;
}

.infra-title strong {
    font-size:16px;
}

.infra-host {
    display:block;

    margin-top:5px;

    color:var(--muted);

    font-size:11px;
}

.infra-dot {
    width:10px;
    height:10px;

    border-radius:50%;

    background:#999;
}

.infra-dot.online {
    background:var(--lime);
}

.infra-dot.offline {
    background:var(--red);
}

.infra-dot.waiting {
    background:var(--orange);
}

.infra-status {
    padding:6px 9px;

    border-radius:100px;

    background:#eee;

    font-size:9px;
    font-weight:900;
}

.infra-status.online {
    background:var(--lime);
}

.infra-status.offline {
    background:var(--red-soft);
}

.infra-status.waiting {
    background:var(--orange-soft);
}

.infra-metrics {
    display:grid;

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

    gap:8px;

    margin-top:17px;
}

.infra-metrics > div {
    min-height:70px;

    display:flex;
    flex-direction:column;

    padding:11px;

    background:var(--bg);

    border-radius:11px;
}

.infra-metrics span {
    color:var(--muted);

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

.infra-metrics strong {
    margin-top:auto;

    overflow:hidden;

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

    font-size:12px;
}

.infra-ports {
    display:flex;
    flex-wrap:wrap;

    gap:5px;

    margin-top:12px;
}

.infra-ports span {
    padding:5px 8px;

    border-radius:8px;

    background:#11130f;
    color:white;

    font-family:monospace;
    font-size:9px;
}

.infra-label {
    display:flex;
    flex-direction:column;

    gap:7px;

    margin:16px 0;

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

.infra-secret {
    margin:10px 0;

    padding:12px;

    overflow-wrap:anywhere;

    background:#11130f;
    color:white;

    border-radius:11px;

    font-size:10px;
}

@media(max-width:950px) {

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

}

@media(max-width:620px) {

    .infra-header {
        flex-direction:column;
        align-items:stretch;
    }

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

}

/* VIGIE_INFRA_CSS_END */


/* VIGIE V3.7.1 */

.infra-actions {
    display:flex;
    flex-wrap:wrap;

    gap:6px;

    margin-top:14px;
}

.btn.danger {
    background:#ffe2df;
    color:#a21d17;
}

.btn.danger:hover {
    background:#ffd3cf;
}

/* VIGIE_PRICING_CSS_START */

.pricing-hero {
    margin-top: 28px;
}

.pricing-hero h2 {
    margin: 8px 0 10px;
    font-size: 36px;
    letter-spacing: -.05em;
}

.pricing-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.pricing-current {
    margin-top: 18px;
}

.pricing-current-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f3ffd4 0%, #ffffff 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.pricing-current-card h3 {
    margin: 6px 0;
    font-size: 28px;
    letter-spacing: -.04em;
}

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

.pricing-current-price {
    text-align: right;
}

.pricing-current-price strong {
    display: block;
    font-size: 32px;
    letter-spacing: -.05em;
}

.pricing-current-price span {
    color: var(--muted);
    font-size: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.pricing-card.current {
    border: 2px solid var(--lime);
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.pricing-card-top h3 {
    margin: 10px 0 8px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.pricing-tagline {
    min-height: 38px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.pricing-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-badge,
.pricing-current-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.pricing-badge {
    background: #f2f2ee;
    color: #111;
}

.pricing-current-badge {
    background: var(--lime);
    color: #111;
}

.pricing-price {
    margin-top: 18px;
}

.pricing-price strong {
    font-size: 40px;
    letter-spacing: -.06em;
}

.pricing-price span {
    margin-left: 6px;
    color: var(--muted);
    font-size: 12px;
}

.pricing-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    margin: 0 0 10px 0;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.45;
}

.pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lime);
    font-weight: 900;
}

.pricing-compare {
    margin-top: 24px;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.pricing-compare-head h3 {
    margin: 8px 0 0;
    font-size: 28px;
    letter-spacing: -.04em;
}

.pricing-table-wrap {
    margin-top: 18px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #ecece7;
    text-align: left;
    font-size: 12px;
}

.pricing-table th {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
    min-width: 220px;
}

@media (max-width: 1150px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .pricing-current-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-current-price {
        text-align: left;
    }

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

    .pricing-hero h2,
    .pricing-compare-head h3 {
        font-size: 28px;
    }
}

/* VIGIE_PRICING_CSS_END */

/* VIGIE_SUBSCRIPTION_CSS_START */

.subscription-link {
    padding:7px 10px;

    border:0;
    border-radius:10px;

    background:transparent;

    color:var(--text);

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

.subscription-link:hover {
    background:#e9ebe5;
}


.subscription-page {
    min-height:calc(100vh - 80px);
}

.subscription-container {
    max-width:1250px;

    margin:auto;

    padding:
        45px 24px 110px;
}

.subscription-back {
    padding:0;

    border:0;

    background:transparent;

    color:var(--muted);

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

.subscription-header {
    margin-top:45px;
}

.subscription-header h1 {
    margin:8px 0;

    font-size:58px;

    letter-spacing:-.06em;
}

.subscription-header p {
    color:var(--muted);
}


.current-subscription {
    display:grid;

    grid-template-columns:
        1fr auto auto;

    gap:25px;

    align-items:center;

    margin-top:35px;
    padding:24px;

    background:
        linear-gradient(
            135deg,
            var(--lime),
            #ecffc1
        );

    border-radius:22px;
}

.current-subscription-label {
    font-size:9px;
    font-weight:900;

    letter-spacing:.12em;
}

.current-subscription h2 {
    margin:5px 0;

    font-size:35px;
}

.current-subscription p {
    margin:0;

    font-size:12px;
}

.current-subscription-price {
    text-align:right;
}

.current-subscription-price strong {
    display:block;

    font-size:35px;
}

.current-subscription-price span {
    font-size:11px;
}


.subscription-section-title {
    margin-top:55px;
}

.subscription-section-title h2 {
    margin:7px 0;

    font-size:35px;

    letter-spacing:-.04em;
}


.subscription-grid {
    display:grid;

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

    gap:10px;

    margin-top:20px;
}


.subscription-plan-card {
    display:flex;
    flex-direction:column;

    min-height:440px;

    padding:20px;

    background:#fff;

    border:
        1px solid var(--border);

    border-radius:20px;
}


.subscription-plan-card.selected {
    border:
        2px solid var(--lime);

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.05);
}


.subscription-current-pill {
    display:inline-flex;

    margin-bottom:12px;

    padding:5px 8px;

    border-radius:100px;

    background:var(--lime);

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


.subscription-plan-name {
    display:block;

    color:var(--muted);

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

    letter-spacing:.12em;
}


.subscription-price {
    margin-top:22px;
}

.subscription-price strong {
    font-size:40px;

    letter-spacing:-.06em;
}

.subscription-price span {
    margin-left:5px;

    color:var(--muted);

    font-size:11px;
}

.subscription-plan-card p {
    min-height:36px;

    color:var(--muted);

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


.subscription-plan-card ul {
    flex:1;

    margin:20px 0;
    padding:0;

    list-style:none;
}


.subscription-plan-card li {
    position:relative;

    margin-bottom:10px;
    padding-left:17px;

    font-size:11px;

    line-height:1.4;
}

.subscription-plan-card li::before {
    content:"✓";

    position:absolute;

    left:0;

    font-weight:900;
}


.subscription-compare {
    margin-top:35px;

    padding:22px;

    background:white;

    border:
        1px solid var(--border);

    border-radius:20px;
}

.subscription-compare h2 {
    margin-top:0;

    font-size:28px;

    letter-spacing:-.04em;
}


.subscription-table-wrap {
    overflow-x:auto;
}


.subscription-table {
    width:100%;

    min-width:760px;

    border-collapse:collapse;
}


.subscription-table th,
.subscription-table td {
    padding:14px;

    border-bottom:
        1px solid #eceee8;

    text-align:center;

    font-size:11px;
}


.subscription-table th:first-child,
.subscription-table td:first-child {
    text-align:left;

    font-weight:750;
}


.subscription-table th {
    color:var(--muted);

    font-size:9px;

    letter-spacing:.08em;
}


@media(max-width:1050px) {

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

}


@media(max-width:650px) {

    .subscription-link {
        display:none;
    }

    .subscription-header h1 {
        font-size:42px;
    }

    .current-subscription {
        grid-template-columns:1fr;
    }

    .current-subscription-price {
        text-align:left;
    }

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

}

/* VIGIE_SUBSCRIPTION_CSS_END */

/* VIGIE_INFRA_SECURITY_CSS_START */

.infra-head-right {
    display:flex;
    align-items:center;
    gap:7px;
}

.infra-security-score {
    padding:7px 10px;

    border-radius:100px;

    background:#eee;

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

.infra-security-score.good {
    background:var(--lime);
}

.infra-security-score.warn {
    background:var(--orange-soft);
}

.infra-security-score.bad {
    background:var(--red-soft);
}


.infra-security-hero {
    display:flex;
    align-items:center;

    gap:18px;

    margin:18px 0 22px;
}

.infra-security-hero h3 {
    margin:4px 0;

    font-size:25px;
}

.infra-security-hero p {
    margin:0;

    color:var(--muted);

    font-size:11px;
}


.infra-security-big-score {
    width:100px;
    height:100px;

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

    flex:none;

    border-radius:50%;

    background:#eee;

    font-size:29px;
    font-weight:950;
}

.infra-security-big-score small {
    font-size:11px;
}

.infra-security-big-score.good {
    background:var(--lime);
}

.infra-security-big-score.warn {
    background:var(--orange-soft);
}

.infra-security-big-score.bad {
    background:var(--red-soft);
}


.infra-finding {
    margin-top:8px;
    padding:14px;

    border-radius:13px;

    background:#f0f1ed;
}

.infra-finding.critical {
    background:#ffd6d3;
}

.infra-finding.high {
    background:#ffe2d2;
}

.infra-finding.medium {
    background:#fff0c9;
}

.infra-finding.low {
    background:#edf1e6;
}

.infra-finding-head {
    display:flex;
    align-items:center;

    gap:8px;
}

.infra-finding-level {
    padding:5px 7px;

    border-radius:100px;

    background:#111;
    color:white;

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

.infra-finding p {
    margin:10px 0;

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

.infra-recommendation {
    padding:10px;

    border-radius:9px;

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

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


@media(max-width:650px) {

    .infra-security-hero {
        align-items:flex-start;
    }

    .infra-security-big-score {
        width:75px;
        height:75px;

        font-size:22px;
    }

}

/* VIGIE_INFRA_SECURITY_CSS_END */

/* VIGIE_EXPOSURE_CSS_START */

.infra-exposure-strip {
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-top:13px;
    padding:10px 12px;

    border-radius:11px;

    background:#f6f7f3;

    font-size:9px;
}

.infra-exposure-strip div {
    display:flex;
    align-items:center;
    gap:5px;
}

.infra-exposure-strip strong {
    font-size:11px;
}

.exposure-dot {
    width:7px;
    height:7px;

    border-radius:50%;
}

.exposure-dot.public {
    background:#ff644f;
}

.exposure-dot.restricted {
    background:#e7b51d;
}

.exposure-dot.protected {
    background:#86aa51;
}

.exposure-dot.local {
    background:#969b90;
}


.console-description {
    max-width:850px;

    color:var(--muted);

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


.score-breakdown {
    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:12px;
}

.score-line {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:15px;

    padding:10px 12px;

    border-bottom:
        1px solid #eceee8;

    font-size:10px;
}

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

.score-line.base {
    background:#f7f8f4;
}

.score-line.final {
    background:#11130f;
    color:white;

    font-weight:900;
}

.score-line:not(.base):not(.final) strong {
    color:#be3326;
}


.exposure-counters {
    display:grid;

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

    gap:8px;

    margin:13px 0;
}

.exposure-counter {
    min-height:70px;

    display:flex;
    flex-direction:column;

    justify-content:space-between;

    padding:11px;

    border-radius:11px;

    background:#f4f5f1;
}

.exposure-counter span {
    font-size:8px;
    font-weight:800;
    letter-spacing:.06em;
}

.exposure-counter strong {
    font-size:23px;
}

.exposure-counter.public {
    background:#ffe2dc;
}

.exposure-counter.restricted {
    background:#fff0c6;
}

.exposure-counter.protected {
    background:#e8f3d6;
}

.exposure-counter.local {
    background:#eceee9;
}


.exposure-services {
    border:
        1px solid var(--border);

    border-radius:13px;

    overflow:hidden;
}

.exposure-service {
    display:grid;

    grid-template-columns:
        210px 1fr;

    gap:15px;

    padding:11px 12px;

    border-bottom:
        1px solid #eceee8;
}

.exposure-service:last-child {
    border-bottom:0;
}

.exposure-service-main {
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:7px;
}

.exposure-service-main > strong {
    min-width:58px;

    font-family:monospace;
}

.exposure-service-main > span {
    font-size:10px;
    font-weight:750;
}

.exposure-service-main small {
    color:var(--muted);

    font-size:8px;
}


.exposure-service-state {
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:5px;
}

.exposure-service-state small {
    color:var(--muted);

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


.exposure-pill {
    display:inline-flex;

    padding:5px 7px;

    border-radius:100px;

    background:#eceee9;

    font-size:7px;
    font-weight:900;
    letter-spacing:.05em;
}

.exposure-pill.firewall_allowed,
.exposure-pill.potentially_public {
    background:#ffe0da;
    color:#9b281e;
}

.exposure-pill.restricted {
    background:#fff0c6;
    color:#725800;
}

.exposure-pill.firewall_protected {
    background:#e5f3ce;
    color:#345000;
}

.exposure-pill.local,
.exposure-pill.private_network {
    background:#eceee9;
}

.exposure-pill.unknown {
    background:#eee;
}


.finding-deduction {
    margin-left:auto;

    padding:4px 7px;

    border-radius:100px;

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

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


.update-packages {
    margin-top:10px;

    border:
        1px solid var(--border);

    border-radius:12px;

    overflow:hidden;
}

.update-package {
    display:grid;

    grid-template-columns:
        minmax(120px,1fr)
        minmax(200px,1fr)
        auto;

    gap:15px;

    align-items:center;

    padding:10px 12px;

    border-bottom:
        1px solid #eceee8;
}

.update-package:last-child {
    border-bottom:0;
}

.update-package > div:first-child {
    display:flex;
    flex-direction:column;

    gap:2px;
}

.update-package small {
    color:var(--muted);

    font-size:8px;
}

.update-version {
    display:flex;

    gap:7px;

    align-items:center;

    font-family:monospace;
    font-size:8px;

    overflow-wrap:anywhere;
}

.update-type {
    padding:5px 7px;

    border-radius:100px;

    background:#eceee9;

    font-size:7px;
    font-weight:900;
}

.update-type.security {
    background:#ffe1dc;
    color:#9b281e;
}


@media(max-width:750px) {

    .exposure-counters {
        grid-template-columns:
            1fr 1fr;
    }

    .exposure-service {
        grid-template-columns:1fr;
        gap:8px;
    }

    .update-package {
        grid-template-columns:1fr;
        gap:6px;
    }

}

/* VIGIE_EXPOSURE_CSS_END */

/* VIGIE_CHANGE_TIMELINE_CSS_START */

.infra-changes-section {
    margin-top:30px;
}


.change-summary {
    display:grid;

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

    gap:8px;

    margin:12px 0 18px;
}


.change-summary > div {
    min-height:65px;

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

    padding:10px;

    background:#f2f3ef;

    border-radius:11px;
}


.change-summary span {
    color:var(--muted);

    font-size:8px;
    font-weight:800;
    letter-spacing:.08em;
}


.change-summary strong {
    font-size:22px;
}


.change-timeline {
    position:relative;
}


.change-event {
    display:grid;

    grid-template-columns:
        22px 1fr;

    gap:10px;
}


.change-rail {
    position:relative;

    display:flex;
    justify-content:center;
}


.change-rail::after {
    content:"";

    position:absolute;

    top:16px;
    bottom:-4px;

    width:1px;

    background:#dfe1da;
}


.change-event:last-child
.change-rail::after {
    display:none;
}


.change-dot {
    position:relative;
    z-index:2;

    width:9px;
    height:9px;

    margin-top:14px;

    border-radius:50%;

    background:#999;
}


.change-event.critical
.change-dot {
    background:#c92a21;
}


.change-event.high
.change-dot {
    background:#eb5b39;
}


.change-event.medium
.change-dot {
    background:#d7a318;
}


.change-event.low
.change-dot {
    background:#91a65d;
}


.change-event.info
.change-dot {
    background:#8c9188;
}


.change-body {
    margin-bottom:9px;
    padding:11px 12px;

    background:#f7f8f5;

    border:
        1px solid #eceee8;

    border-radius:11px;
}


.change-head {
    display:flex;
    flex-wrap:wrap;
    align-items:center;

    gap:6px;
}


.change-severity {
    padding:4px 6px;

    border-radius:100px;

    background:#e8eae5;

    font-size:7px;
    font-weight:900;
}


.change-severity.critical {
    background:#ffd6d2;
    color:#941e17;
}


.change-severity.high {
    background:#ffe1d4;
    color:#9d381e;
}


.change-severity.medium {
    background:#fff0c8;
    color:#725800;
}


.change-severity.low {
    background:#e9f1d9;
    color:#415500;
}


.change-category {
    color:var(--muted);

    font-size:8px;

    text-transform:uppercase;
}


.change-head time {
    margin-left:auto;

    color:var(--muted);

    font-size:8px;
}


.change-title {
    display:block;

    margin-top:7px;

    font-size:11px;
}


.change-detail {
    margin-top:5px;

    color:var(--muted);

    font-family:monospace;
    font-size:8px;

    overflow-wrap:anywhere;
}


@media(max-width:650px) {

    .change-summary {
        grid-template-columns:
            1fr 1fr;
    }

    .change-head time {
        width:100%;
        margin-left:0;
    }

}

/* VIGIE_CHANGE_TIMELINE_CSS_END */

/* VIGIE_PENTEST_CONSOLE_CSS_V401_START */

.pentest-header {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:20px;

    margin-top:28px;
}

.pentest-header h2 {
    margin:7px 0;

    font-size:36px;

    letter-spacing:-.05em;
}

.pentest-header p {
    max-width:670px;

    margin:0;

    color:var(--muted);

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


.pentest-profile-pill {
    display:flex;
    flex-direction:column;

    padding:10px 13px;

    border-radius:12px;

    background:#11130f;
    color:white;
}

.pentest-profile-pill span {
    font-size:7px;
    letter-spacing:.1em;
}

.pentest-profile-pill strong {
    margin-top:3px;

    font-size:14px;
}


.pentest-profiles {
    display:grid;

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

    gap:10px;

    margin-top:20px;
}


.pentest-profile {
    min-height:170px;

    padding:17px;

    border:
        1px solid var(--border);

    border-radius:17px;

    background:white;
}


.pentest-profile.active {
    border:
        2px solid var(--lime);
}


.pentest-profile.locked {
    opacity:.58;
}


.pentest-profile-status {
    display:inline-flex;

    padding:5px 7px;

    border-radius:100px;

    background:#eceee8;

    font-size:7px;
    font-weight:900;
}


.pentest-profile.active
.pentest-profile-status {
    background:var(--lime);
}


.pentest-profile h3 {
    margin:12px 0 5px;

    font-size:22px;
}


.pentest-profile p {
    color:var(--muted);

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


.pentest-profile ul {
    margin:13px 0 0;
    padding-left:17px;

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


.pentest-section-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:15px;

    margin-top:34px;
}


.pentest-section-head.history {
    margin-top:40px;
}


.pentest-section-head h3 {
    margin:5px 0 0;

    font-size:25px;

    letter-spacing:-.04em;
}


.pentest-targets {
    display:flex;
    flex-direction:column;

    gap:9px;

    margin-top:13px;
}


.pentest-target-card {
    padding:16px;

    background:white;

    border:
        1px solid var(--border);

    border-radius:17px;
}


.pentest-target-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:15px;
}


.pentest-target-title {
    display:flex;
    align-items:center;

    gap:7px;
}


.pentest-target-title strong {
    font-size:14px;
}


.pentest-target-dot {
    width:8px;
    height:8px;

    border-radius:50%;

    background:#aaa;
}


.pentest-target-dot.verified {
    background:var(--lime);
}


.pentest-target-dot.unverified {
    background:#aaa;
}


.pentest-target-url {
    display:block;

    margin-top:5px;

    color:var(--muted);

    font-family:monospace;
    font-size:9px;
}


.pentest-verification {
    padding:6px 8px;

    border-radius:100px;

    background:#eceee8;

    font-size:7px;
    font-weight:900;
}


.pentest-verification.verified {
    background:var(--lime);
}


.pentest-target-actions {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:15px;

    margin-top:17px;
}


.pentest-action-buttons {
    display:flex;
    gap:6px;

    flex-wrap:wrap;
}


.pentest-last-result {
    color:var(--muted);

    font-size:9px;
}


.pentest-scope-warning {
    margin-top:10px;
    padding:9px 10px;

    background:#f1f2ee;

    border-radius:9px;

    color:var(--muted);

    font-size:9px;
}


.pentest-running {
    margin-top:15px;
    padding:12px;

    border-radius:12px;

    background:#f4f5f1;
}


.pentest-running-head {
    display:flex;
    justify-content:space-between;

    gap:15px;

    margin-bottom:10px;
}


.pentest-running-head > div {
    display:flex;
    flex-direction:column;

    gap:3px;
}


.pentest-running-head strong {
    font-size:10px;
}


.pentest-running-head > span {
    font-size:12px;
    font-weight:900;
}


.pentest-progress {
    height:7px;

    margin-bottom:10px;

    overflow:hidden;

    border-radius:100px;

    background:#dedfd9;
}


.pentest-progress div {
    height:100%;

    border-radius:100px;

    background:var(--lime);

    transition:
        width .25s ease;
}


.pentest-history {
    margin-top:12px;

    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:15px;

    background:white;
}


.pentest-history-row {
    display:grid;

    grid-template-columns:
        minmax(160px,2fr)
        110px
        90px
        minmax(150px,1fr)
        auto;

    align-items:center;

    gap:12px;

    padding:11px 13px;

    border-bottom:
        1px solid #eceee8;
}


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


.pentest-history-row > div:first-child {
    display:flex;
    flex-direction:column;

    gap:3px;
}


.pentest-history-row > div:first-child strong {
    font-size:10px;
}


.pentest-history-row > div:first-child span {
    color:var(--muted);

    font-size:7px;
}


.pentest-job-status {
    display:inline-flex;

    padding:5px 7px;

    border-radius:100px;

    background:#eceee8;

    font-size:7px;
    font-weight:900;
}


.pentest-job-status.running {
    background:#fff0c7;
}


.pentest-job-status.completed {
    background:#e7f4d3;
}


.pentest-job-status.failed {
    background:#ffdcd6;
}


.pentest-history-findings {
    display:flex;
    align-items:baseline;

    gap:4px;
}


.pentest-history-findings strong {
    font-size:15px;
}


.pentest-history-findings span,
.pentest-history-date {
    color:var(--muted);

    font-size:8px;
}


.pentest-report-hero {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    margin:17px 0 20px;
}


.pentest-report-hero h3 {
    margin:5px 0;

    font-size:27px;
}


.pentest-report-hero p {
    margin:0;

    color:var(--muted);

    font-size:9px;
}


.pentest-report-counts {
    display:grid;

    grid-template-columns:
        repeat(4,75px);

    gap:6px;
}


.pentest-report-counts > div {
    display:flex;
    flex-direction:column;

    gap:5px;

    padding:9px;

    border-radius:10px;

    background:#f1f2ee;
}


.pentest-report-counts span {
    font-size:7px;
    font-weight:900;
}


.pentest-report-counts strong {
    font-size:19px;
}


.pentest-report-counts
.critical {
    background:#ffd8d4;
}


.pentest-report-counts
.high {
    background:#ffe1d4;
}


.pentest-report-counts
.medium {
    background:#fff0c7;
}


.pentest-report-counts
.low {
    background:#eaf1dc;
}


.pentest-findings-list {
    display:flex;
    flex-direction:column;

    gap:8px;
}


.pentest-finding {
    padding:14px;

    border-radius:13px;

    background:#f3f4f0;
}


.pentest-finding.critical {
    background:#ffd8d4;
}


.pentest-finding.high {
    background:#ffe1d4;
}


.pentest-finding.medium {
    background:#fff0c7;
}


.pentest-finding.low {
    background:#edf2e5;
}


.pentest-finding-head {
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:7px;
}


.pentest-finding-head > strong {
    font-size:11px;
}


.pentest-finding-level {
    padding:5px 7px;

    border-radius:100px;

    background:#111;
    color:white;

    font-size:7px;
    font-weight:900;
}


.pentest-finding-category {
    color:var(--muted);

    font-size:7px;

    text-transform:uppercase;
}


.pentest-finding > p {
    margin:10px 0;

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


.pentest-evidence {
    display:flex;
    flex-direction:column;

    gap:6px;

    margin-top:9px;
    padding:9px;

    border-radius:9px;

    background:rgba(
        255,
        255,
        255,
        .65
    );
}


.pentest-evidence span,
.pentest-remediation span {
    font-size:7px;
    font-weight:900;
    letter-spacing:.07em;
}


.pentest-evidence code {
    overflow-wrap:anywhere;
    white-space:pre-wrap;

    font-size:8px;
}


.pentest-remediation {
    margin-top:8px;
    padding:9px;

    border-radius:9px;

    background:#fff;
}


.pentest-remediation p {
    margin:5px 0 0;

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


@media(max-width:850px) {

    .pentest-profiles {
        grid-template-columns:1fr;
    }

    .pentest-history-row {
        grid-template-columns:
            1fr auto;

        gap:8px;
    }

    .pentest-history-row
    > div:nth-child(3),
    .pentest-history-row
    > div:nth-child(4) {
        display:none;
    }

}


@media(max-width:650px) {

    .pentest-header {
        align-items:flex-start;
        flex-direction:column;
    }

    .pentest-target-head,
    .pentest-target-actions,
    .pentest-report-hero {
        align-items:flex-start;
        flex-direction:column;
    }

    .pentest-report-counts {
        grid-template-columns:
            repeat(2,1fr);

        width:100%;
    }

}

/* VIGIE_PENTEST_CONSOLE_CSS_V401_END */

/* VIGIE_HIDE_SUBSCRIPTION_TECH_TAB_CSS_START */

.tabs #tabPricing {
    display:none !important;
}

/* VIGIE_HIDE_SUBSCRIPTION_TECH_TAB_CSS_END */

/* VIGIE_PENTEST_REPORT_CSS_V402_START */


.pentest-report-counts.v402 {
    grid-template-columns:
        repeat(5,68px);
}


.pentest-report-counts
.info {
    background:#eceee9;
}


.pentest-trust-summary {
    display:grid;

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

    gap:7px;

    margin:15px 0 20px;
}


.pentest-trust-summary > div {
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 12px;

    border-radius:11px;

    background:#f2f3ef;
}


.pentest-trust-summary span {
    font-size:7px;
    font-weight:900;
    letter-spacing:.08em;
}


.pentest-trust-summary strong {
    font-size:16px;
}


.pentest-assessment {
    padding:4px 6px;

    border-radius:100px;

    font-size:7px;
    font-weight:900;
    letter-spacing:.04em;
}


.pentest-assessment.confirmed {
    background:#dff0c9;
    color:#385300;
}


.pentest-assessment.heuristic {
    background:#fff0c7;
    color:#755900;
}


.pentest-assessment.informational {
    background:#e8eae5;
    color:#595d55;
}


.pentest-observation-grid {
    display:grid;

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

    gap:7px;
}


.mono-small {
    font-family:monospace;

    font-size:8px !important;

    overflow-wrap:anywhere;
}


.pentest-privacy-note {
    margin-top:9px;

    padding:9px 11px;

    border-radius:10px;

    background:#eef1e8;

    color:var(--muted);

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


.pentest-redirects {
    display:flex;
    flex-direction:column;

    gap:6px;
}


.pentest-redirect-row {
    display:grid;

    grid-template-columns:
        70px minmax(120px,1fr)
        auto minmax(120px,1fr);

    gap:8px;

    align-items:center;

    padding:9px 10px;

    background:#f4f5f1;

    border-radius:10px;
}


.pentest-redirect-row span {
    font-size:8px;
    font-weight:800;
}


.pentest-redirect-row code {
    font-size:8px;

    overflow-wrap:anywhere;
}


.pentest-muted {
    color:var(--muted);

    font-size:9px;
}


.scan-fingerprint-box {
    display:flex;
    flex-direction:column;

    gap:6px;

    padding:11px;

    background:#11130f;

    color:white;

    border-radius:11px;
}


.scan-fingerprint-box > span {
    font-size:7px;
    font-weight:900;
    letter-spacing:.08em;

    opacity:.7;
}


.scan-fingerprint-box code {
    font-size:10px;

    overflow-wrap:anywhere;
}


.scan-fingerprint-box small {
    max-width:650px;

    font-size:8px;
    line-height:1.5;

    opacity:.6;
}


.finding-fingerprint {
    display:flex;
    align-items:center;

    gap:6px;

    margin-top:7px;
}


.finding-fingerprint span {
    font-size:7px;
    font-weight:900;
}


.finding-fingerprint code {
    font-size:7px;

    opacity:.65;
}


@media(max-width:800px) {

    .pentest-report-counts.v402 {
        grid-template-columns:
            repeat(3,1fr);

        width:100%;
    }


    .pentest-observation-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .pentest-redirect-row {
        grid-template-columns:1fr;
    }

}


@media(max-width:550px) {

    .pentest-trust-summary,
    .pentest-observation-grid {
        grid-template-columns:1fr;
    }


    .pentest-report-counts.v402 {
        grid-template-columns:
            1fr 1fr;
    }

}


/* VIGIE_PENTEST_REPORT_CSS_V402_END */

/* VIGIE_STANDARD_CSS_V41_START */

.pentest-profile.standard {
    border-color:#11130f;
}


.standard-tech-list {
    display:grid;

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

    gap:7px;
}


.standard-tech {
    display:flex;
    flex-direction:column;

    gap:4px;

    padding:11px;

    border-radius:11px;

    background:#f2f3ef;
}


.standard-tech strong {
    font-size:11px;
}


.standard-tech span {
    font-family:monospace;
    font-size:8px;
}


.standard-tech small {
    color:var(--muted);

    font-size:7px;
}


.standard-endpoints {
    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:12px;
}


.standard-endpoint {
    display:grid;

    grid-template-columns:
        minmax(120px,1fr)
        60px
        minmax(100px,1fr);

    gap:10px;

    align-items:center;

    padding:9px 11px;

    border-bottom:
        1px solid #eceee8;
}


.standard-endpoint:last-child {
    border-bottom:0;
}


.standard-endpoint code {
    font-size:8px;
}


.standard-endpoint strong {
    font-size:9px;
}


.standard-endpoint span {
    color:var(--muted);

    font-size:8px;
}


@media(max-width:600px) {

    .standard-endpoint {
        grid-template-columns:
            1fr auto;
    }

    .standard-endpoint span {
        grid-column:
            1 / -1;
    }

}

/* VIGIE_STANDARD_CSS_V41_END */

/* VIGIE_VULN_INTEL_CSS_V411_START */


.vuln-intel-warning {
    margin:10px 0 12px;

    padding:11px 12px;

    border-radius:11px;

    background:#fff0c8;
}


.vuln-intel-warning > strong {
    font-size:9px;
}


.vuln-intel-warning p {
    margin:5px 0 0;

    max-width:820px;

    color:#62582e;

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


.vuln-intel-summary {
    display:grid;

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

    gap:7px;

    margin-bottom:13px;
}


.vuln-intel-summary > div {
    display:flex;
    flex-direction:column;

    gap:5px;

    padding:10px;

    border-radius:10px;

    background:#f2f3ef;
}


.vuln-intel-summary span {
    color:var(--muted);

    font-size:7px;
    font-weight:900;
}


.vuln-intel-summary strong {
    font-size:17px;
}


.vuln-subtitle {
    margin:15px 0 7px;

    font-size:10px;
}


.vuln-products-list {
    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:11px;
}


.vuln-product-row {
    display:grid;

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

    gap:10px;

    align-items:center;

    padding:8px 10px;

    border-bottom:
        1px solid #eceee8;
}


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


.vuln-product-row strong {
    font-size:9px;
}


.vuln-product-row code {
    font-size:8px;
}


.vuln-product-row span {
    color:var(--muted);

    font-size:7px;
    font-weight:800;
}


.vuln-candidates-list {
    display:flex;
    flex-direction:column;

    gap:7px;
}


.vuln-candidate {
    padding:12px;

    border:
        1px solid #e1e3dc;

    border-radius:12px;

    background:#f7f8f5;
}


.vuln-candidate-head {
    display:flex;

    align-items:center;
    flex-wrap:wrap;

    gap:6px;
}


.vuln-candidate-head > strong {
    font-family:monospace;

    font-size:11px;
}


.kev-badge {
    padding:4px 6px;

    border-radius:100px;

    background:#c92a21;

    color:white;

    font-size:7px;
    font-weight:900;
}


.cvss-badge {
    padding:4px 6px;

    border-radius:100px;

    background:#11130f;

    color:white;

    font-size:7px;
    font-weight:900;
}


.vuln-product {
    display:flex;
    align-items:center;

    gap:7px;

    margin-top:8px;
}


.vuln-product strong {
    font-size:9px;
}


.vuln-product code {
    font-size:8px;
}


.vuln-candidate > p {
    max-width:850px;

    margin:8px 0;

    color:var(--muted);

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


.vuln-meta {
    display:flex;
    flex-wrap:wrap;

    gap:7px;

    margin-top:8px;
}


.vuln-meta span {
    display:flex;
    align-items:center;

    gap:4px;

    padding:5px 7px;

    border-radius:100px;

    background:#eceee9;

    color:var(--muted);

    font-size:6px;
    font-weight:800;
}


.vuln-meta strong {
    color:#11130f;

    font-size:7px;
}


@media(max-width:650px) {

    .vuln-intel-summary {
        grid-template-columns:
            1fr 1fr;
    }

    .vuln-product-row {
        grid-template-columns:
            1fr;
    }

}


/* VIGIE_VULN_INTEL_CSS_V411_END */

/* VIGIE_ASSET_CORRELATION_CSS_V412_START */


.asset-correlation-hero {
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:14px;

    border-radius:13px;

    background:#11130f;
    color:white;
}


.asset-link-status {
    display:inline-flex;

    padding:5px 7px;

    border-radius:100px;

    background:var(--lime);
    color:#11130f;

    font-size:7px;
    font-weight:900;
}


.asset-correlation-hero h4 {
    margin:9px 0 4px;

    font-size:15px;
}


.asset-correlation-hero p {
    max-width:650px;

    margin:0;

    font-size:8px;
    line-height:1.5;

    opacity:.7;
}


.asset-correlation-score {
    display:flex;
    flex-direction:column;

    gap:4px;

    min-width:110px;

    text-align:right;
}


.asset-correlation-score span {
    font-size:7px;

    opacity:.65;
}


.asset-correlation-score strong {
    font-size:23px;
}


.asset-correlation-grid {
    display:grid;

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

    gap:7px;

    margin-top:8px;
}


.asset-correlation-grid > div {
    display:flex;
    flex-direction:column;

    gap:5px;

    padding:10px;

    border-radius:10px;

    background:#f1f2ee;
}


.asset-correlation-grid span {
    color:var(--muted);

    font-size:7px;
    font-weight:900;
}


.asset-correlation-grid strong {
    font-size:10px;
}


.asset-correlation-subtitle {
    margin:16px 0 7px;

    font-size:10px;
}


.asset-package-list {
    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:12px;
}


.asset-package-row {
    display:grid;

    grid-template-columns:
        1fr 1.4fr auto auto;

    align-items:center;

    gap:10px;

    padding:10px;

    border-bottom:
        1px solid #eceee8;
}


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


.asset-package-row > div {
    display:flex;
    flex-direction:column;

    gap:3px;
}


.asset-package-row strong {
    font-size:9px;
}


.asset-package-row span {
    color:var(--muted);

    font-size:7px;
}


.asset-package-row code {
    font-size:7px;
}


.asset-match-badge,
.asset-update {
    display:inline-flex;

    padding:5px 6px;

    border-radius:100px;

    font-size:6px !important;
    font-weight:900;
}


.asset-match-badge.matched {
    background:#e4f2ce;
    color:#375100;
}


.asset-match-badge.different {
    background:#fff0c7;
    color:#745800;
}


.asset-update.security {
    background:#ffd9d3;
    color:#97241c;
}


.asset-update.clean {
    background:#e9f1df;
    color:#415700;
}


.asset-correlation-empty {
    padding:12px;

    border-radius:11px;

    background:#f1f2ee;
}


.asset-correlation-empty strong {
    font-size:10px;
}


.asset-correlation-empty p {
    margin:5px 0 0;

    color:var(--muted);

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


@media(max-width:750px) {

    .asset-correlation-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .asset-package-row {
        grid-template-columns:1fr;
    }

}


@media(max-width:550px) {

    .asset-correlation-hero {
        align-items:flex-start;
        flex-direction:column;
    }


    .asset-correlation-score {
        text-align:left;
    }

}


/* VIGIE_ASSET_CORRELATION_CSS_V412_END */

