@font-face {
    font-family: "Cairo";
    src: url("/static/fonts/Cairo-Variable.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

body.my-cynapse-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
    font-weight: 400;
    color: #18392b;
    background:
        radial-gradient(circle at top right, rgba(149, 213, 178, 0.20), transparent 30%),
        radial-gradient(circle at bottom left, rgba(29, 46, 40, 0.08), transparent 26%),
        linear-gradient(180deg, #f7faf6 0%, #eef4ec 46%, #ffffff 100%);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.myc-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(29, 46, 40, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.myc-topbar__inner,
.myc-shell {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}

.myc-topbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
}

.myc-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.myc-brand__logo {
    width: auto;
    height: 70px;
    max-width: 260px;
    object-fit: contain;
}

.myc-brand__eyebrow,
.myc-section__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-brand__title {
    margin-top: 4px;
    font-size: 26px;
    font-weight: 600;
    color: #1d2e28;
}

.myc-topbar__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.myc-nav-link {
    border: 1px solid rgba(29, 46, 40, 0.08);
    border-radius: 14px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #355244;
    background: rgba(248, 252, 244, 0.8);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.myc-nav-link:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 46, 40, 0.18);
    background: #ffffff;
}

.myc-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.myc-shell {
    padding: 28px 0 48px;
}

.myc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.myc-button--dark {
    color: #ffffff;
    background: #1d2e28;
    box-shadow: 0 14px 28px rgba(29, 46, 40, 0.18);
}

.myc-button--ghost {
    color: #1d2e28;
    background: #ffffff;
    border-color: rgba(29, 46, 40, 0.12);
}

.myc-button--ghost-danger {
    color: #7e2323;
    background: #ffffff;
    border-color: rgba(126, 35, 35, 0.18);
}

.myc-button--light {
    color: #1d2e28;
    background: #f5faef;
}

.myc-button--quiet {
    color: #4f655b;
    background: transparent;
    border-color: rgba(79, 101, 91, 0.16);
}

.myc-button--outline-light {
    color: #f6faf4;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
}

.myc-icon-button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d2e28;
    background: #ffffff;
    border: 1px solid rgba(29, 46, 40, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.myc-icon-button:hover {
    transform: translateY(-1px);
    background: #f8fcf4;
    border-color: rgba(29, 46, 40, 0.22);
}

.myc-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    border-radius: 22px;
    border: 1px solid transparent;
    margin-bottom: 22px;
}

.myc-notice--warning {
    color: #6a470c;
    background: #fff7df;
    border-color: #f3dea4;
}

.myc-notice--danger {
    color: #7d2020;
    background: #fff0f0;
    border-color: #f0c3c3;
}

.myc-notice--info {
    color: #17405c;
    background: #eef8ff;
    border-color: #c7e0f1;
}

.myc-notice__title {
    font-size: 17px;
    font-weight: 600;
}

.myc-notice__text {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

.myc-notice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.myc-banner-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.myc-banner {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.myc-banner--success {
    color: #16583f;
    background: #ecfff6;
    border-color: #bce5cf;
}

.myc-banner--warning {
    color: #6a470c;
    background: #fff7df;
    border-color: #f3dea4;
}

.myc-banner--neutral {
    color: #40554b;
    background: #f6faf6;
    border-color: #dde9df;
}

.myc-banner--danger {
    color: #7d2020;
    background: #fff0f0;
    border-color: #f0c3c3;
}

.myc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #17261f 0%, #264036 48%, #385b4d 100%);
    box-shadow: 0 28px 60px rgba(21, 34, 28, 0.24);
    position: relative;
    overflow: hidden;
}

.myc-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% 45%;
    height: 260px;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.18), transparent 62%);
    pointer-events: none;
}

.myc-hero--vulnhub {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #17261f 0%, #28493e 46%, #4d6c5e 100%);
}

.myc-hero__content,
.myc-identity-card {
    position: relative;
    z-index: 1;
}

.myc-portal-summary {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(14px);
}

.myc-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.myc-summary-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b7c9c0;
}

.myc-summary-name {
    margin-top: 8px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
}

.myc-summary-email {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #d8e4dd;
    overflow-wrap: anywhere;
}

.myc-summary-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f5faef;
    color: #1d2e28;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.myc-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.myc-summary-grid div {
    min-height: 82px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.myc-summary-grid span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b7c9c0;
}

.myc-summary-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.myc-identity-card {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
}

.myc-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 24px;
    background: #f5faef;
    color: #1d2e28;
    font-size: 30px;
    font-weight: 800;
}

.myc-identity-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b7c9c0;
}

.myc-identity-card__name {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.myc-identity-card__meta {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #d8e4dd;
}

.myc-identity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.myc-identity-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.myc-identity-grid span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b7c9c0;
}

.myc-identity-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    color: #ffffff;
}

.myc-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.myc-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #dce7e0;
}

.myc-chip--dark {
    background: rgba(255, 255, 255, 0.12);
}

.myc-hero__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 600;
}

.myc-hero__text {
    max-width: 860px;
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.9;
    color: #d8e4dd;
}

.myc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.myc-hero__panel {
    display: grid;
    gap: 14px;
}

.myc-hero-metric {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.myc-hero-metric__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b7c9c0;
}

.myc-hero-metric__value {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.myc-stats-grid,
.myc-command-grid,
.myc-plan-grid,
.myc-dual-grid {
    display: grid;
    gap: 18px;
}

.myc-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.myc-stat-card,
.myc-surface-card,
.myc-command-card,
.myc-portfolio-panel,
.myc-plan-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(29, 46, 40, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(25, 46, 37, 0.07);
}

.myc-stat-card {
    padding: 22px;
}

.myc-stat-card__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-stat-card__value {
    margin-top: 12px;
    font-size: 36px;
    font-weight: 600;
    color: #1d2e28;
}

.myc-stat-card__detail {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #546a5f;
}

.myc-section {
    margin-top: 24px;
}

.myc-section--surface {
    padding: 26px;
    border-radius: 28px;
    background: rgba(245, 249, 244, 0.88);
    border: 1px solid rgba(29, 46, 40, 0.06);
}

.myc-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.myc-section__title {
    margin: 8px 0 0;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.18;
    font-weight: 600;
    color: #1d2e28;
}

.myc-section__text {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #5b7167;
}

.myc-command-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.myc-command-grid--featured {
    align-items: stretch;
}

.myc-command-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.myc-product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 360px;
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
    border: 1px solid rgba(29, 46, 40, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(25, 46, 37, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.myc-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(25, 46, 37, 0.13);
}

.myc-product-card__shine {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(149, 213, 178, 0.20), transparent 35%),
        linear-gradient(135deg, rgba(29, 46, 40, 0.03), transparent 42%);
    pointer-events: none;
}

.myc-product-card > *:not(.myc-product-card__shine) {
    position: relative;
    z-index: 1;
}

.myc-product-card--secureops .myc-product-card__shine {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 35%);
}

.myc-product-card--vulnhub .myc-product-card__shine {
    background: radial-gradient(circle at top right, rgba(180, 83, 9, 0.16), transparent 35%);
}

.myc-command-card--ready {
    border-color: rgba(29, 46, 40, 0.14);
}

.myc-command-card--license-required,
.myc-command-card--project-required,
.myc-command-card--role-restricted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.96));
}

.myc-command-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.myc-command-card__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-command-card__title,
.myc-panel-title {
    margin: 8px 0 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #1d2e28;
}

.myc-command-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eef5eb;
    color: #1d2e28;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.myc-command-card__summary,
.myc-command-card__reason,
.myc-empty-state__text,
.myc-plan-card__summary {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #556c61;
}

.myc-command-card__reason {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f6faf4;
    border: 1px solid rgba(29, 46, 40, 0.06);
}

.myc-command-card__actions {
    margin-top: auto;
}

.myc-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.myc-status-badge--ready {
    color: #15553c;
    background: #ebfff5;
    border-color: #bee6d0;
}

.myc-status-badge--license-required {
    color: #6a470c;
    background: #fff7df;
    border-color: #f3dea4;
}

.myc-status-badge--project-required {
    color: #17405c;
    background: #eef8ff;
    border-color: #c7e0f1;
}

.myc-status-badge--role-restricted {
    color: #7d2020;
    background: #fff0f0;
    border-color: #f0c3c3;
}

.myc-status-badge--coming-soon {
    color: #6a470c;
    background: #fff7df;
    border-color: #f3dea4;
}

.myc-command-card--coming-soon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 238, 0.95));
}

.myc-portfolio-layout,
.myc-license-list,
.myc-project-list,
.myc-readiness-stack,
.myc-detail-list {
    display: grid;
    gap: 14px;
}

.myc-resource-grid,
.myc-account-grid {
    display: grid;
    gap: 18px;
}

.myc-resource-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.myc-resource-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.myc-resource-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(29, 46, 40, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(25, 46, 37, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.myc-resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(25, 46, 37, 0.10);
}

.myc-resource-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    background: #eef5eb;
    color: #1d2e28;
}

.myc-resource-card strong {
    display: block;
    font-size: 18px;
    color: #1d2e28;
}

.myc-resource-card small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: #5b7167;
}

.myc-account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.myc-chip--solid {
    color: #1d2e28;
    background: #eef5eb;
    border-color: #dbe7d7;
}

.myc-portfolio-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.myc-portfolio-panel,
.myc-surface-card {
    padding: 24px;
}

.myc-surface-card--spacious {
    margin-bottom: 18px;
}

.myc-panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.myc-inline-link {
    font-size: 13px;
    font-weight: 900;
    color: #25553d;
}

.myc-project-row,
.myc-license-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fcf7;
    border: 1px solid rgba(29, 46, 40, 0.06);
}

.myc-project-row__name,
.myc-license-row__title,
.myc-empty-state__title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2e28;
}

.myc-project-row__meta,
.myc-license-row__time {
    margin-top: 4px;
    font-size: 13px;
    color: #6a8377;
}

.myc-readiness-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(29, 46, 40, 0.06);
    background: #f8fcf7;
}

.myc-readiness-card span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-readiness-card strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: #1d2e28;
}

.myc-readiness-card__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-readiness-card__value {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #1d2e28;
}

.myc-dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.myc-detail-list {
    gap: 10px;
}

.myc-detail-list--compact {
    gap: 8px;
}

.myc-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(29, 46, 40, 0.1);
    font-size: 14px;
    color: #5b7167;
}

.myc-detail-row:last-child {
    border-bottom: none;
}

.myc-detail-row strong {
    color: #1d2e28;
    font-weight: 600;
    text-align: right;
}

.myc-card-actions,
.myc-inline-form,
.myc-form-stack,
.myc-license-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.myc-card-actions {
    margin-top: 18px;
}

.myc-form-stack {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
}

.myc-form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.myc-input {
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(29, 46, 40, 0.12);
    background: #f8fcf7;
    color: #1d2e28;
}

.myc-empty-state,
.myc-impact-box {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(29, 46, 40, 0.08);
    background: #f8fcf7;
}

.myc-impact-box {
    margin-top: 16px;
}

.myc-license-row {
    align-items: flex-start;
}

.myc-license-row__meta {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    color: #5b7167;
}

.myc-license-row__meta span {
    font-weight: 900;
    color: #1d2e28;
}

.myc-license-row__actions {
    align-items: flex-end;
    justify-content: flex-end;
    min-width: 170px;
}

.myc-plan-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.myc-plan-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
}

.myc-plan-card--current {
    border-color: rgba(29, 46, 40, 0.22);
    background: linear-gradient(180deg, #f7fcf3 0%, #ffffff 100%);
}

.myc-plan-card__footer {
    margin-top: auto;
}

.myc-plan-card__note {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f8fcf7;
    border: 1px solid rgba(29, 46, 40, 0.06);
    font-size: 13px;
    font-weight: 500;
    color: #667d71;
}

.my-cynapse-preline {
    white-space: pre-line;
}

@media (max-width: 1240px) {
    .myc-topbar__inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .myc-topbar__nav,
    .myc-topbar__actions {
        justify-content: flex-start;
    }

    .myc-hero,
    .myc-portfolio-layout,
    .myc-dual-grid,
    .myc-account-grid {
        grid-template-columns: 1fr;
    }

    .myc-stats-grid,
    .myc-command-grid,
    .myc-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .myc-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .myc-topbar__inner,
    .myc-shell {
        width: min(100% - 24px, 1380px);
    }

    .myc-hero,
    .myc-section--surface,
    .myc-portfolio-panel,
    .myc-surface-card,
    .myc-command-card,
    .myc-product-card,
    .myc-resource-card,
    .myc-identity-card,
    .myc-portal-summary,
    .myc-plan-card,
    .myc-stat-card {
        padding: 20px;
    }

    .myc-notice,
    .myc-section__heading,
    .myc-project-row,
    .myc-license-row,
    .myc-detail-row,
    .myc-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .myc-stats-grid,
    .myc-command-grid,
    .myc-resource-grid,
    .myc-account-grid,
    .myc-plan-grid,
    .myc-dual-grid {
        grid-template-columns: 1fr;
    }

    .myc-license-row__actions {
        min-width: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

body.vh-page {
    background:
        radial-gradient(circle at top right, rgba(180, 83, 9, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(29, 46, 40, 0.10), transparent 26%),
        linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.vh-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 24px;
    padding: 36px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 32%),
        linear-gradient(135deg, #17261f 0%, #28493e 50%, #5d6f5a 100%);
    box-shadow: 0 30px 74px rgba(21, 34, 28, 0.24);
}

.vh-hero__copy h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1;
    font-weight: 800;
}

.vh-hero__copy p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #d8e4dd;
    font-size: 17px;
    line-height: 1.9;
}

.vh-score-card {
    display: grid;
    align-content: center;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
}

.vh-score-card__label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c7d9d0;
}

.vh-score-card__score {
    margin-top: 16px;
    font-size: 84px;
    line-height: 0.95;
    font-weight: 900;
}

.vh-score-card__rating {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 900;
}

.vh-score-card p {
    margin: 18px 0 0;
    color: #d8e4dd;
    line-height: 1.8;
}

.vh-score-bar {
    height: 12px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.vh-score-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #95d5b2, #f59e0b, #dc2626);
}

.vh-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.vh-metrics article,
.vh-flow article,
.vh-report-card,
.vh-finding {
    border: 1px solid rgba(29, 46, 40, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(25, 46, 37, 0.07);
}

.vh-metrics article {
    padding: 22px;
    border-radius: 24px;
}

.vh-metrics span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6a8377;
}

.vh-metrics strong {
    display: block;
    margin-top: 10px;
    font-size: 38px;
    color: #1d2e28;
}

.vh-metrics small {
    display: block;
    margin-top: 6px;
    color: #5b7167;
}

.vh-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.vh-flow article {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
}

.vh-flow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #eef5eb;
    color: #1d2e28;
}

.vh-flow strong {
    font-size: 19px;
    color: #1d2e28;
}

.vh-flow span {
    color: #5b7167;
    line-height: 1.7;
}

.vh-findings {
    display: grid;
    gap: 16px;
}

.vh-finding {
    padding: 22px;
    border-radius: 24px;
}

.vh-finding--critical {
    border-color: rgba(220, 38, 38, 0.20);
}

.vh-finding--high {
    border-color: rgba(180, 83, 9, 0.22);
}

.vh-finding__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vh-finding__head span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a8377;
}

.vh-finding__head h3 {
    margin: 8px 0 0;
    font-size: 23px;
    line-height: 1.2;
    color: #1d2e28;
}

.vh-finding__head strong {
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: #1d2e28;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vh-finding__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vh-finding__meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef5eb;
    color: #1d2e28;
    font-size: 12px;
    font-weight: 800;
}

.vh-finding p,
.vh-finding__fix {
    color: #546a5f;
    line-height: 1.8;
}

.vh-report-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 30px;
    border-radius: 28px;
}

.vh-report-card h2 {
    margin: 8px 0 0;
    font-size: 34px;
    color: #1d2e28;
}

.vh-report-card p {
    max-width: 780px;
    color: #5b7167;
    line-height: 1.8;
}

.vh-report-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vh-report-body {
    margin: 0;
    background: #eef4ec;
    color: #1d2e28;
    font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

.vh-report-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(29, 46, 40, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.vh-report {
    width: min(1120px, calc(100% - 40px));
    margin: 24px auto 54px;
    display: grid;
    gap: 18px;
}

.vh-report-cover,
.vh-report-section {
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(29, 46, 40, 0.08);
    box-shadow: 0 18px 44px rgba(25, 46, 37, 0.07);
}

.vh-report-cover {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.45fr);
    gap: 24px;
    padding: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, #17261f 0%, #28493e 58%, #5d6f5a 100%);
}

.vh-report-kicker,
.vh-report-cover__meta span,
.vh-report-section > h2 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vh-report-cover h1 {
    margin: 14px 0 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
}

.vh-report-cover p {
    margin: 18px 0 0;
    color: #d8e4dd;
    font-size: 18px;
}

.vh-report-cover__meta {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vh-report-cover__meta strong {
    margin-bottom: 8px;
}

.vh-report-section {
    padding: 30px;
}

.vh-report-section > h2 {
    margin: 0 0 18px;
    color: #6a8377;
}

.vh-report-summary {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
}

.vh-report-score {
    padding: 24px;
    border-radius: 24px;
    background: #f8fcf4;
    border: 1px solid rgba(29, 46, 40, 0.08);
}

.vh-report-score span,
.vh-report-grid span,
.vh-report-treatment span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a8377;
}

.vh-report-score strong {
    display: block;
    margin-top: 10px;
    font-size: 74px;
    line-height: 0.95;
}

.vh-report-score em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 900;
}

.vh-report-section p {
    color: #4f655b;
    line-height: 1.85;
}

.vh-report-grid,
.vh-report-path,
.vh-report-treatment {
    display: grid;
    gap: 14px;
}

.vh-report-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vh-report-grid article,
.vh-report-path article,
.vh-report-treatment article {
    padding: 18px;
    border-radius: 18px;
    background: #f8fcf4;
    border: 1px solid rgba(29, 46, 40, 0.06);
}

.vh-report-grid strong {
    display: block;
    margin-top: 10px;
    font-size: 24px;
}

.vh-report-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vh-report-path b {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1d2e28;
    color: #ffffff;
}

.vh-report-path strong,
.vh-report-path span {
    display: block;
    margin-top: 12px;
}

.vh-report-finding {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(29, 46, 40, 0.08);
    background: #ffffff;
}

.vh-report-finding + .vh-report-finding {
    margin-top: 14px;
}

.vh-report-finding__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vh-report-finding__head span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a8377;
}

.vh-report-finding__head h3 {
    margin: 8px 0 0;
    font-size: 22px;
}

.vh-report-finding__head strong {
    white-space: nowrap;
}

.vh-report-evidence {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vh-report-evidence span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef5eb;
    font-size: 12px;
    font-weight: 800;
}

.vh-report-treatment {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vh-report-treatment strong {
    display: block;
    margin-top: 8px;
}

.vh-report-governance p {
    padding: 18px;
    border-radius: 18px;
    background: #f8fcf4;
}

@media (max-width: 1120px) {
    .vh-hero,
    .vh-report-card,
    .vh-report-cover,
    .vh-report-summary {
        grid-template-columns: 1fr;
    }

    .vh-metrics,
    .vh-flow,
    .vh-report-grid,
    .vh-report-path,
    .vh-report-treatment {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .vh-hero,
    .vh-score-card,
    .vh-report-card,
    .vh-report-section,
    .vh-report-cover {
        padding: 22px;
    }

    .vh-metrics,
    .vh-flow,
    .vh-report-grid,
    .vh-report-path,
    .vh-report-treatment {
        grid-template-columns: 1fr;
    }

    .vh-finding__head,
    .vh-report-finding__head,
    .vh-report-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media print {
    .vh-report-toolbar {
        display: none;
    }

    .vh-report-body {
        background: #ffffff;
    }

    .vh-report {
        width: 100%;
        margin: 0;
        gap: 12px;
    }

    .vh-report-cover,
    .vh-report-section {
        box-shadow: none;
        break-inside: avoid;
    }
}

body.vh-console-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
    color: #1d2e28;
    background: #f4f7f3;
}

.vh-console-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
    border-bottom: 1px solid #dfe8db;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.vh-console-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vh-console-brand img {
    height: 44px;
    width: auto;
}

.vh-console-brand b,
.vh-console-brand small {
    display: block;
}

.vh-console-brand b {
    font-size: 19px;
    color: #1d2e28;
}

.vh-console-brand small {
    margin-top: 2px;
    color: #667d71;
    font-size: 12px;
}

.vh-console-topbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vh-console-topbar nav a {
    padding: 10px 13px;
    border-radius: 12px;
    border: 1px solid #dfe8db;
    background: #f8fcf4;
    color: #355244;
    font-size: 13px;
    font-weight: 800;
}

.vh-console-shell {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
    padding: 24px 0 42px;
}

.vh-console-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 26px;
    border: 1px solid #dfe8db;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(29, 46, 40, 0.06);
}

.vh-console-kicker,
.vh-panel-head span,
.vh-score-strip span,
.vh-section-head span,
.vh-scan-panel label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a8377;
}

.vh-console-hero h1 {
    margin: 7px 0 0;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.05;
    color: #1d2e28;
}

.vh-console-hero p {
    margin: 10px 0 0;
    color: #5b7167;
}

.vh-console-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #d7e3d2;
    background: #ffffff;
    color: #1d2e28;
    font-size: 13px;
    font-weight: 900;
}

.vh-btn--primary {
    background: #1d2e28;
    color: #ffffff;
    border-color: #1d2e28;
}

.vh-console-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.vh-scan-panel,
.vh-main-panel,
.vh-console-lower > article {
    border: 1px solid #dfe8db;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(29, 46, 40, 0.05);
}

.vh-scan-panel {
    padding: 20px;
}

.vh-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.vh-panel-head b {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7df;
    color: #6a470c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.vh-scan-panel label {
    display: block;
    margin: 16px 0 7px;
}

.vh-field {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 12px;
    background: #f8fcf4;
    border: 1px solid #e5eee1;
    color: #2c463c;
    font-weight: 800;
}

.vh-field--strong {
    background: #fff7df;
    border-color: #f3dea4;
    color: #6a470c;
}

.vh-scan-note {
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: #eef5eb;
    color: #4f655b;
    font-size: 13px;
    line-height: 1.7;
}

.vh-main-panel {
    padding: 18px;
}

.vh-score-strip {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vh-score-strip article {
    padding: 16px;
    border-radius: 16px;
    background: #f8fcf4;
    border: 1px solid #e5eee1;
}

.vh-score-strip strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
}

.vh-score-strip small {
    display: block;
    margin-top: 4px;
    color: #5b7167;
}

.vh-score-tile--primary {
    background: #1d2e28 !important;
    color: #ffffff;
}

.vh-score-tile--primary span,
.vh-score-tile--primary small {
    color: #d8e4dd;
}

.vh-console-section {
    margin-top: 18px;
}

.vh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.vh-section-head h2 {
    margin: 5px 0 0;
    color: #1d2e28;
    font-size: 24px;
}

.vh-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vh-filter-row button {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #dfe8db;
    background: #ffffff;
    color: #355244;
    font-size: 12px;
    font-weight: 900;
}

.vh-table-wrap {
    overflow-x: auto;
    border: 1px solid #e5eee1;
    border-radius: 16px;
}

.vh-findings-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #ffffff;
}

.vh-findings-table th,
.vh-findings-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #edf3ea;
    vertical-align: top;
}

.vh-findings-table th {
    background: #f8fcf4;
    color: #6a8377;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vh-findings-table td {
    color: #2c463c;
    font-size: 14px;
    font-weight: 700;
}

.vh-findings-table td small {
    display: block;
    margin-top: 5px;
    color: #6a8377;
    font-weight: 600;
}

.vh-sev {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vh-sev--critical {
    background: #fee2e2;
    color: #991b1b;
}

.vh-sev--high {
    background: #ffedd5;
    color: #9a3412;
}

.vh-sev--medium {
    background: #fef3c7;
    color: #92400e;
}

.vh-inline-action {
    font-size: 13px;
    color: #1d2e28;
    font-weight: 900;
}

.vh-console-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.vh-console-lower > article {
    padding: 20px;
}

.vh-path-list,
.vh-treatment-list {
    display: grid;
    gap: 10px;
}

.vh-path-list div,
.vh-treatment-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 13px;
    border-radius: 14px;
    background: #f8fcf4;
    border: 1px solid #e5eee1;
}

.vh-path-list b,
.vh-treatment-list b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #1d2e28;
    color: #ffffff;
}

.vh-path-list strong,
.vh-treatment-list span {
    display: block;
    color: #1d2e28;
    font-weight: 900;
}

.vh-path-list span,
.vh-treatment-list p {
    color: #5b7167;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1120px) {
    .vh-console-grid,
    .vh-console-lower,
    .vh-score-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .vh-console-topbar,
    .vh-console-hero,
    .vh-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vh-console-shell {
        width: min(100% - 24px, 1480px);
    }
}
@media (max-width: 768px) {
    body,
    body * {
        font-style: normal !important;
    }
}

.myc-console {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.myc-rail {
    position: sticky;
    top: 108px;
    min-height: calc(100vh - 140px);
    padding: 18px 14px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(149, 213, 178, 0.22), transparent 32%),
        linear-gradient(180deg, #0f2d22 0%, #173e2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(12, 35, 25, 0.18);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.myc-rail__item {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.62);
    border: 1px solid transparent;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.myc-rail__item:hover,
.myc-rail__item.is-active {
    transform: translateY(-1px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.myc-rail__item--settings {
    margin-top: auto;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
}

.myc-console__body {
    display: grid;
    gap: 26px;
}

.myc-command-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.myc-command-head__title {
    margin: 4px 0 0;
    color: #1d2e28;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    font-weight: 900;
}

.myc-command-head__text {
    max-width: 760px;
    color: #5b7167;
    line-height: 1.7;
    margin: 10px 0 0;
}

.myc-command-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(29, 46, 40, 0.1);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.myc-command-profile__bell {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d2e28;
    background: #f7fbf3;
}

.myc-command-profile__settings {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d2e28;
    background: #eef5e9;
    border: 1px solid #dce5d6;
    transition: transform 0.18s ease, background 0.18s ease;
}

.myc-command-profile__settings:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.myc-command-profile__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2f6f44;
    color: #ffffff;
    font-weight: 900;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.myc-command-profile__meta {
    max-width: 180px;
    color: #51675d;
    font-size: 13px;
    font-weight: 800;
}

.myc-product-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.myc-launch-card,
.myc-score-card,
.myc-active-workspace,
.myc-feed-panel {
    background: #ffffff;
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.myc-launch-card {
    min-height: 250px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.myc-launch-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d2e28;
    background: #eef7ee;
    font-size: 25px;
    margin-bottom: 18px;
}

.myc-launch-card--secureops .myc-launch-card__icon { color: #7a6220; background: #fbf3d8; }
.myc-launch-card--vulnhub .myc-launch-card__icon { color: #0f5960; background: #def7f3; }
.myc-launch-card--academy .myc-launch-card__icon { color: #49336c; background: #eee7fb; }
.myc-launch-card--dashboard .myc-launch-card__icon { color: #1d2e28; background: #ecf4e8; }

.myc-launch-card h3 {
    margin: 0;
    color: #1d2e28;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
}

.myc-launch-card p {
    color: #62766d;
    line-height: 1.55;
    margin: 14px 0 22px;
}

.myc-launch-card__button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(29, 46, 40, 0.12);
    color: #1d2e28;
    font-weight: 900;
    background: #ffffff;
}

.myc-insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 26px;
}

.myc-score-card,
.myc-active-workspace,
.myc-feed-panel {
    padding: 28px;
}

.myc-score-card__body {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    align-items: center;
    margin: 22px 0;
}

.myc-ring {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle, #ffffff 58%, transparent 60%),
        conic-gradient(#4d934f var(--score), #e3ebdd 0);
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.7);
}

.myc-ring strong,
.myc-ring span {
    grid-area: 1 / 1;
}

.myc-ring strong {
    color: #1d2e28;
    font-size: 42px;
    font-weight: 1000;
    transform: translateY(-8px);
}

.myc-ring span {
    color: #4d934f;
    font-weight: 900;
    transform: translateY(32px);
}

.myc-score-bars {
    display: grid;
    gap: 15px;
}

.myc-score-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    color: #566b61;
    font-size: 14px;
    font-weight: 800;
}

.myc-score-bar i {
    grid-column: 1 / -1;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4d934f var(--value), #e4ecdf var(--value));
}

.myc-active-workspace h3 {
    color: #1d2e28;
    margin: 22px 0 10px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 1000;
}

.myc-workspace-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0 20px;
}

.myc-workspace-metrics div {
    text-align: center;
    color: #60766b;
}

.myc-workspace-metrics i {
    display: block;
    color: #4d934f;
    font-size: 25px;
    margin-bottom: 8px;
}

.myc-workspace-metrics strong {
    display: block;
    color: #1d2e28;
    font-size: 30px;
    line-height: 1;
    font-weight: 1000;
}

.myc-workspace-metrics span {
    display: block;
    margin-top: 6px;
    font-weight: 800;
}

.myc-feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.myc-feed-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.myc-feed-row {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #e4ece0;
    background: #fbfdf9;
}

.myc-feed-row__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #1d2e28;
}

.myc-feed-row strong,
.myc-feed-row small {
    display: block;
}

.myc-feed-row strong {
    color: #1d2e28;
    font-weight: 900;
}

.myc-feed-row small {
    color: #687a72;
    margin-top: 3px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .myc-console {
        grid-template-columns: 1fr;
    }

    .myc-rail {
        position: static;
        min-height: auto;
        flex-direction: row;
        justify-content: center;
        overflow-x: auto;
    }

    .myc-product-deck,
    .myc-insight-grid,
    .myc-feed-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .myc-brand__logo {
        height: 56px;
        max-width: 210px;
    }

    .myc-command-head,
    .myc-command-profile {
        align-items: flex-start;
        flex-direction: column;
    }

    .myc-product-deck,
    .myc-insight-grid,
    .myc-feed-grid,
    .myc-score-card__body,
    .myc-workspace-metrics {
        grid-template-columns: 1fr;
    }
}

.knowledge-console-page .myc-topbar {
    background: rgba(255, 255, 255, 0.96);
}

.knowledge-console-shell {
    max-width: none;
}

.knowledge-console-page .knowledge-content-surface {
    display: grid;
    gap: 28px;
}

.knowledge-console-page .cp-main {
    padding: 0;
}

.knowledge-console-page .cp-hero {
    border-radius: 26px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.knowledge-console-page .cp-section,
.knowledge-console-page .cp-stat-grid,
.knowledge-console-page .cp-footer {
    margin-top: 0;
}

.knowledge-console-page .cp-surface-block,
.knowledge-console-page .cp-stat,
.knowledge-console-page .cp-note-card,
.knowledge-console-page .cp-scenario-card,
.knowledge-console-page .cp-footer {
    border-radius: 22px;
    border-color: rgba(29, 46, 40, 0.10);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.knowledge-console-page .cp-section__title,
.knowledge-console-page .cp-card-title,
.knowledge-console-page .cp-footer__title {
    color: #1d2e28;
}

.knowledge-console-page .cp-section__eyebrow,
.knowledge-console-page .cp-hero__eyebrow {
    letter-spacing: 0.20em;
    color: #6a8377;
}

.knowledge-console-page .cp-button {
    border-radius: 16px;
}

.knowledge-console-page .cp-rich-content {
    display: grid;
    gap: 10px;
}

.knowledge-console-page .cp-rich-content p {
    margin: 0;
}

.knowledge-console-page .cp-rich-content ul,
.knowledge-console-page .cp-rich-content ol {
    margin: 0;
    padding-inline-start: 22px;
}

.knowledge-console-page .cp-rich-content img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(29, 46, 40, 0.1);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.myc-launch-card__subtitle {
    margin-top: -4px;
    color: #0f5960;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.myc-workspace-command,
.myc-benchmark-card,
.myc-threat-card,
.myc-workspace-mini-panel,
.myc-risk-position-card,
.myc-chart-card,
.myc-heatmap-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.myc-workspace-command {
    padding: 22px;
    display: grid;
    gap: 18px;
}

.myc-workspace-command__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.myc-workspace-command__head p,
.myc-benchmark-card p,
.myc-threat-card p {
    margin: 6px 0 0;
    color: #526a61;
    line-height: 1.65;
}

.myc-project-filter {
    min-width: 250px;
    display: grid;
    gap: 8px;
    color: #6f8179;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.myc-project-filter select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(29, 46, 40, 0.14);
    border-radius: 14px;
    background: #fff;
    color: #1d2e28;
    padding: 0 12px;
    font: inherit;
    font-size: 0.86rem;
    text-transform: none;
    letter-spacing: 0;
}

.myc-command-metric-grid,
.myc-benchmark-kpis,
.myc-workspace-action-grid,
.myc-chart-grid,
.myc-heatmap-grid,
.myc-threat-grid {
    display: grid;
    gap: 16px;
}

.myc-command-metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.myc-command-metric-grid article,
.myc-benchmark-kpis div,
.myc-threat-grid div,
.myc-mini-row,
.myc-mini-metrics div {
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
    padding: 16px;
}

.myc-command-metric-grid span,
.myc-benchmark-kpis span,
.myc-threat-grid span {
    display: block;
    color: #6f8179;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.myc-command-metric-grid strong,
.myc-benchmark-kpis strong {
    display: block;
    margin-top: 8px;
    color: #09241f;
    font-size: 1.8rem;
    line-height: 1;
}

.myc-command-metric-grid small,
.myc-benchmark-kpis small,
.myc-threat-grid small {
    display: block;
    margin-top: 8px;
    color: #557067;
    line-height: 1.45;
}

.myc-benchmark-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 18px;
}

.myc-benchmark-card,
.myc-threat-card,
.myc-workspace-mini-panel,
.myc-heatmap-panel {
    padding: 22px;
}

.myc-benchmark-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}

.myc-domain-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.myc-domain-row {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) minmax(160px, 2fr) 42px;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 14px;
    background: #fbfdf8;
}

.myc-domain-row strong {
    color: #173a30;
    font-size: 0.86rem;
}

.myc-domain-row span {
    height: 7px;
    border-radius: 999px;
    background: #e5eee3;
    overflow: hidden;
}

.myc-domain-row i {
    display: block;
    width: var(--value, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #5a9a62, #173a30);
}

.myc-domain-row b {
    color: #173a30;
    font-size: 0.82rem;
}

.myc-threat-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
}

.myc-threat-grid strong {
    display: block;
    margin-top: 8px;
    color: #1d2e28;
    line-height: 1.45;
}

.myc-workspace-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.myc-mini-list,
.myc-mini-metrics {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.myc-mini-row strong,
.myc-mini-row span {
    display: block;
}

.myc-mini-row strong {
    color: #1d2e28;
}

.myc-mini-row span {
    margin-top: 4px;
    color: #64766f;
    line-height: 1.45;
}

.myc-mini-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.myc-mini-metrics strong {
    display: block;
    color: #173a30;
    font-size: 1.4rem;
}

.myc-mini-metrics span {
    color: #64766f;
    font-size: 0.78rem;
}

.myc-risk-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.myc-risk-position-card {
    padding: 22px;
    text-align: center;
}

.myc-risk-position-card > span {
    color: #6f8179;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.myc-risk-meter {
    position: relative;
    height: 13px;
    margin: 18px auto 12px;
    max-width: 360px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2fb866 0 32%, #f2c94c 32% 58%, #ff8a00 58% 76%, #ee4b4b 76% 100%);
}

.myc-risk-meter i {
    position: absolute;
    top: -5px;
    left: var(--risk-pos, 50%);
    width: 5px;
    height: 23px;
    border-radius: 999px;
    background: #102e25;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.86);
}

.myc-risk-position-card strong {
    display: block;
    color: #173a30;
    font-size: 1.15rem;
}

.myc-risk-position-card small {
    color: #6b7f76;
}

.myc-chart-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.myc-chart-card {
    padding: 18px;
    min-height: 260px;
}

.myc-chart-card h2,
.myc-heatmap-panel h3 {
    margin: 0 0 12px;
    color: #1d2e28;
    font-size: 0.95rem;
}

.myc-chart-card canvas {
    max-height: 190px;
}

.myc-heatmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.myc-matrix-stack {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.myc-matrix-group {
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
    overflow: hidden;
}

.myc-matrix-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
}

.myc-matrix-group summary::-webkit-details-marker {
    display: none;
}

.myc-matrix-group summary strong,
.myc-matrix-group summary small {
    display: block;
}

.myc-matrix-group summary strong {
    color: #173a30;
    font-size: 0.96rem;
}

.myc-matrix-group summary small {
    margin-top: 4px;
    color: #64766f;
    line-height: 1.45;
}

.myc-matrix-group summary b {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.myc-matrix-group summary b.is-used {
    color: #173a30;
    background: #eef8e8;
}

.myc-matrix-group summary b.is-muted {
    color: #7b8b83;
    background: #eef2ee;
}

.myc-matrix-group .myc-heatmap-grid,
.myc-matrix-empty {
    border-top: 1px solid rgba(29, 46, 40, 0.08);
    padding: 18px;
}

.myc-matrix-empty {
    color: #64766f;
    font-size: 0.9rem;
    line-height: 1.6;
}

.myc-project-modal[hidden] {
    display: none;
}

.myc-project-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.myc-project-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 36, 31, 0.42);
    backdrop-filter: blur(10px);
}

.myc-project-modal__panel {
    position: relative;
    width: min(640px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid rgba(29, 46, 40, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
    box-shadow: 0 36px 80px rgba(15, 23, 42, 0.24);
    padding: 28px;
}

.myc-project-modal__panel h2 {
    margin: 8px 0 6px;
    color: #09241f;
    font-size: 1.8rem;
    line-height: 1.1;
}

.myc-project-modal__panel p {
    margin: 0;
    color: #526a61;
    line-height: 1.7;
}

.myc-project-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(29, 46, 40, 0.12);
    border-radius: 14px;
    color: #1d2e28;
    background: #ffffff;
    cursor: pointer;
}

.myc-project-modal__list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.myc-project-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(29, 46, 40, 0.10);
    border-radius: 18px;
    color: #173a30;
    background: #ffffff;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.myc-project-choice:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 46, 40, 0.24);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.myc-project-choice strong,
.myc-project-choice span {
    display: block;
}

.myc-project-choice span {
    margin-top: 4px;
    color: #6a8177;
    font-size: 0.84rem;
}

.myc-navai-welcome[hidden] {
    display: none;
}

.myc-navai-welcome {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: start center;
    padding: 92px 24px 24px;
}

.myc-navai-welcome__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 36, 31, 0.24);
    backdrop-filter: blur(8px);
}

.myc-navai-welcome__panel {
    position: relative;
    width: min(480px, 100%);
    border: 1px solid rgba(29, 46, 40, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.20);
    padding: 24px;
    animation: mycNavaiWelcomeIn 0.26s ease-out both;
}

.myc-navai-welcome__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 15px;
    color: #ffffff;
    background: #1d2e28;
    box-shadow: 0 16px 34px rgba(29, 46, 40, 0.24);
}

.myc-navai-welcome__mark img,
.myc-navai-help-tab__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.myc-navai-welcome__panel h2 {
    margin: 8px 0 10px;
    color: #09241f;
    font-size: 1.42rem;
    line-height: 1.15;
}

.myc-navai-welcome__panel p {
    margin: 0 0 10px;
    color: #526a61;
    line-height: 1.7;
}

.myc-navai-welcome__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(29, 46, 40, 0.12);
    border-radius: 14px;
    color: #1d2e28;
    background: #ffffff;
    cursor: pointer;
}

.myc-navai-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.myc-navai-welcome__actions .myc-button {
    width: 100%;
}

.myc-navai-help-tab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: min(280px, calc(100vw - 44px));
    border: 1px solid rgba(29, 46, 40, 0.14);
    border-radius: 999px;
    padding: 9px 15px 9px 9px;
    color: #1d2e28;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.myc-navai-help-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 46, 40, 0.26);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.myc-navai-help-tab__avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: #1d2e28;
}

.myc-navai-help-tab span:last-child {
    min-width: 0;
    overflow: hidden;
    color: #526a61;
    font-size: 0.84rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.myc-navai-help-tab strong {
    color: #173a30;
}

@keyframes mycNavaiWelcomeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.myc-heatmap-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
    table-layout: fixed;
}

.myc-heatmap-table th,
.myc-heatmap-table td {
    height: 30px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.72rem;
    color: #173a30;
}

.myc-heatmap-table th {
    background: #f3f7ef;
    font-weight: 800;
}

.myc-heatmap-cell--low { background: #9be7b0; }
.myc-heatmap-cell--medium { background: #f7df76; }
.myc-heatmap-cell--high { background: #ffad60; }
.myc-heatmap-cell--critical { background: #f06565; color: #fff !important; }
.myc-heatmap-cell--empty { background: #eef4ea; color: #789086 !important; }

@media (max-width: 760px) {
    .knowledge-console-page .cp-hero,
    .knowledge-console-page .cp-surface-block,
    .knowledge-console-page .cp-footer {
        border-radius: 18px;
    }
}

@media (max-width: 1180px) {
    .myc-command-metric-grid,
    .myc-benchmark-kpis,
    .myc-workspace-action-grid,
    .myc-chart-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .myc-benchmark-shell,
    .myc-heatmap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .myc-navai-welcome {
        place-items: start center;
        padding: 74px 14px 14px;
    }

    .myc-navai-welcome__panel {
        border-radius: 20px;
        padding: 22px;
    }

    .myc-navai-welcome__panel h2 {
        font-size: 1.35rem;
    }

    .myc-navai-help-tab {
        right: 14px;
        bottom: 14px;
        max-width: calc(100vw - 28px);
        padding-right: 13px;
    }

    .myc-workspace-command__head,
    .myc-risk-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .myc-command-metric-grid,
    .myc-benchmark-kpis,
    .myc-workspace-action-grid,
    .myc-chart-grid {
        grid-template-columns: 1fr;
    }

    .myc-project-filter {
        min-width: 0;
    }

    .myc-domain-row {
        grid-template-columns: 1fr;
    }
}
