.pf-page {
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    --pf-fs-kicker: 12px;
    --pf-fs-meta: 13px;
    --pf-fs-body: 15px;
    --pf-fs-body-sm: 14px;
    --pf-fs-title: 24px;
    --pf-fs-card-title: 19px;
    --pf-fs-metric: 18px;
    --pf-fs-chip: 11px;
    --pf-fs-support: 14px;
    --pf-text-support: rgba(214, 223, 232, 0.74);
}

.pf-results-grid,
.pf-charts-grid {
    display: grid;
    gap: 16px;
}

.pf-intro-card,
.pf-results-shell,
.pf-empty-state {
    background: var(--bg-primary);
    border-color: rgba(255,255,255,0.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025),
        0 16px 36px rgba(0, 0, 0, 0.14);
}

.pf-intro-card {
    padding: 20px;
}

.pf-workbench-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.96fr);
    gap: 20px;
    align-items: start;
}

.pf-workbench-panel,
.pf-snapshot-panel {
    min-width: 0;
    padding: 20px;
}

.pf-selection-panel {
    position: relative;
    border-color: rgba(77, 171, 154, 0.2);
    background:
        radial-gradient(circle at 10% 0%, rgba(77, 171, 154, 0.08), rgba(77, 171, 154, 0.02) 26%, transparent 52%),
        linear-gradient(180deg, rgba(77, 171, 154, 0.045) 0%, rgba(255,255,255,0.02) 12%, rgba(255,255,255,0.008) 28%, rgba(255,255,255,0) 52%),
        #171717;
    box-shadow:
        inset 0 1px 0 rgba(77, 171, 154, 0.09),
        inset 0 0 0 1px rgba(77, 171, 154, 0.05),
        0 0 42px rgba(77, 171, 154, 0.06),
        0 16px 36px rgba(0, 0, 0, 0.14);
}

.pf-workbench-head {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pf-workbench-eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.pf-workbench-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(77, 171, 154, 0.26);
    background: rgba(77, 171, 154, 0.1);
    color: #8de6d7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pf-selection-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77, 171, 154, 0.15), transparent);
    border-radius: 999px;
    pointer-events: none;
}

.pf-snapshot-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pf-selection-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.065);
    background: rgba(255,255,255,0.025);
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-meta);
    font-weight: 600;
    white-space: nowrap;
    justify-self: start;
    max-width: 100%;
}

.pf-snapshot-copy {
    min-width: 0;
}

.pf-snapshot-summary {
    display: grid;
    align-items: start;
    justify-items: start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.008) 100%),
        #151515;
}

.pf-builder-grid--top {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pf-summary-label {
    margin-bottom: 8px;
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-summary-block {
    min-width: 0;
    width: 100%;
}

.pf-selection-note {
    width: 100%;
    color: var(--text-secondary);
    font-size: var(--pf-fs-body-sm);
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.pf-snapshot-section + .pf-snapshot-section {
    margin-top: 16px;
}

.pf-overview-grid {
    display: grid;
    gap: 12px;
}

.pf-overview-grid--rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.pf-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pf-action-bar--selection {
    margin-top: 2px;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-selection-summary {
    color: var(--text-primary);
    font-size: var(--pf-fs-body-sm);
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.pf-snapshot-summary .pf-selection-summary {
    font-size: var(--pf-fs-body);
    line-height: 1.48;
    text-wrap: balance;
}

.pf-snapshot-top .pf-affiliate-link {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.pf-snapshot-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pf-snapshot-actions .pf-run-btn {
    width: 100%;
}

.pf-snapshot-actions .pf-source-note {
    margin-top: 0;
}

.pf-results-shell {
    padding: 26px 28px 28px;
    scroll-margin-top: 96px;
}

.pf-shell-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.pf-shell-head--subsection {
    margin-bottom: 16px;
}

.pf-shell-title {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--pf-fs-title);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.pf-report-section + .pf-report-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pf-report-section.pf-report-section--flush {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.pf-report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 26px;
}

.pf-report-stack {
    display: grid;
    gap: 30px;
    align-content: start;
    min-width: 0;
}

.pf-report-stack--side {
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-left: 24px;
}

.pf-report-stack .pf-report-block + .pf-report-block {
    padding-top: 0;
    border-top: 0;
}

.pf-results-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr);
    column-gap: 24px;
    row-gap: 18px;
}

.pf-results-grid.bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pf-charts-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr);
    column-gap: 24px;
    row-gap: 18px;
}

.pf-setup-card,
.pf-spotlight-card,
.pf-verdict-card,
.pf-checks-card,
.pf-chart-card,
.pf-list-card,
.pf-empty-state {
    border-radius: var(--radius-lg);
}

.pf-setup-card,
.pf-spotlight-card,
.pf-verdict-card,
.pf-checks-card,
.pf-chart-card,
.pf-list-card {
    padding: 20px;
}

.pf-report-block {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-report-block:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.pf-results-grid > .pf-report-block:nth-child(2),
.pf-charts-grid > .pf-report-block:nth-child(2) {
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-left: 24px;
}

.pf-report-block .pf-card-head {
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: 0;
}

.pf-panel {
    min-width: 0;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008) 100%);
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pf-panel:hover {
    border-color: rgba(255,255,255,0.09);
    transform: translateY(-1px);
}

.pf-selection-panel:hover,
.pf-overview-section:hover,
.pf-action-bar.pf-panel:hover {
    transform: none;
}

.pf-verdict-card.pf-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 32%),
        #151515;
    border-color: rgba(255,255,255,0.065);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 14px 34px rgba(0, 0, 0, 0.11);
}

.pf-verdict-card {
    gap: 0;
}

.pf-section-kicker {
    font-size: var(--pf-fs-kicker);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 700;
}

.pf-section-title {
    font-size: var(--pf-fs-title);
    line-height: 1.12;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.04em;
}

.pf-section-title.compact {
    font-size: 22px;
}

.pf-section-copy {
    margin: 10px 0 0;
    color: rgba(214, 223, 232, 0.72);
    line-height: 1.66;
    font-size: var(--pf-fs-body);
    max-width: 60ch;
}

.pf-section-copy.compact {
    margin-top: 8px;
    max-width: none;
}

.pf-builder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    margin-top: 0;
    align-items: end;
}

.pf-builder-row {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pf-field label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-choice-label {
    margin-bottom: 8px;
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-choice-group {
    min-width: 0;
    display: grid;
    gap: 8px;
    padding-bottom: 14px;
}

.pf-choice-group--region-inline {
    min-width: 170px;
}

.pf-control-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.pf-select-shell {
    position: relative;
    margin-bottom: 15px;
}

.pf-select-shell::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239898a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    pointer-events: none;
}

.pf-select-logo {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.055);
    background: rgba(255,255,255,0.028);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    overflow: hidden;
    pointer-events: none;
}

.pf-field select {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.034);
    color: var(--text-primary);
    padding: 0 42px 0 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    font-size: var(--pf-fs-body);
    font-weight: 600;
    line-height: 1.1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.pf-size-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 8px;
}

.pf-size-chip {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: #151515;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.018);
    min-height: 58px;
    padding: 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.pf-size-chip:hover {
    border-color: rgba(255,255,255,0.09);
    transform: translateY(-1px);
}

.pf-size-chip.active {
    border-color: rgba(77, 171, 154, 0.28);
    background:
        linear-gradient(180deg, rgba(77, 171, 154, 0.16) 0%, rgba(77, 171, 154, 0.08) 24%, rgba(37, 37, 37, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 10px 24px rgba(0, 0, 0, 0.12);
}

.pf-size-chip-value {
    display: block;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
}

.pf-size-chip-meta {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: var(--pf-fs-meta);
    line-height: 1.4;
}

.pf-select-shell--firm select {
    padding-left: 56px;
    padding-right: 48px;
}

.pf-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.pf-field select:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

.pf-field select option {
    background: #151515;
    color: var(--text-primary);
}

.pf-rule-grid,
.pf-facts-grid,
.pf-stat-grid,
.pf-monte-grid {
    display: grid;
    gap: 12px;
}

.pf-rule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
}

.pf-rule-card,
.pf-fact {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.016), rgba(255,255,255,0.006) 100%),
        #171717;
    padding: 14px;
    box-shadow: none;
    transition: background 0.18s ease;
}

.pf-overview-grid--rules .pf-rule-card,
.pf-meta-strip--snapshot .pf-meta-pill {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-rule-card:hover,
.pf-fact:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008) 100%),
        #171717;
}

.pf-stat-card,
.pf-monte-card,
.pf-review-stat,
.pf-check-item,
.pf-violation-item,
.pf-pressure-row,
.pf-replay-row {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008) 100%),
        #161616;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.pf-stat-card:hover,
.pf-monte-card:hover,
.pf-review-stat:hover {
    border-color: rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008) 100%),
        #161616;
}

.pf-check-item:hover,
.pf-violation-item:hover,
.pf-pressure-row:hover {
    background: rgba(255,255,255,0.02);
}

.pf-rule-label,
.pf-fact-label,
.pf-stat-label {
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-rule-value,
.pf-fact-value,
.pf-stat-value {
    margin-top: 7px;
    color: #f4f4f6;
    font-weight: 700;
    font-size: var(--pf-fs-metric);
    line-height: 1.25;
}

.pf-rule-value {
    font-size: var(--pf-fs-body);
    line-height: 1.45;
}

.pf-fact-value {
    font-size: var(--pf-fs-body-sm);
    line-height: 1.55;
}

.pf-stat-value {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
}

.pf-stat-value.positive {
    color: #4ee38a;
}

.pf-stat-value.negative {
    color: #ff7b7b;
}

.pf-stat-value.warning {
    color: #f2c55d;
}

.pf-stat-value.neutral {
    color: #f4f4f6;
}

.pf-stat-sub {
    margin-top: 7px;
    font-size: var(--pf-fs-support);
    color: var(--pf-text-support);
    line-height: 1.5;
}

.pf-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pf-run-btn,
.pf-affiliate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 10px;
    padding: 0 18px;
    font-weight: 700;
    text-decoration: none;
}

.pf-run-btn.btn-secondary {
    border: 0;
    background: linear-gradient(135deg, #4DAB9A 0%, #5BC4B0 100%);
    color: #081311;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 12px 28px rgba(77, 171, 154, 0.2);
}

.pf-run-btn.btn-secondary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.26),
        0 14px 30px rgba(77, 171, 154, 0.24);
}

.pf-run-btn.btn-secondary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(91, 196, 176, 0.18),
        0 14px 30px rgba(77, 171, 154, 0.24);
}

.pf-run-btn.btn-secondary:disabled {
    cursor: wait;
    opacity: 0.92;
    transform: none;
    filter: none;
}

.pf-source-note {
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.6;
    margin-top: 4px;
}

.pf-action-bar .pf-run-btn,
.pf-action-bar .pf-affiliate-link {
    flex-shrink: 0;
}

.pf-action-bar .pf-affiliate-link {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
}

.pf-action-bar .pf-source-note {
    flex: 1 1 auto;
    text-align: left;
}

.pf-spotlight-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pf-firm-badge {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid rgba(77, 171, 154, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    color: var(--accent);
    overflow: hidden;
}

.pf-firm-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.pf-firm-logo-img--select {
    width: 18px;
    height: 18px;
}

.pf-fit-logo-img {
    width: 24px;
    height: 24px;
}

.pf-firm-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-body);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.pf-select-logo .pf-firm-logo-fallback {
    font-size: var(--pf-fs-kicker);
}

.pf-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

.pf-meta-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.032);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.018);
}

.pf-meta-pill {
    min-width: 0;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.016), rgba(255,255,255,0.006) 100%),
        #171717;
    padding: 12px 14px;
    transition: background 0.18s ease;
}

.pf-meta-pill:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008) 100%),
        #171717;
}

.pf-meta-pill-label {
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-meta-pill-value {
    margin-top: 6px;
    color: var(--text-primary);
    font-size: var(--pf-fs-body-sm);
    line-height: 1.45;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.pf-meta-strip--snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.pf-meta-strip--snapshot .pf-meta-pill {
    padding: 13px 14px;
}

.pf-region-list,
.pf-program-list,
.pf-phase-list {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.pf-phase-list-wrap {
    margin-top: 0;
}

.pf-phase-list-title {
    margin-bottom: 8px;
    font-size: var(--pf-fs-kicker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.pf-region-item,
.pf-program-item,
.pf-phase-item {
    width: auto;
    max-width: 100%;
    appearance: none;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #151515;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.018);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.pf-region-item {
    min-height: 38px;
    padding: 8px 12px;
}

.pf-region-list .pf-region-item {
    flex: 0 0 auto;
}

.pf-region-item:hover,
.pf-program-item:hover,
.pf-phase-item:hover {
    border-color: rgba(255,255,255,0.09);
    transform: translateY(-1px);
}

.pf-region-item.active,
.pf-program-item.active,
.pf-phase-item.active {
    border-color: rgba(77, 171, 154, 0.28);
    background:
        linear-gradient(180deg, rgba(77, 171, 154, 0.16) 0%, rgba(77, 171, 154, 0.08) 24%, rgba(37, 37, 37, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 10px 24px rgba(0, 0, 0, 0.12);
}

.pf-region-name,
.pf-program-name,
.pf-phase-name {
    color: #f4f4f6;
    font-weight: 600;
    font-size: var(--pf-fs-body-sm);
    line-height: 1.2;
}

.pf-region-meta,
.pf-program-meta,
.pf-phase-meta {
    display: none;
}

.pf-affiliate-link {
    width: 100%;
    margin-top: 14px;
}

.pf-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.pf-card-head--verdict {
    margin-bottom: 16px;
}

.pf-card-title {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--pf-fs-card-title);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.pf-verdict-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: var(--pf-fs-chip);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid transparent;
    margin-bottom: 14px;
}

.pf-verdict-pill.pass {
    color: #4ee38a;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.26);
}

.pf-verdict-pill.fail {
    color: #ff7b7b;
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.28);
}

.pf-verdict-pill.tracking {
    color: #f2c55d;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.24);
}

.pf-verdict-pill.clean {
    color: #c9c9d1;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.pf-verdict-card p {
    margin: 0;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-body);
    line-height: 1.6;
    max-width: 70ch;
}

.pf-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    background:rgba(255,255,255,0.022);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-stat-card,
.pf-monte-card {
    padding: 18px 20px;
    min-height: 112px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-stat-card {
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pf-stat-card:nth-child(3n) {
    border-right: 0;
}

.pf-stat-card:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.pf-stat-grid .pf-stat-label {
    color: rgba(160, 166, 177, 0.72);
}

.pf-stat-grid .pf-stat-value {
    margin-top: 10px;
    color: #f3f5f8;
}

.pf-stat-grid .pf-stat-value.positive {
    color: #a9e7dc;
}

.pf-stat-grid .pf-stat-value.negative {
    color: #ff9b9b;
}

.pf-stat-grid .pf-stat-value.warning {
    color: #f1cf76;
}

.pf-stat-grid .pf-stat-sub {
    margin-top: 8px;
    color: rgba(214, 223, 232, 0.76);
}

.pf-monte-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    overflow: hidden;
}

.pf-monte-strip .pf-monte-card {
    min-height: 0;
    padding: 14px 16px 13px;
}

.pf-monte-strip .pf-stat-label {
    margin-bottom: 8px;
}

.pf-monte-strip .pf-stat-value {
    margin-top: 0;
}

.pf-monte-strip .pf-stat-sub {
    margin-top: 6px;
}

.pf-check-list,
.pf-violation-list,
.pf-fit-list {
    display: grid;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    background:rgba(255,255,255,0.022);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-check-item,
.pf-violation-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    min-height: 76px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-check-item:last-child,
.pf-violation-item:last-child,
.pf-fit-item:last-child,
.pf-action-item:last-child,
.pf-pressure-row:last-child {
    border-bottom: 0;
}

.pf-check-item.pass {
    box-shadow:
        inset 2px 0 0 rgba(34, 197, 94, 0.36),
        inset 0 -1px 0 rgba(255,255,255,0.055);
}

.pf-check-item.fail {
    box-shadow:
        inset 2px 0 0 rgba(239, 68, 68, 0.36),
        inset 0 -1px 0 rgba(255,255,255,0.055);
}

.pf-violation-item.pass {
    box-shadow:
        inset 2px 0 0 rgba(34, 197, 94, 0.36),
        inset 0 -1px 0 rgba(255,255,255,0.055);
}

.pf-violation-item.fail {
    box-shadow:
        inset 2px 0 0 rgba(239, 68, 68, 0.36),
        inset 0 -1px 0 rgba(255,255,255,0.055);
}

.pf-violation-item.warning {
    box-shadow:
        inset 2px 0 0 rgba(245, 158, 11, 0.34),
        inset 0 -1px 0 rgba(255,255,255,0.055);
}

.pf-check-left,
.pf-violation-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pf-check-icon,
.pf-violation-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--pf-fs-body-sm);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.pf-check-icon.pass,
.pf-violation-icon.pass {
    color: #4ee38a;
    background: rgba(34, 197, 94, 0.12);
}

.pf-check-icon.fail,
.pf-violation-icon.fail {
    color: #ff7b7b;
    background: rgba(239, 68, 68, 0.12);
}

.pf-check-icon.tracking,
.pf-violation-icon.warning {
    color: #f2c55d;
    background: rgba(245, 158, 11, 0.12);
}

.pf-check-title,
.pf-violation-title {
    color: #f4f4f6;
    font-weight: 600;
    font-size: var(--pf-fs-body-sm);
}

.pf-check-detail,
.pf-violation-detail {
    margin-top: 5px;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.6;
}

.pf-check-value,
.pf-violation-value {
    color: #f4f4f6;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
    text-align: right;
}

.pf-chart {
    min-height: 320px;
}

.pf-chart--curve {
    min-height: 360px;
}

.pf-chart.small {
    min-height: 260px;
}

.pf-curve-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 16px;
    padding: 1px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-curve-meta-item {
    min-width: 0;
    display: grid;
    gap: 6px;
    padding: 13px 16px 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006) 100%),
        #161616;
}

.pf-curve-meta-label {
    color: var(--text-muted);
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-curve-meta-value {
    color: #f4f4f6;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
}

.pf-curve-meta-value.positive {
    color: #6ee7d3;
}

.pf-curve-meta-value.warning {
    color: #f2c55d;
}

.pf-curve-meta-value.negative {
    color: #ff8d8d;
}

.pf-curve-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 13px 16px 12px;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006) 100%),
        #161616;
    color: var(--text-secondary);
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pf-curve-status.pass {
    background:
        linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.035) 100%),
        #161616;
    color: #7bf0a9;
}

.pf-curve-status.fail {
    background:
        linear-gradient(180deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.035) 100%),
        #161616;
    color: #ff8d8d;
}

.pf-curve-status.tracking {
    background:
        linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03) 100%),
        #161616;
    color: #f2c55d;
}

.pf-chart-tooltip {
    min-width: 210px;
    padding: 12px 13px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(14, 15, 16, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.pf-chart-tooltip-date {
    margin-bottom: 8px;
    color: #f4f4f6;
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pf-chart-tooltip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-secondary);
    font-size: var(--pf-fs-kicker);
    line-height: 1.5;
}

.pf-chart-tooltip-row + .pf-chart-tooltip-row {
    margin-top: 6px;
}

.pf-chart-tooltip-row strong {
    color: #f4f4f6;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
}

.pf-review-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 16px;
    padding: 1px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    overflow: hidden;
}

.pf-review-stat {
    padding: 15px 16px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006) 100%),
        #161616;
    box-shadow: none;
}

.pf-review-stat-label {
    color: var(--text-muted);
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-review-stat-value {
    margin-top: 8px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-metric);
    font-weight: 700;
}

.pf-violation-list.clean .pf-violation-item {
    background:
        linear-gradient(180deg, rgba(34, 197, 94, 0.03), rgba(255,255,255,0.008) 100%),
        #161616;
}

.pf-pressure-note {
    margin-top: 14px;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.6;
}

.pf-pressure-list {
    display: grid;
    gap: 0;
    margin-top: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008) 100%),
        #151515;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-pressure-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-pressure-row-label {
    color: var(--text-primary);
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
}

.pf-pressure-row-meta {
    margin-top: 4px;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.6;
}

.pf-pressure-row-value {
    color: #f4f4f6;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
    white-space: nowrap;
}

.pf-replay-card {
    margin-top: 0;
}

.pf-replay-note {
    margin-top: -2px;
    margin-bottom: 18px;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.65;
}

.pf-replay-table {
    display: block;
    max-height: 660px;
    overflow: auto;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background:rgba(255,255,255,0.022);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.pf-replay-table::-webkit-scrollbar {
    width: 8px;
}

.pf-replay-table::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
}

.pf-replay-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr) minmax(220px, 1.3fr);
    gap: 16px;
    align-items: start;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-replay-row.warning {
    background: rgba(245, 158, 11, 0.035);
    box-shadow: inset 2px 0 0 rgba(245, 158, 11, 0.34);
}

.pf-replay-row.breach {
    background: rgba(239, 68, 68, 0.05);
    box-shadow: inset 2px 0 0 rgba(239, 68, 68, 0.4);
}

.pf-replay-row.target {
    background: rgba(34, 197, 94, 0.045);
    box-shadow: inset 2px 0 0 rgba(34, 197, 94, 0.38);
}

.pf-replay-row.pf-replay-head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--text-muted);
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.pf-replay-row:hover {
    background: rgba(255,255,255,0.018);
}

.pf-replay-row.warning:hover {
    background: rgba(245, 158, 11, 0.05);
}

.pf-replay-row.breach:hover {
    background: rgba(239, 68, 68, 0.065);
}

.pf-replay-row.target:hover {
    background: rgba(34, 197, 94, 0.055);
}

.pf-replay-date-main {
    color: #f4f4f6;
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
}

.pf-replay-date-sub,
.pf-replay-status-sub {
    margin-top: 5px;
    color: var(--pf-text-support);
    font-size: var(--pf-fs-support);
    line-height: 1.6;
}

.pf-replay-value {
    color: #f4f4f6;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
    line-height: 1.4;
}

.pf-replay-value.positive {
    color: #4ee38a;
}

.pf-replay-value.negative {
    color: #ff7b7b;
}

.pf-replay-status {
    min-width: 0;
}

.pf-fit-card {
    margin-top: 0;
}

.pf-fit-note {
    margin-top: -2px;
    margin-bottom: 18px;
    color: rgba(214, 223, 232, 0.82);
    font-size: var(--pf-fs-body);
    line-height: 1.68;
}

.pf-fit-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.pf-fit-item:hover {
    transform: none;
    background: rgba(255,255,255,0.02);
}

.pf-fit-item.selected {
    background: rgba(77, 171, 154, 0.05);
    box-shadow: inset 2px 0 0 rgba(77, 171, 154, 0.34);
}

.pf-fit-main {
    min-width: 0;
    flex: 1;
}

.pf-fit-top {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pf-fit-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.pf-fit-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-fit-title {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.pf-fit-phase {
    color: var(--pf-text-support);
    font-size: 14px;
    line-height: 1.45;
}

.pf-fit-selected-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(77, 171, 154, 0.14);
    border: 1px solid rgba(77, 171, 154, 0.22);
    color: #8de6d7;
    font-size: var(--pf-fs-chip);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-fit-summary {
    margin-top: 10px;
    color: var(--pf-text-support);
    font-size: 16px;
    line-height: 1.6;
}

.pf-fit-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.pf-fit-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pf-fit-side {
    min-width: 112px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.pf-fit-score {
    color: var(--text-primary);
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.pf-fit-score-label {
    color: #8f8f97;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-verdict-pill.mini {
    min-height: 28px;
    margin-bottom: 0;
    font-size: var(--pf-fs-chip);
}

.pf-insight {
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(77, 171, 154, 0.18);
    background:
        linear-gradient(180deg, rgba(77, 171, 154, 0.05), rgba(77, 171, 154, 0.018) 22%, rgba(255,255,255,0) 100%),
        #151716;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: var(--pf-fs-body-sm);
}

.pf-action-list {
    margin: 14px 0 0;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008) 100%),
        #151515;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pf-action-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pf-action-step {
    flex-shrink: 0;
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(77, 171, 154, 0.18);
    background: rgba(77, 171, 154, 0.08);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: var(--pf-fs-kicker);
    font-weight: 700;
}

.pf-action-copy-wrap {
    min-width: 0;
}

.pf-action-item-title {
    color: var(--text-primary);
    font-size: var(--pf-fs-body-sm);
    font-weight: 700;
}

.pf-action-item-copy {
    margin-top: 4px;
    color: var(--pf-text-support);
    line-height: 1.65;
    font-size: var(--pf-fs-support);
}

.pf-empty-state {
    text-align: center;
    padding: 72px 28px;
}

.pf-empty-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(77, 171, 154, 0.18);
    background: rgba(77, 171, 154, 0.06);
    color: var(--accent);
}

.pf-empty-state h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 22px;
}

.pf-empty-state p {
    margin: 12px auto 0;
    max-width: 56ch;
    color: var(--text-secondary);
    line-height: 1.68;
}

.pf-toolbar-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: rgba(214, 223, 232, 0.72);
    font-family: 'DM Mono', monospace;
    font-size: var(--pf-fs-meta);
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .pf-page .app-page-title-group {
        max-width: none;
        flex: 1 1 auto;
    }

    .pf-page .app-page-subtitle {
        max-width: 62ch;
        white-space: normal;
    }
}

@media (max-width: 1280px) {
    .pf-report-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pf-report-stack--side {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding-top: 22px;
    }

    .pf-workbench-grid,
    .pf-results-grid,
    .pf-charts-grid,
    .pf-results-grid.bottom {
        grid-template-columns: 1fr;
    }

    .pf-results-grid > .pf-report-block:nth-child(2),
    .pf-charts-grid > .pf-report-block:nth-child(2) {
        border-left: 0;
        padding-left: 0;
    }

    .pf-builder-grid {
        grid-template-columns: 1fr;
    }

    .pf-overview-grid--rules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-meta-strip,
    .pf-meta-strip--snapshot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .pf-page .app-page-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pf-page .app-toolbar {
        width: 100%;
        justify-content: space-between;
    }

    .pf-stat-grid,
    .pf-monte-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pf-stat-card {
        border-right: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .pf-stat-card:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.05);
    }

    .pf-stat-card:nth-child(2n) {
        border-right: 0;
    }

    .pf-stat-card:nth-last-child(-n + 3) {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .pf-stat-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

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

    .pf-snapshot-top {
        flex-direction: column;
        align-items: stretch;
    }

    .pf-curve-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-curve-status {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .pf-stat-grid,
    .pf-monte-grid,
    .pf-overview-grid,
    .pf-replay-row,
    .pf-replay-row.pf-replay-head {
        grid-template-columns: 1fr;
    }

    .pf-overview-grid--rules,
    .pf-meta-strip,
    .pf-meta-strip--snapshot {
        grid-template-columns: 1fr;
    }

    .pf-size-list,
    .pf-review-summary {
        grid-template-columns: 1fr;
    }

    .pf-workbench-panel,
    .pf-snapshot-panel,
    .pf-verdict-card,
    .pf-checks-card,
    .pf-chart-card,
    .pf-list-card {
        padding: 18px;
    }

    .pf-intro-card {
        padding: 18px;
    }

    .pf-results-shell {
        padding: 18px;
    }

    .pf-workbench-grid {
        gap: 16px;
    }

    .pf-stat-card,
    .pf-stat-card:nth-child(2n),
    .pf-stat-card:nth-child(3n),
    .pf-stat-card:nth-last-child(-n + 2),
    .pf-stat-card:nth-last-child(-n + 3) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .pf-stat-card:last-child {
        border-bottom: 0;
    }

    .pf-section-title {
        font-size: 20px;
    }

    .pf-shell-title {
        font-size: 22px;
    }

    .pf-report-section + .pf-report-section {
        margin-top: 22px;
        padding-top: 22px;
    }

    .pf-report-section.pf-report-section--flush {
        margin-top: 0;
        padding-top: 0;
    }

    .pf-check-item,
    .pf-violation-item,
    .pf-pressure-row,
    .pf-action-item,
    .pf-fit-item,
    .pf-replay-row,
    .pf-card-head,
    .pf-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pf-check-value,
    .pf-violation-value,
    .pf-pressure-row-value,
    .pf-fit-side,
    .pf-replay-row {
        text-align: left;
        align-items: flex-start;
    }

    .pf-source-note {
        flex: 0 0 auto;
        text-align: left;
    }

    .pf-snapshot-top .pf-affiliate-link {
        width: 100%;
    }

    .pf-curve-meta {
        grid-template-columns: 1fr;
    }

    .pf-curve-status {
        width: auto;
        justify-content: center;
        justify-self: start;
    }
}
