/* ── Benefits Radar Page ── */

/* Match interior page hero treatment */
.page-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.85)), var(--hero-bg-image, none);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3.5rem 0;
    margin-bottom: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.page-hero .hero-subtitle {
    margin: 0;
}

/* ── Hero Flex Layout ── */
.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.hero-text { flex: 1; min-width: 0; }

/* ── Hero Rating Card (Glass) ── */
.hero-rating-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.hero-rating-card:hover { transform: scale(1.03); }

.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-ring-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.hero-ring-wrap svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.hero-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 3;
}
.hero-ring-fill {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}
.hero-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-ring-text .ring-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.hero-ring-text .ring-percent {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-left: 1px;
}

.hero-rating-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.15rem;
}
.hero-rating-info .rating-label {
    font-size: 0.85rem;
    color: rgba(147,197,253,1);
    margin: 0;
}
.hero-pt-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    background: rgba(22,163,74,0.2);
    color: #86efac;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.hero-pt-chip i { font-size: 0.65rem; }

.breadcrumb {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.radar-container {
    padding: 2rem 1.5rem 4rem;
    max-width: 960px;
    margin: 0 auto;
}

/* ── Empty State ── */
.radar-empty-state {
    text-align: center;
    padding: 3rem 1rem;
}
.empty-state-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.radar-empty-state h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}
.radar-empty-state > p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}
.empty-state-features {
    list-style: none;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 2rem;
}
.empty-state-features li {
    padding: 0.4rem 0;
    color: var(--text-main);
    font-size: 0.95rem;
}
.empty-state-features li i {
    color: #16a34a;
    margin-right: 0.5rem;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #1e3a8a; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--surface-white);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-secondary:hover { background: var(--bg-off-white); }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.85rem; }

/* ── Wizard ── */
.radar-wizard {
    max-width: 600px;
    margin: 0 auto;
}
.wizard-progress {
    margin-bottom: 2rem;
    position: relative;
}
.wizard-progress-bar {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.wizard-progress-bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: var(--progress, 25%);
}
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.wizard-step.active { color: var(--primary-blue); font-weight: 600; }
.wizard-step.completed { color: #16a34a; }

.wizard-fieldset {
    border: none;
    padding: 0;
    display: none;
}
.wizard-fieldset.active { display: block; }
.wizard-fieldset legend {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding: 0;
}

.field-group {
    margin-bottom: 1.25rem;
}
.field-group > label:not(.checkbox-label):not(.radio-label) {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}
.field-group input[type="number"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--surface-white);
    color: var(--text-main);
}
.field-group input:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 1px;
}
.field-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
}
.radio-label input,
.checkbox-label input {
    accent-color: var(--primary-blue);
    width: 1rem;
    height: 1rem;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

/* ── Next Step Card ── */
.next-step-card {
    margin-bottom: 2rem;
    background: var(--surface-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem;
}
.next-step-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.next-step-icon {
    flex-shrink: 0;
    background: var(--primary-blue);
    color: #fff;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(30,64,175,0.3);
}
.next-step-body {
    flex: 1;
    min-width: 0;
}
.next-step-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.next-step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.next-step-dots {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.75rem;
}
.next-step-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bfdbfe;
    cursor: pointer;
    transition: background 0.2s;
}
.next-step-dot.active {
    background: var(--primary-blue);
}

/* ── Dashboard ── */
.radar-dashboard { margin-top: -3rem; position: relative; z-index: 1; }

/* ── Filter Header ── */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.filter-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.filter-heading i { color: var(--text-muted); font-size: 1rem; }
.edit-link {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    transition: color 0.15s;
}
.edit-link:hover { color: #1e3a8a; text-decoration: underline; }

/* ── Filter Chips ── */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
    box-shadow: var(--shadow-sm);
}
.filter-chip:hover {
    background: var(--bg-off-white);
    transform: translateY(-1px);
}
.filter-chip.active {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.filter-chip.active:hover {
    background: #1e293b;
    border-color: #1e293b;
}
.filter-chip i { font-size: 0.85rem; opacity: 0.7; }
.filter-chip.active i { opacity: 1; }
.filter-chip strong { font-weight: 600; }

/* ── Dashboard Sections (Collapsible) ── */
.dashboard-section {
    background: var(--surface-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}
.section-icon-box {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: transform 0.15s, background 0.15s, color 0.15s;
}
.section-toggle:hover .section-icon-box { transform: scale(1.1); }
.section-title-group {
    flex: 1;
    min-width: 0;
}
.section-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}
.section-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.section-count {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.section-chevron {
    margin-left: 0.25rem;
    transition: transform 0.2s;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.section-toggle.active .section-chevron { transform: rotate(180deg); }
.section-content {
    display: none;
    padding: 1.25rem 1.25rem 1.25rem;
}
.section-content.active { display: block; }

/* ── Qualified Section (Emerald) ── */
.dashboard-section[data-theme="qualified"] { border-color: #a7f3d0; }
.dashboard-section[data-theme="qualified"] .section-toggle:hover { background: #ecfdf5; }
.dashboard-section[data-theme="qualified"] .section-icon-box { background: #d1fae5; color: #15803d; }
.dashboard-section[data-theme="qualified"] .section-count { background: #16a34a; }
.dashboard-section[data-theme="qualified"] .section-content { border-top: 1px solid #d1fae5; }
.dashboard-section[data-theme="qualified"] .benefit-card .tier-note { color: #15803d; }

/* ── Close Section (Amber) ── */
.dashboard-section[data-theme="close"] { border-color: #fde68a; }
.dashboard-section[data-theme="close"] .section-toggle:hover { background: #fffbeb; }
.dashboard-section[data-theme="close"] .section-icon-box { background: #fef3c7; color: #d97706; }
.dashboard-section[data-theme="close"] .section-count { background: #334155; }
.dashboard-section[data-theme="close"] .section-content { border-top: 1px solid #fef3c7; }

/* ── Strategy Section (Indigo) ── */
.dashboard-section[data-theme="strategy"]:hover { border-color: #a5b4fc; box-shadow: var(--shadow-sm); }
.dashboard-section[data-theme="strategy"] .section-toggle:hover { background: #eef2ff; }
.dashboard-section[data-theme="strategy"] .section-icon-box { background: #e0e7ff; color: #4f46e5; }

/* ── Secondary Section (Purple) ── */
.dashboard-section[data-theme="secondary"]:hover { border-color: #d8b4fe; box-shadow: var(--shadow-sm); }
.dashboard-section[data-theme="secondary"] .section-toggle:hover { background: #faf5ff; }
.dashboard-section[data-theme="secondary"] .section-icon-box { background: #f3e8ff; color: #7c3aed; }

/* ── Benefits Cards ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}
.benefit-card {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-off-white);
    transition: border-color 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
}
.benefit-card:hover {
    border-color: #a7f3d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.benefit-card .category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.category-tag.cat-compensation { background: #dbeafe; color: #1e40af; }
.category-tag.cat-healthcare { background: #d1fae5; color: #166534; }
.category-tag.cat-education { background: #e0e7ff; color: #3730a3; }
.category-tag.cat-housing { background: #fef3c7; color: #92400e; }
.category-tag.cat-survivors { background: #f3e8ff; color: #6b21a8; }
.category-tag.cat-state { background: #fef3c7; color: #92400e; }
.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-main);
}
.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.benefit-card .tier-note {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.benefit-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
    transition: gap 0.15s;
}
.benefit-card:hover .card-link { gap: 0.5rem; }
.benefit-card .card-link i { font-size: 0.7rem; }

/* ── Close-To Callout Items ── */
.close-to-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.close-to-callout {
    display: flex;
    gap: 0.75rem;
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
    padding: 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.close-to-callout:hover { background: #fef3c7; }
.close-to-callout i.callout-icon {
    flex-shrink: 0;
    color: #d97706;
    font-size: 1rem;
    margin-top: 0.15rem;
}
.close-to-callout .callout-body { flex: 1; min-width: 0; }
.close-to-callout h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.25rem;
}
.close-to-callout p {
    font-size: 0.85rem;
    color: #78350f;
    margin: 0;
    line-height: 1.5;
}
.close-to-callout .unmet-text {
    font-size: 0.8rem;
    color: #d97706;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* ── Strategy Table ── */
.strategy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.strategy-table th {
    text-align: left;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-bottom: 2px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}
.strategy-table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: top;
}
.strategy-table tr:last-child td { border-bottom: none; }
.pay-delta {
    color: #16a34a;
    font-weight: 700;
}
.rating-bump {
    color: var(--primary-blue);
    font-weight: 600;
}
.strategy-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

/* ── Secondary Conditions ── */
.secondary-group {
    margin-bottom: 1.5rem;
}
.secondary-group-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.secondary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-off-white);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}
.secondary-item:hover { background: var(--border-subtle); }
.strength-badge {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    min-width: 70px;
    text-align: center;
}
.strength-badge.strong { background: #dcfce7; color: #166534; }
.strength-badge.moderate { background: #fef3c7; color: #92400e; }
.strength-badge.emerging { background: #f1f5f9; color: #475569; }
.secondary-info { flex: 1; min-width: 0; }
.secondary-info a {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
}
.secondary-info a:hover { text-decoration: underline; }
.secondary-info .secondary-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    line-height: 1.5;
}
.secondary-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .radar-container { padding: 1.5rem 1rem 3rem; }
    .field-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .strategy-table { font-size: 0.8rem; }
    .strategy-table th,
    .strategy-table td { padding: 0.5rem 0.35rem; }
    .filter-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .next-step-inner { flex-wrap: wrap; }
    .next-step-dots { width: 100%; justify-content: center; }
    .hero-ring-wrap { width: 64px; height: 64px; }
    .hero-ring-text .ring-number { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 2.5rem 0;
        text-align: center;
    }
    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-text { text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .breadcrumb {
        justify-content: center;
    }
}

/* ── Dark Mode ── */
[data-theme="dark"] .benefit-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .benefit-card:hover { border-color: rgba(74,222,128,0.3); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
[data-theme="dark"] .category-tag.cat-compensation { background: rgba(30,64,175,0.15); color: #93c5fd; }
[data-theme="dark"] .category-tag.cat-healthcare { background: rgba(22,163,74,0.15); color: #86efac; }
[data-theme="dark"] .category-tag.cat-education { background: rgba(79,70,229,0.15); color: #a5b4fc; }
[data-theme="dark"] .category-tag.cat-housing { background: rgba(217,119,6,0.15); color: #fcd34d; }
[data-theme="dark"] .category-tag.cat-survivors { background: rgba(124,58,237,0.15); color: #d8b4fe; }
[data-theme="dark"] .category-tag.cat-state { background: rgba(217,119,6,0.15); color: #fcd34d; }
[data-theme="dark"] .benefit-card .card-link { color: #4ade80; }
[data-theme="dark"] .close-to-callout { background: rgba(245,158,11,0.08); border-left-color: #f59e0b; }
[data-theme="dark"] .close-to-callout:hover { background: rgba(245,158,11,0.15); }
[data-theme="dark"] .close-to-callout h4 { color: #fcd34d; }
[data-theme="dark"] .close-to-callout p { color: #fde68a; }
[data-theme="dark"] .close-to-callout .unmet-text { color: #fbbf24; }
[data-theme="dark"] .strength-badge.strong { background: rgba(22,163,74,0.15); color: #4ade80; }
[data-theme="dark"] .strength-badge.moderate { background: rgba(217,119,6,0.15); color: #fbbf24; }
[data-theme="dark"] .strength-badge.emerging { background: rgba(255,255,255,0.06); color: #94a3b8; }
[data-theme="dark"] .secondary-item { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .secondary-item:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .dashboard-section { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .dashboard-section[data-theme="qualified"] { border-color: rgba(74,222,128,0.2); }
[data-theme="dark"] .dashboard-section[data-theme="qualified"] .section-toggle:hover { background: rgba(22,163,74,0.06); }
[data-theme="dark"] .dashboard-section[data-theme="qualified"] .section-icon-box { background: rgba(22,163,74,0.15); color: #4ade80; }
[data-theme="dark"] .dashboard-section[data-theme="qualified"] .section-content { border-top-color: rgba(74,222,128,0.15); }
[data-theme="dark"] .dashboard-section[data-theme="qualified"] .benefit-card .tier-note { color: #4ade80; }
[data-theme="dark"] .dashboard-section[data-theme="close"] { border-color: rgba(245,158,11,0.2); }
[data-theme="dark"] .dashboard-section[data-theme="close"] .section-toggle:hover { background: rgba(245,158,11,0.06); }
[data-theme="dark"] .dashboard-section[data-theme="close"] .section-icon-box { background: rgba(245,158,11,0.15); color: #fbbf24; }
[data-theme="dark"] .dashboard-section[data-theme="close"] .section-content { border-top-color: rgba(245,158,11,0.15); }
[data-theme="dark"] .dashboard-section[data-theme="strategy"]:hover { border-color: rgba(165,180,252,0.3); }
[data-theme="dark"] .dashboard-section[data-theme="strategy"] .section-toggle:hover { background: rgba(79,70,229,0.06); }
[data-theme="dark"] .dashboard-section[data-theme="strategy"] .section-icon-box { background: rgba(79,70,229,0.15); color: #a5b4fc; }
[data-theme="dark"] .dashboard-section[data-theme="secondary"]:hover { border-color: rgba(216,180,254,0.3); }
[data-theme="dark"] .dashboard-section[data-theme="secondary"] .section-toggle:hover { background: rgba(124,58,237,0.06); }
[data-theme="dark"] .dashboard-section[data-theme="secondary"] .section-icon-box { background: rgba(124,58,237,0.15); color: #d8b4fe; }
[data-theme="dark"] .section-toggle:hover { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .filter-chip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .filter-chip:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .filter-chip.active { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff; }
[data-theme="dark"] .next-step-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .next-step-inner { background: rgba(30,64,175,0.1); border-color: rgba(30,64,175,0.2); }
[data-theme="dark"] .next-step-label { color: #e2e8f0; }
[data-theme="dark"] .next-step-dot { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .next-step-dot.active { background: #60a5fa; }
[data-theme="dark"] .filter-header .filter-heading { color: #e2e8f0; }
[data-theme="dark"] .edit-link { color: #60a5fa; }
[data-theme="dark"] .empty-state-features li i { color: #4ade80; }
[data-theme="dark"] .pay-delta { color: #4ade80; }
[data-theme="dark"] .field-group input[type="number"] {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-main);
}
[data-theme="dark"] .glass-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}
