@font-face {
    font-family: "Inter";
    src: url("/static/fonts/inter-400-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("/static/fonts/inter-500-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("/static/fonts/inter-600-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("/static/fonts/inter-700-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("/static/fonts/inter-800-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("/static/fonts/manrope-700-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("/static/fonts/manrope-800-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: "Material Symbols Outlined";
    src: url("/static/fonts/material-symbols.ttf") format("truetype");
    font-display: block;
}

:root {
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --a2-font-sans: var(--font-sans);
    --a2-font-display: var(--font-display);
    --a2-bg: #f5f6f7;
    --a2-panel: #ffffff;
    --a2-soft: #f8fafc;
    --a2-ink: #0f172a;
    --a2-muted: #64748b;
    --a2-faint: #94a3b8;
    --a2-line: #e2e8f0;
    --a2-line-strong: #cbd5e1;
    --a2-blue: #2563eb;
    --a2-blue-soft: #eff6ff;
    --a2-amber: #d97706;
    --a2-amber-soft: #fffbeb;
    --a2-green: #15803d;
    --a2-green-soft: #f0fdf4;
    --a2-red: #b91c1c;
    --a2-red-soft: #fef2f2;
    --a2-chart-primary: #3b82f6;
    --a2-chart-primary-area: #3b82f6;
    --a2-chart-compare: #f59e0b;
    --a2-chart-grid: #f3f4f6;
    --a2-chart-axis: #94a3b8;
    --a2-line-soft: #eef2f7;
    --a2-radius: 8px;
    --a2-control: 38px;
    --a2-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    --a2-shadow-float: 0 8px 24px rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; }
html { min-width: 320px; overflow-x: clip; background: var(--a2-bg); }
body.analytics-v2-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    background: var(--a2-bg);
    color: var(--a2-ink);
    font-family: var(--a2-font-sans);
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
    overflow-x: clip;
}
body.analytics-v2-page * { letter-spacing: 0; }
body.analytics-v2-page .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
    font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
}

.a2-main {
    flex: 1;
    min-width: 0;
    padding: 22px 24px 48px;
}
.a2-container {
    width: min(100%, 1600px);
    margin: 0 auto;
}
.a2-page-header {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.a2-title {
    margin: 0;
    font-family: var(--a2-font-display);
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--a2-ink);
}
.a2-subtitle {
    margin: 4px 0 0;
    color: var(--a2-muted);
    font-size: 13px;
}
.a2-header-actions,
.a2-inline-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.a2-button,
.a2-icon-button {
    height: var(--a2-control);
    border: 1px solid var(--a2-line-strong);
    border-radius: 7px;
    background: var(--a2-panel);
    color: var(--a2-ink);
    font: 600 13px/1 var(--a2-font-sans);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.a2-button { padding: 0 13px; }
.a2-icon-button { width: var(--a2-control); padding: 0; flex: 0 0 var(--a2-control); }
.a2-button:hover,
.a2-icon-button:hover { background: var(--a2-soft); border-color: #aebaca; }
.a2-button:focus-visible,
.a2-icon-button:focus-visible,
.a2-control:focus-visible,
.a2-select:focus-visible,
.a2-search:focus-visible,
.a2-quick-button:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.28);
    outline-offset: 1px;
}
.a2-button--primary {
    background: #111827;
    border-color: #111827;
    color: #fff;
}
.a2-button--primary:hover { background: #1f2937; border-color: #1f2937; }
.a2-button--quiet { border-color: transparent; background: transparent; }
.a2-button[disabled],
.a2-icon-button[disabled] { opacity: .5; cursor: not-allowed; }
.a2-icon-button .material-symbols-outlined { font-size: 19px; }

.a2-panel {
    background: var(--a2-panel);
    border: 1px solid var(--a2-line);
    border-radius: var(--a2-radius);
    box-shadow: var(--a2-shadow);
}
.a2-section { margin-top: 14px; }
.a2-section-head {
    min-height: 54px;
    padding: 15px 18px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.a2-section-title {
    margin: 0;
    font-family: var(--a2-font-display);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--a2-ink);
}
.a2-section-note {
    margin: 3px 0 0;
    color: var(--a2-muted);
    font-size: 12px;
}
.a2-section-body { padding: 0 18px 18px; }
.a2-divider { height: 1px; background: var(--a2-line); margin: 0 18px; }

.a2-filter-panel { padding: 14px; }
.a2-filter-stack {
    display: grid;
    gap: 12px;
}
.a2-filter-row {
    display: grid;
    gap: 10px;
    align-items: end;
}
.a2-filter-row--periods {
    grid-template-columns: minmax(145px, 170px) minmax(145px, 170px) minmax(520px, 1fr);
}
.a2-filter-row--scope {
    grid-template-columns: minmax(280px, 1.05fr) minmax(240px, .95fr) minmax(280px, 1fr);
}
.a2-filter-row--calls {
    grid-template-columns: max-content minmax(210px, 260px) 1fr;
}
.a2-filter-row--manager-periods {
    grid-template-columns: 170px 170px minmax(640px, 1fr);
}
.a2-filter-row--manager-scope {
    grid-template-columns: minmax(360px, 520px) minmax(120px, 1fr);
}
.a2-filter-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
}
.a2-field { min-width: 0; }
.a2-field--date { grid-column: span 2; }
.a2-field--dc { grid-column: span 3; }
.a2-field--manager { grid-column: span 3; }
.a2-field--source { grid-column: span 3; }
.a2-field--type { grid-column: span 3; }
.a2-field--duration { grid-column: span 2; }
.a2-field--status { grid-column: span 2; }
.a2-filter-row > .a2-field,
.a2-filter-row > .a2-period-tools {
    grid-column: auto;
}
.a2-field-label {
    display: block;
    margin: 0 0 5px;
    color: var(--a2-muted);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}
.a2-control,
.a2-select,
.a2-search {
    width: 100%;
    height: var(--a2-control);
    border: 1px solid var(--a2-line-strong);
    border-radius: 7px;
    background: var(--a2-panel);
    color: var(--a2-ink);
    padding: 0 11px;
    font: 500 13px/1 var(--a2-font-sans);
    outline: none;
}
.a2-select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0 42px 0 14px;
    text-overflow: ellipsis;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 6.25L8 9.75L11.5 6.25' stroke='%2364758B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), inset 0 1px 0 rgba(255, 255, 255, .9);
    font-weight: 600;
}
.a2-control:hover,
.a2-select:hover,
.a2-search:hover { border-color: #aebaca; }
.a2-select:hover {
    background-color: var(--a2-soft);
}
.a2-select:disabled {
    color: var(--a2-faint);
    background-color: #f3f4f6;
    cursor: not-allowed;
}
.a2-select option {
    color: var(--a2-ink);
    background: #fff;
    font-size: 14px;
}
.a2-filter-meta-row {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--a2-line);
}
.a2-period-tools { min-width: 0; }
.a2-quick-periods { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.a2-quick-button {
    height: var(--a2-control);
    padding: 0 12px;
    border: 1px solid var(--a2-line);
    border-radius: 6px;
    background: var(--a2-soft);
    color: #475569;
    font: 600 12px/1 var(--a2-font-sans);
    cursor: pointer;
    white-space: nowrap;
}
.a2-quick-button:hover,
.a2-quick-button.is-active { border-color: #111827; color: #111827; background: #fff; }
.a2-period-meta { color: var(--a2-muted); font-size: 12px; white-space: nowrap; }

.a2-segmented {
    height: var(--a2-control);
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--a2-line-strong);
    border-radius: 7px;
    padding: 3px;
    background: var(--a2-soft);
}
.a2-segmented button {
    min-width: 52px;
    height: 30px;
    border: 0;
    border-radius: 5px;
    padding: 0 10px;
    background: transparent;
    color: var(--a2-muted);
    font: 600 12px/1 var(--a2-font-sans);
    cursor: pointer;
}
.a2-segmented button.is-active { background: #111827; color: #fff; }

.a2-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(245, 246, 247, .72);
    backdrop-filter: blur(1px);
}
.a2-loading-overlay.is-visible { display: flex; }
.a2-loading-box {
    min-width: 210px;
    border: 1px solid var(--a2-line);
    border-radius: 8px;
    background: #fff;
    padding: 16px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
}
.a2-spinner {
    width: 19px;
    height: 19px;
    border: 2px solid #dbe3ec;
    border-top-color: var(--a2-blue);
    border-radius: 50%;
    animation: a2-spin .7s linear infinite;
}
@keyframes a2-spin { to { transform: rotate(360deg); } }

.a2-kpi-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(6, minmax(138px, 1fr));
    gap: 10px;
}
.a2-kpi {
    min-height: 96px;
    padding: 14px 15px 13px;
    background: var(--a2-panel);
    border: 1px solid var(--a2-line);
    border-radius: var(--a2-radius);
    box-shadow: var(--a2-shadow);
}
.a2-kpi--sales {
    border-color: #b7ebcf;
    background: #fff;
    box-shadow: var(--a2-shadow);
}
.a2-kpi-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--a2-muted);
    font-size: 10px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}
.a2-kpi--working .a2-kpi-label::before,
.a2-kpi--sales .a2-kpi-label::before,
.a2-kpi--refusals .a2-kpi-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94a3b8;
}
.a2-kpi--sales .a2-kpi-label::before { background: var(--a2-green); }
.a2-kpi--refusals .a2-kpi-label::before { background: #ef8888; }
.a2-kpi-value {
    margin-top: 8px;
    font-family: var(--a2-font-sans);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.a2-kpi--sales .a2-kpi-value { color: var(--a2-green); }
.a2-kpi-foot {
    min-height: 17px;
    margin-top: 8px;
    color: var(--a2-faint);
    font-size: 11px;
    line-height: 1.3;
}
.a2-delta { font-weight: 700; }
.a2-delta.is-up { color: var(--a2-green); }
.a2-delta.is-down { color: var(--a2-red); }
.a2-delta.is-flat { color: var(--a2-muted); }

.a2-checklist-panel { margin-top: 14px; }
.a2-quality-details { margin: -3px 18px 14px; border-top: 1px solid var(--a2-line); }
.a2-quality-details summary {
    min-height: 42px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
    color: #334155;
    cursor: pointer;
    list-style: none;
}
.a2-quality-details summary::-webkit-details-marker { display: none; }
.a2-quality-details summary > .material-symbols-outlined { color: var(--a2-muted); font-size: 18px; }
.a2-quality-details summary strong { display: block; font-size: 12px; }
.a2-quality-details summary small { display: block; margin-top: 1px; color: var(--a2-faint); font-size: 10px; }
.a2-quality-details .a2-quality-chevron { transition: transform 140ms ease; }
.a2-quality-details[open] .a2-quality-chevron { transform: rotate(180deg); }
.a2-quality-aside { padding: 0 0 8px 27px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 20px; }
.a2-quality-row {
    min-height: 43px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--a2-line);
}
.a2-quality-row:last-child { border-bottom: 0; }
.a2-quality-label { color: #334155; font-size: 12px; }
.a2-quality-value { font-weight: 800; font-variant-numeric: tabular-nums; }

.a2-chart-wrap {
    position: relative;
    min-height: 310px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.a2-chart-wrap svg { display: block; min-width: 100%; }
.a2-chart-wrap--fit { min-height: 274px; overflow-x: hidden; }
.a2-chart-wrap--fit svg { width: 100%; max-width: 100%; }
.a2-dcx-scroll {
    overflow-x: hidden;
    padding: 2px 0 6px;
}
.a2-dcx-body {
    max-width: 100%;
    margin: 0 auto;
}
.a2-dcx-track { isolation: isolate; }
.a2-dcx-hit {
    min-height: 100%;
    cursor: pointer;
}
.a2-dcx-tooltip {
    position: absolute;
    top: 2px;
    width: 178px;
    display: none;
    z-index: 6;
    padding: 7px 10px;
    border: 1px solid var(--a2-line);
    border-radius: 8px;
    background: var(--a2-panel);
    box-shadow: var(--a2-shadow-float);
    pointer-events: none;
}
.a2-dcx-tooltip-stage {
    margin-bottom: 2px;
    color: var(--a2-faint);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.a2-dcx-tooltip-label {
    margin-bottom: 4px;
    color: var(--a2-ink);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
}
.a2-dcx-tooltip-values {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.a2-dcx-tooltip-values strong {
    font-size: 16px;
    font-weight: 800;
}
.a2-dcx-tooltip-values span {
    color: var(--a2-faint);
    font-size: 11px;
}
.a2-dcx-tooltip-values em {
    margin-left: auto;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}
.a2-dcx-row {
    display: grid;
    height: 28px;
    align-items: center;
}
.a2-dcx-row--arrows { height: 15px; }
.a2-dcx-gutter {
    color: var(--a2-ink);
    text-align: right;
    white-space: nowrap;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.a2-dcx-gutter.is-muted { color: var(--a2-muted); }
.a2-dcx-gutter-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    min-width: 0;
}
.a2-dcx-gutter-label i {
    flex: 0 0 16px;
    width: 16px;
    height: 3px;
    border-radius: 999px;
}
.a2-dcx-gutter-label span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.a2-dcx-chip {
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    transition: background .1s;
}
.a2-dcx-chip[data-row="prev"] { font-weight: 700; }
.a2-dcx-sep {
    position: absolute;
    left: -4.5px;
    width: 0;
    border-left: 1px dashed var(--a2-line-strong);
    pointer-events: none;
}
.a2-dcx-zones {
    display: grid;
    margin-top: 12px;
}
.a2-dcx-zone {
    overflow: hidden;
    padding-top: 8px;
    color: var(--a2-faint);
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.a2-dcx-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: var(--a2-muted);
    font-size: 12px;
}
.a2-dcx-legend span:last-child { color: var(--a2-faint); }
.a2-dcx-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 6px;
    border-radius: 50%;
    vertical-align: middle;
}
.a2-dcx-dot.is-current { background: var(--a2-chart-primary); }
.a2-dcx-dot.is-prev { background: var(--a2-chart-compare); }
.a2-chart-empty {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: var(--a2-muted);
    font-size: 13px;
}
.a2-chart-tooltip {
    position: fixed;
    z-index: 1400;
    display: none;
    max-width: 260px;
    border-radius: 6px;
    background: #0f172a;
    color: #fff;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.45;
    pointer-events: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .2);
}
.a2-chart-tooltip.is-visible { display: block; }
.a2-chart-legend {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--a2-muted);
    font-size: 11px;
}
.a2-legend-line {
    display: inline-block;
    width: 22px;
    border-top: 2px solid var(--a2-blue);
    margin-right: 6px;
    vertical-align: middle;
}
.a2-legend-line--previous { border-top-color: var(--a2-amber); border-top-style: dashed; }
.a2-notice {
    margin: 0 18px 14px;
    padding: 8px 10px;
    border-left: 3px solid var(--a2-amber);
    background: var(--a2-amber-soft);
    color: #854d0e;
    font-size: 11px;
}

.a2-table-shell {
    width: 100%;
    max-width: 100%;
    contain: inline-size;
    overflow: auto;
    border-top: 1px solid var(--a2-line);
}
.a2-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}
.a2-table th,
.a2-table td {
    height: 44px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--a2-line);
    color: #334155;
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}
.a2-table th {
    height: 36px;
    position: sticky;
    top: 0;
    z-index: 3;
    background: var(--a2-soft);
    color: var(--a2-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}
.a2-table th.is-sortable { cursor: pointer; }
.a2-table th.is-sortable:hover { color: var(--a2-ink); }
.a2-table tbody tr:last-child td { border-bottom: 0; }
.a2-table tbody tr:hover td { background: #fafcff; }
.a2-table tbody tr.is-clickable { cursor: pointer; }
.a2-table .is-number { text-align: right; font-variant-numeric: tabular-nums; }
.a2-table .is-center { text-align: center; }
.a2-table .is-strong { color: var(--a2-green); font-weight: 700; }
.a2-table .is-weak { color: var(--a2-red); font-weight: 700; }
.a2-table .is-muted { color: var(--a2-muted); }
.a2-table-main { font-weight: 700; color: var(--a2-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.a2-table-sub { margin-top: 2px; color: var(--a2-faint); font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.a2-manager-cell { display: flex; align-items: center; gap: 10px; min-width: 0; }
.a2-avatar {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
}
.a2-structure {
    width: 112px;
    height: 6px;
    display: flex;
    overflow: hidden;
    background: #e2e8f0;
    border-radius: 3px;
}
.a2-structure span:nth-child(1) { background: #94a3b8; }
.a2-structure span:nth-child(2) { background: #22c55e; }
.a2-structure span:nth-child(3) { background: #ef4444; }

.a2-compare-check {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--a2-blue);
    cursor: pointer;
}
.a2-compare-pick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.a2-compare-anchor-row {
    min-height: 54px;
    padding: 0 18px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.a2-compare-number {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    border-radius: 999px;
    background: var(--a2-blue);
    color: #fff;
    font-family: var(--a2-font-sans);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 0 0 2px #fff;
}
.a2-compare-number.is-compare {
    background: var(--a2-amber);
}
.a2-compare-slot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    max-width: 380px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #bfdbfe;
    border-radius: 7px;
    background: var(--a2-blue-soft);
    color: var(--a2-ink);
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--a2-shadow);
}
.a2-compare-slot .a2-compare-number {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    box-shadow: none;
}
.a2-compare-slot > span:not(.a2-compare-number) {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.a2-compare-slot.is-compare {
    background: #fff7ed;
    border-color: #fed7aa;
}
.a2-compare-slot button {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    margin: 0 -4px 0 auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--a2-faint);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}
.a2-compare-slot button:hover {
    background: rgba(15, 23, 42, .08);
    color: var(--a2-ink);
}
#a2ManagersSection .a2-table th {
    height: 42px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0;
}
#a2ManagersSection .a2-table td {
    height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13px;
}
#a2ManagersSection .a2-table td.is-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--a2-ink);
    line-height: 1;
    overflow: visible;
    padding-left: 6px;
    padding-right: 6px;
    text-overflow: clip;
}
#a2ManagersSection .a2-table td.is-number strong {
    font: inherit;
}
#a2ManagersSection .a2-table td.is-strong {
    font-size: 24px;
    font-weight: 800;
}
#a2ManagersSection .a2-table td.is-weak {
    font-size: 24px;
    font-weight: 800;
}
#a2ManagersSection .a2-table td:nth-child(2) {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.15;
}
#a2ManagersSection .a2-centers-list {
    display: grid;
    gap: 2px;
    max-height: 40px;
    overflow: hidden;
}
#a2ManagersSection .a2-centers-list span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#a2ManagersSection .a2-table-main {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}
#a2ManagersSection .a2-manager-link {
    display: inline-block;
    max-width: 100%;
    color: var(--a2-ink);
    text-decoration: none;
    text-underline-offset: 3px;
}
#a2ManagersSection .a2-manager-link:hover {
    color: var(--a2-blue);
    text-decoration: underline;
}
#a2ManagersSection .a2-table-sub {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
}
#a2ManagersSection .a2-manager-cell {
    gap: 12px;
}
#a2ManagersSection .a2-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 999px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding-top: 1px;
}
#a2ManagersSection .a2-compare-check {
    width: 20px;
    height: 20px;
}
#a2ManagersSection .a2-structure {
    width: 142px;
    height: 10px;
    border-radius: 999px;
}
#a2ManagersSection .a2-metric-value {
    box-sizing: border-box;
    display: inline-flex;
    min-width: 50px;
    height: 34px;
    padding: 0 8px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    transition: background-color 120ms ease, box-shadow 120ms ease;
}
#a2ManagersSection td.is-number:hover .a2-metric-value {
    background: #f1f5f9;
    box-shadow: inset 0 0 0 1px #dbe4ef;
}
#a2ManagersSection .a2-score {
    min-width: 42px;
    height: 24px;
    padding: 0 6px;
    font-size: 14px;
    border-radius: 6px;
}
#a2ManagersSection .a2-plain-score {
    display: inline-block;
    min-width: 48px;
    color: var(--a2-ink);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
#a2ManagersSection .a2-plain-score.is-high { color: var(--a2-green); }
#a2ManagersSection .a2-plain-score.is-mid { color: var(--a2-amber); }
#a2ManagersSection .a2-plain-score.is-low { color: var(--a2-red); }
#a2ManagersSection td.is-checklist-score:hover .a2-metric-value {
    background: transparent;
    box-shadow: none;
}
.a2-list-footer {
    min-height: 54px;
    padding: 10px 14px;
    border-top: 1px solid var(--a2-line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.a2-list-footer[hidden] { display: none; }
.a2-list-footer .a2-button { min-width: 150px; }
.a2-comparison-matrix { padding-bottom: 2px; }
.a2-matrix-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.a2-matrix-tools .a2-compare-anchor-row {
    min-height: 0;
    padding: 0;
}
.a2-matrix-tools .a2-compare-slot {
    min-width: 300px;
    min-height: 46px;
}
.a2-subsection-head > div:first-child .a2-compare-anchor-row {
    min-height: 0;
    margin-top: 10px;
    padding: 0;
}
.a2-subsection-head {
    min-height: 48px;
    padding: 4px 18px 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.a2-subsection-head h3 { margin: 0; font-family: var(--a2-font-display); font-size: 15px; font-weight: 800; }
.a2-subsection-head p { margin: 2px 0 0; color: var(--a2-muted); font-size: 11px; }
.a2-swatch { width: 9px; height: 9px; border-radius: 2px; background: var(--a2-blue); }
.a2-swatch--amber { background: var(--a2-amber); }

.a2-source-chart { padding: 2px 0 10px; }
.a2-source-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.a2-source-title-row .a2-section-title {
    margin: 0;
}
.a2-source-title-row #a2SourceLevel {
    min-height: 30px;
}
.a2-source-bar-row {
    min-height: 42px;
    display: grid;
    grid-template-columns: minmax(170px, 280px) minmax(220px, 1fr) 82px 88px;
    gap: 12px;
    align-items: center;
}
.a2-source-bar-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; font-weight: 800; }
.a2-source-track { height: 10px; border-radius: 5px; background: #e9eef4; overflow: hidden; }
.a2-source-fill { height: 100%; border-radius: 4px; background: var(--a2-blue); }
.a2-source-volume,
.a2-source-conversion { text-align: right; font-variant-numeric: tabular-nums; font-size: 15px; }
.a2-source-conversion { color: var(--a2-green); font-weight: 700; }
#a2SourcesSection .a2-table {
    min-width: 1080px;
}
#a2SourcesSection .a2-table th {
    height: 46px;
    font-size: 12px;
    font-weight: 800;
}
#a2SourcesSection .a2-table td {
    height: 64px;
    font-size: 17px;
    line-height: 1.28;
}
#a2SourcesSection .a2-table-main {
    font-size: 18px;
    font-weight: 800;
}
#a2SourcesSection .a2-table-sub {
    margin-top: 4px;
    font-size: 13px;
}
#a2SourcesSection .a2-table .is-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--a2-ink);
}
#a2SourcesSection .a2-table .is-number strong,
#a2SourcesSection .a2-table .is-strong {
    font-size: 22px;
    font-weight: 800;
}
#a2SourcesSection .a2-score {
    min-width: 56px;
    height: 30px;
    font-size: 16px;
    font-weight: 800;
}
.a2-expand-button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--a2-muted);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
}
.a2-expand-button:hover { background: var(--a2-soft); color: var(--a2-ink); }
.a2-expand-button .material-symbols-outlined { font-size: 18px; transition: transform 140ms ease; }
.a2-expand-button.is-open .material-symbols-outlined { transform: rotate(90deg); }
.a2-child-row td { background: #fbfcfe; }
.a2-child-indent { padding-left: 42px !important; }

.a2-matrix-shell { max-height: 650px; overflow: auto; border-top: 1px solid var(--a2-line); }
.a2-matrix { min-width: max-content; border-collapse: separate; border-spacing: 0; }
.a2-matrix th,
.a2-matrix td {
    height: 38px;
    min-width: 86px;
    padding: 6px 8px;
    border-right: 1px solid var(--a2-line);
    border-bottom: 1px solid var(--a2-line);
    text-align: center;
    background: #fff;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}
.a2-matrix td {
    height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.a2-matrix th {
    position: sticky;
    top: 0;
    z-index: 4;
    max-width: 104px;
    overflow: hidden;
    background: var(--a2-soft);
    color: var(--a2-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    text-transform: uppercase;
}
.a2-matrix thead tr:nth-child(2) th { top: 42px; }
.a2-matrix--managers .a2-matrix-manager-head,
.a2-matrix--managers td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    text-align: left;
    background: #fff;
    box-shadow: 1px 0 0 var(--a2-line);
}
.a2-matrix--managers .a2-matrix-total-head,
.a2-matrix--managers td:nth-child(2) {
    position: sticky;
    left: 270px;
    z-index: 3;
    width: 76px;
    min-width: 76px;
    max-width: 76px;
    box-shadow: 1px 0 0 var(--a2-line);
}
.a2-matrix--managers .a2-matrix-manager-head,
.a2-matrix--managers .a2-matrix-total-head {
    z-index: 6;
    background: var(--a2-soft);
}
.a2-matrix--managers thead tr:first-child th:nth-child(n + 3) {
    top: 0;
    height: 42px;
}
.a2-matrix--managers thead tr:nth-child(2) th {
    top: 42px;
    height: 44px;
    vertical-align: middle;
}
.a2-matrix-group {
    color: #64748b;
    background: #f3f6fa !important;
    letter-spacing: .02em;
}
.a2-matrix-result-group,
.a2-matrix-result-head,
.a2-matrix-result-cell {
    background: #fbfcfe !important;
}
.a2-matrix-result-head {
    color: #5f718a !important;
}
.a2-matrix-result-value {
    color: var(--a2-ink);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.a2-matrix-result-value.is-strong {
    color: var(--a2-green);
}
.a2-matrix-manager-cell,
.a2-matrix-total-cell { background: #fff; }
.a2-matrix-manager-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.a2-matrix-manager-label > span {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.a2-matrix-manager-link {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    color: var(--a2-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-underline-offset: 3px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.a2-matrix-manager-link:hover {
    color: var(--a2-blue);
    text-decoration: underline;
}
.a2-matrix-manager-label small {
    flex: 0 0 auto;
    color: var(--a2-faint);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}
.a2-matrix-value {
    font-size: 13px;
    font-weight: 700;
}
.a2-matrix-value.is-total {
    color: var(--a2-amber);
    font-weight: 800;
}
.a2-matrix-value.is-high { color: var(--a2-green); }
.a2-matrix-value.is-mid { color: var(--a2-amber); }
.a2-matrix-value.is-low { color: var(--a2-red); }
.a2-matrix-sample { display: block; margin-top: 1px; color: var(--a2-faint); font-size: 9px; font-weight: 400; }

.a2-autocrm-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 28px;
    padding: 0 8px;
    border: 1px solid var(--a2-line);
    border-radius: 7px;
    color: var(--a2-ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    background: #fff;
}
.a2-autocrm-link:hover {
    border-color: var(--a2-blue);
    color: var(--a2-blue);
}
.a2-autocrm-link .material-symbols-outlined {
    font-size: 15px;
}

.a2-evidence-toolbar {
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto auto;
    gap: 8px;
    align-items: center;
}
.a2-search-wrap { position: relative; }
.a2-search-wrap .material-symbols-outlined {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--a2-faint);
    font-size: 18px;
    pointer-events: none;
}
.a2-search-wrap .a2-search { padding-left: 34px; }
.a2-table--evidence { min-width: 1840px; }
.a2-table--evidence td { height: 48px; white-space: nowrap; }
.a2-table--evidence td[data-wrap="1"] { white-space: normal; min-width: 220px; }
.a2-cell-clamp {
    display: -webkit-box;
    max-height: 34px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.a2-th-inner { display: flex; align-items: center; gap: 4px; min-width: 0; }
.a2-resizer {
    position: absolute;
    top: 0;
    right: -3px;
    width: 7px;
    height: 100%;
    cursor: col-resize;
    z-index: 6;
}
.a2-resizer:hover::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--a2-blue);
}
.a2-table th[draggable="true"] { cursor: grab; }
.a2-table th.is-dragging { opacity: .45; }
.a2-table-empty { padding: 48px 20px !important; text-align: center !important; color: var(--a2-muted) !important; }
.a2-pagination {
    min-height: 52px;
    padding: 10px 14px;
    border-top: 1px solid var(--a2-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.a2-pagination-meta { color: var(--a2-muted); font-size: 11px; }
.a2-pagination-controls { display: flex; align-items: center; gap: 6px; }
.a2-page-number { min-width: 90px; text-align: center; font-size: 11px; font-weight: 600; }

.a2-popover {
    position: fixed;
    z-index: 1500;
    display: none;
    width: min(320px, calc(100vw - 24px));
    max-height: min(520px, calc(100vh - 24px));
    overflow: auto;
    border: 1px solid var(--a2-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .16);
    padding: 8px;
}
.a2-popover.is-open { display: block; }
.a2-popover-title { padding: 5px 7px 8px; font-size: 12px; font-weight: 800; }
.a2-popover-option {
    min-height: 34px;
    padding: 5px 7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.a2-popover-option:hover { background: var(--a2-soft); }
.a2-popover-option input { width: 16px; height: 16px; accent-color: #111827; }

.a2-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 24px;
    padding: 0 7px;
    border: 1px solid var(--a2-line);
    border-radius: 6px;
    background: var(--a2-soft);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.a2-score.is-high { color: var(--a2-green); border-color: #bbdfc8; background: var(--a2-green-soft); }
.a2-score.is-mid { color: var(--a2-amber); border-color: #f1d39a; background: var(--a2-amber-soft); }
.a2-score.is-low { color: var(--a2-red); border-color: #f2c2c2; background: var(--a2-red-soft); }
.a2-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--a2-soft);
    color: #475569;
    font-size: 10px;
    font-weight: 700;
}
.a2-badge.is-green { background: var(--a2-green-soft); color: var(--a2-green); }
.a2-badge.is-red { background: var(--a2-red-soft); color: var(--a2-red); }
.a2-badge.is-blue { background: var(--a2-blue-soft); color: var(--a2-blue); }

.a2-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: none;
    background: rgba(15, 23, 42, .28);
}
.a2-drawer-backdrop.is-open { display: block; }
.a2-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1610;
    width: min(520px, 100vw);
    transform: translateX(102%);
    transition: transform 180ms ease;
    background: #fff;
    border-left: 1px solid var(--a2-line);
    box-shadow: -18px 0 40px rgba(15, 23, 42, .12);
    display: flex;
    flex-direction: column;
}
.a2-drawer.is-open { transform: translateX(0); }
.manager-report-v2-page .a2-drawer--top {
    top: 22px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(1280px, calc(100vw - 88px));
    max-height: calc(100vh - 44px);
    border: 1px solid var(--a2-line);
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    transform: translate(-50%, calc(-100% - 24px)) scale(.98);
}
.manager-report-v2-page .a2-drawer--top.is-open {
    transform: translate(-50%, 0) scale(1);
}
.manager-report-v2-page .a2-drawer--top .a2-drawer-body {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(320px, 1fr);
    gap: 14px;
}
.manager-report-v2-page .a2-drawer--top .a2-ai-mode-grid,
.manager-report-v2-page .a2-drawer--top .a2-ai-context {
    grid-column: 1;
}
.manager-report-v2-page .a2-drawer--top .a2-ai-context {
    margin-top: 0;
}
.manager-report-v2-page .a2-drawer--top .a2-ai-question,
.manager-report-v2-page .a2-drawer--top [data-ai-send],
.manager-report-v2-page .a2-drawer--top .a2-ai-answer {
    grid-column: 2;
}
.manager-report-v2-page .a2-drawer--top .a2-ai-question {
    min-height: 132px;
    margin-top: 0;
}
.a2-drawer-head {
    min-height: 64px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--a2-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.a2-drawer-title { margin: 0; font-family: var(--a2-font-display); font-size: 18px; font-weight: 800; }
.a2-drawer-body { flex: 1; overflow: auto; padding: 16px; }
.a2-ai-mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.a2-ai-mode {
    min-height: 62px;
    border: 1px solid var(--a2-line);
    border-radius: 7px;
    background: #fff;
    padding: 8px;
    text-align: left;
    cursor: pointer;
}
.a2-ai-mode strong { display: block; font-size: 12px; }
.a2-ai-mode span { display: block; margin-top: 3px; color: var(--a2-muted); font-size: 10px; line-height: 1.35; }
.a2-ai-mode.is-active { border-color: var(--a2-blue); background: var(--a2-blue-soft); }
.a2-ai-context {
    margin-top: 12px;
    padding: 11px;
    border: 1px solid var(--a2-line);
    border-radius: 7px;
    background: var(--a2-soft);
    color: #475569;
    font-size: 11px;
    line-height: 1.5;
}
.a2-ai-question {
    width: 100%;
    min-height: 94px;
    resize: vertical;
    margin-top: 12px;
    border: 1px solid var(--a2-line-strong);
    border-radius: 7px;
    padding: 10px 11px;
    color: var(--a2-ink);
    font: 500 13px/1.5 var(--a2-font-sans);
    outline: none;
}
.a2-ai-answer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--a2-line);
    color: #334155;
    font-size: 13px;
    line-height: 1.65;
    white-space: pre-wrap;
}

.a2-back-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--a2-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}
.a2-back-link:hover { color: var(--a2-ink); }
.manager-report-v2-page .a2-page-header {
    align-items: center;
    margin-bottom: 12px;
}
.manager-report-v2-page .a2-section {
    margin-top: 18px;
}
.manager-report-v2-page .a2-filter-panel {
    margin-top: 14px;
}
.a2-manager-hero {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: auto minmax(430px, 1fr) minmax(440px, .9fr);
    gap: 26px;
    align-items: center;
}
.a2-manager-avatar {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #fff;
    font-family: var(--a2-font-display);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}
.a2-manager-name {
    margin: 0;
    font-family: var(--a2-font-display);
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
}
.a2-manager-role { margin-top: 4px; color: var(--a2-muted); font-size: 13px; }
.a2-manager-meta { margin-top: 10px; display: flex; gap: 7px; flex-wrap: wrap; }
.a2-manager-hero-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 36px;
    align-items: end;
}
.a2-manager-hero-stats span,
.a2-manager-hero-card span {
    display: block;
    color: var(--a2-muted);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}
.a2-manager-hero-stats strong {
    display: block;
    margin-top: 6px;
    font-family: var(--a2-font-display);
    color: var(--a2-ink);
    font-size: 29px;
    line-height: 1;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.a2-manager-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    gap: 12px;
    justify-self: stretch;
}
.a2-manager-hero-card {
    min-height: 104px;
    padding: 17px 18px 16px;
    border: 1px solid var(--a2-line);
    border-radius: 9px;
    background: var(--a2-soft);
}
.a2-manager-hero-card span {
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 800;
}
.a2-manager-hero-card strong {
    display: block;
    margin-top: 10px;
    font-family: var(--a2-font-display);
    color: var(--a2-ink);
    font-size: 29px;
    line-height: 1;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.a2-manager-hero-card small {
    display: block;
    margin-top: 10px;
    color: var(--a2-muted);
    font-size: 12px;
    line-height: 1.35;
}
.a2-manager-kpi { min-height: 76px; border-left: 1px solid var(--a2-line); padding: 8px 12px; }
.a2-manager-kpi-label { color: var(--a2-muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.a2-manager-kpi-value { margin-top: 6px; font-family: var(--a2-font-display); font-size: 21px; font-weight: 800; font-variant-numeric: tabular-nums; }
.a2-manager-checklist-panel .a2-section-body {
    padding-bottom: 20px;
}
.a2-manager-checklist-panel .a2-chart-legend {
    display: none;
}
.a2-manager-summary-section .a2-section-title {
    font-size: 23px;
}
.a2-summary-text { margin: 0; color: #334155; font-size: 15.5px; line-height: 1.75; }
.a2-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}
.a2-insight-card {
    min-height: 150px;
    padding: 14px 16px 12px;
    border: 1px solid var(--a2-line);
    border-radius: var(--a2-radius);
    background: #fff;
}
.a2-insight-title {
    margin: 0 0 10px;
    font-family: var(--a2-font-display);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}
.a2-insight-row {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--a2-line);
    font-size: 14px;
}
.a2-insight-row:last-child { border-bottom: 0; }
.a2-insight-row span {
    min-width: 0;
    display: grid;
    gap: 1px;
}
.a2-insight-row b {
    overflow: hidden;
    color: var(--a2-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.a2-insight-row small {
    color: var(--a2-faint);
    font-size: 11px;
    font-weight: 700;
}
.a2-insight-row strong {
    flex: 0 0 auto;
    font-family: var(--a2-font-display);
    font-size: 17px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.a2-insight-row strong.is-high { color: var(--a2-green); }
.a2-insight-row strong.is-mid { color: var(--a2-amber); }
.a2-insight-row strong.is-low { color: var(--a2-red); }
.a2-manager-sources-section .a2-table {
    min-width: 860px;
}
.a2-manager-sources-section .a2-table th {
    height: 40px;
    font-size: 10.5px;
}
.a2-manager-sources-section .a2-table td {
    height: 54px;
    font-size: 13.5px;
}
.a2-manager-sources-section .a2-table-main {
    font-size: 14px;
    font-weight: 800;
}
.a2-manager-sources-section .a2-table .is-number {
    font-size: 15px;
    font-weight: 700;
}
.a2-manager-sources-section .a2-table .is-number strong,
.a2-manager-sources-section .a2-table .is-strong {
    font-size: 16px;
    font-weight: 800;
}
.a2-manager-next-section .a2-quality-aside {
    padding: 0 18px 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 8px;
}
.a2-manager-next-section .a2-quality-row {
    min-height: 48px;
    padding: 9px 10px;
    border: 1px solid var(--a2-line);
    border-radius: 7px;
    background: #fff;
}

.a2-skeleton {
    position: relative;
    overflow: hidden;
    min-height: 14px;
    border-radius: 4px;
    background: #e9eef4;
}
.a2-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .58);
    animation: a2-skeleton 1.1s ease-in-out infinite alternate;
}
@keyframes a2-skeleton { from { opacity: .15; } to { opacity: .78; } }
.a2-error {
    margin: 14px 0;
    padding: 12px 14px;
    border: 1px solid #f0b8b8;
    border-radius: 8px;
    background: var(--a2-red-soft);
    color: var(--a2-red);
    font-size: 12px;
}
.a2-hidden { display: none !important; }

@media (max-width: 1380px) {
    .a2-kpi-grid { grid-template-columns: repeat(4, minmax(140px, 1fr)); }
    .a2-field--date { grid-column: span 2; }
    .a2-field--dc,
    .a2-field--manager,
    .a2-field--source { grid-column: span 4; }
    .a2-field--type { grid-column: span 4; }
    .a2-field--duration { grid-column: span 3; }
    .a2-manager-hero { grid-template-columns: auto 1fr; }
    .a2-manager-kpis { grid-column: 1 / -1; }
}

@media (max-width: 1050px) {
    .a2-main { padding: 18px 16px 40px; }
    .a2-quality-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .a2-filter-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .a2-field--date { grid-column: span 2; }
    .a2-field--dc,
    .a2-field--manager,
    .a2-field--source,
    .a2-field--type { grid-column: span 3; }
    .a2-field--duration { grid-column: span 2; }
    .a2-evidence-toolbar { grid-template-columns: minmax(180px, 1fr) auto auto; }
    .a2-evidence-toolbar > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    body.analytics-v2-page { display: block; }
    body.analytics-v2-page #sharedSidebar,
    body.analytics-v2-page #sharedSidebar.collapsed {
        width: 100%;
        height: 64px;
        position: sticky;
        top: 0;
        z-index: 900;
        flex-direction: row;
        align-items: center;
        padding: 8px 12px;
        overflow: visible;
        border-bottom: 1px solid #e2e8f0;
        background: #f5f6f7;
    }
    body.analytics-v2-page #sharedSidebar .logo,
    body.analytics-v2-page #sharedSidebar.collapsed .logo {
        width: 100%;
        height: 48px;
        margin: 0;
        justify-content: flex-start;
    }
    body.analytics-v2-page #sharedSidebar.collapsed .logo-mark { display: flex; }
    body.analytics-v2-page #sharedSidebar.collapsed .logo-text { display: block; }
    body.analytics-v2-page #sharedSidebar .logo-text,
    body.analytics-v2-page #sharedSidebar .nav-link span.label { opacity: 1; transition: none; }
    body.analytics-v2-page #sharedSidebar .sidebar-burger { margin-left: auto; }
    body.analytics-v2-page #sharedSidebar .dealer-scope,
    body.analytics-v2-page #sharedSidebar.collapsed .dealer-scope { display: none !important; }
    body.analytics-v2-page #sharedSidebar .nav-list,
    body.analytics-v2-page #sharedSidebar.collapsed .nav-list {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 64px;
        z-index: 899;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        margin: 0;
        padding: 10px 12px 18px;
        background: #f5f6f7;
        border-bottom: 1px solid #d8dee8;
        box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
    }
    body.analytics-v2-page #sharedSidebar.mobile-open .nav-list { display: grid; }
    body.analytics-v2-page #sharedSidebar .nav-item { margin: 0; min-width: 0; }
    body.analytics-v2-page #sharedSidebar .nav-link,
    body.analytics-v2-page #sharedSidebar.collapsed .nav-link {
        width: 100%;
        height: 40px;
        margin: 0;
        padding: 0 12px;
        justify-content: flex-start;
        gap: 10px;
        border-radius: 8px;
    }
    body.analytics-v2-page #sharedSidebar.collapsed .nav-link span.label { display: inline; }
    body.analytics-v2-page #sharedSidebar #sharedSidebarFooter { display: none; }
    .a2-main { padding: 14px 12px 36px; }
    .a2-main,
    .a2-container,
    .a2-section,
    .a2-table-shell,
    .a2-chart-wrap { min-width: 0; max-width: 100%; }
    .a2-page-header { align-items: stretch; }
    .a2-title { font-size: 25px; }
    .a2-kpi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .a2-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .a2-field--date,
    .a2-field--dc,
    .a2-field--manager,
    .a2-field--source,
    .a2-field--type,
    .a2-field--duration { grid-column: span 1; }
    .a2-filter-footer { align-items: flex-start; flex-direction: column; }
    .a2-period-meta { white-space: normal; }
    .a2-section-head { padding: 13px 14px 10px; }
    .a2-section-body { padding: 0 14px 14px; }
    .a2-quality-details { margin-right: 14px; margin-left: 14px; }
    .a2-quality-aside { padding-left: 27px; }
    .a2-divider { margin: 0 14px; }
    .a2-source-bar-row { grid-template-columns: minmax(110px, 160px) minmax(120px, 1fr) 58px; }
    .a2-source-bar-row .a2-source-conversion { display: none; }
    .a2-manager-hero { grid-template-columns: auto 1fr; gap: 14px; padding: 15px; }
    .a2-manager-name { font-size: 22px; }
    .a2-manager-kpis { grid-template-columns: repeat(2, 1fr); }
    .a2-insights-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
    .a2-page-header { display: block; }
    .a2-header-actions { margin-top: 10px; }
    .a2-header-actions .a2-button { flex: 1; }
    .a2-filter-grid { display: block; }
    .a2-field { margin-bottom: 9px; }
    .a2-segmented { width: 100%; }
    .a2-segmented button { flex: 1; min-width: 0; }
    .a2-kpi { min-height: 96px; padding: 11px; }
    .a2-kpi-value { font-size: 22px; }
    .a2-section-head { display: block; }
    .a2-section-head .a2-inline-actions { margin-top: 10px; }
    .a2-evidence-toolbar { display: flex; flex-wrap: wrap; }
    .a2-search-wrap { flex: 1 0 100%; }
    .a2-pagination { align-items: flex-start; flex-direction: column; }
    .a2-manager-hero { display: block; }
    .a2-manager-avatar { width: 54px; height: 54px; margin-bottom: 12px; }
    .a2-manager-kpis { margin-top: 14px; grid-template-columns: repeat(2, 1fr); }
    .a2-manager-kpi { border-left: 0; border-top: 1px solid var(--a2-line); }
    .a2-quality-aside { display: block; }
    .a2-subsection-head { display: block; padding: 2px 14px 10px; }
    .a2-subsection-head .a2-period-meta { margin-top: 6px; }
    .a2-ai-mode-grid { grid-template-columns: 1fr; }
}
