:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --accent: #4f46e5;
    --accent-light: #6366f1;
    --accent-bg: #eef2ff;
    --accent-border: #c7d2fe;
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --pink: #ec4899;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 1px 3px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Questrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    padding: 24px 32px;
    font-size: 15px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Report Badge */
.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
}

.report-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

/* Page Title */
.page-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 38px;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.page-meta svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* KPI Grid - Datum Style */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

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

@media (max-width: 600px) {
    .kpi-grid { grid-template-columns: 1fr; }
}

.kpi-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
}

.kpi-card.highlight {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 1px var(--accent-light);
}

.kpi-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.kpi-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.kpi-sublabel {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Executive Summary Card - Left Border Style */
.summary-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 24px;
}

.summary-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.summary-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Two Column Cards - Drivers/Challenges */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 800px) {
    .two-col-grid { grid-template-columns: 1fr; }
}

.driver-card, .challenge-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.driver-card {
    border-left: 4px solid var(--success);
}

.challenge-card {
    border-left: 4px solid var(--danger);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.green {
    background: var(--success-light);
    color: var(--success);
}

.card-icon.red {
    background: var(--danger-light);
    color: var(--danger);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-header-row h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.driver-card .bullet-list li::before {
    background: var(--success);
}

.challenge-card .bullet-list li::before {
    background: var(--danger);
}

/* Analyst Insights Card */
.insights-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.insights-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.insights-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .insights-grid { grid-template-columns: 1fr; }
}

.insight-box {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px;
}

.insight-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Navigation Tabs - Horizontal Pills */
.nav-tabs {
    display: flex;
    gap: 8px;
    background: var(--bg-primary);
    padding: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    overflow-x: auto;
}

.nav-tab {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Questrial', sans-serif;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    white-space: nowrap;
}

.nav-tab:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.nav-tab.active {
    background: var(--accent);
    color: white;
}

/* Chart Section */
.chart-section {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
}

.chart-title-bar {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-title-bar h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
}

.chart-body {
    display: grid;
    grid-template-columns: 380px 1fr;
}

@media (max-width: 900px) {
    .chart-body { grid-template-columns: 1fr; }
}

.chart-insights-panel {
    padding: 28px;
    border-right: 1px solid var(--border);
    background: var(--bg-primary);
}

@media (max-width: 900px) {
    .chart-insights-panel {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

.chart-insights-panel h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.insight-text {
    margin-bottom: 16px;
}

.insight-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.insight-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.chart-canvas-area {
    padding: 28px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
}

.chart-legend {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Accordion Sections */
.accordion-section {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.accordion-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.accordion-toggle {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.accordion-section.open .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 24px 20px;
}

.accordion-section.open .accordion-content {
    display: block;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    text-align: left;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--bg-secondary);
}

/* Back Navigation */
.back-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.back-nav:hover {
    color: var(--accent);
}

/* Page Header */
.page-header {
    margin-bottom: 32px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-bg);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-badge .num {
    background: var(--accent);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}
.site-header .logo {
    height: 28px;
    width: auto;
}
.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.header-nav a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 16px;
    }
    .site-header .logo {
        height: 22px;
    }
    .header-nav {
        gap: 16px;
    }
    .header-nav a {
        font-size: 12px;
    }
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 32px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Simple Footer */
.simple-footer {
    margin-top: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.simple-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.simple-footer a:hover {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .simple-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Legacy Footer (kept for backward compat) */
.report-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-brand {
    font-weight: 600;
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Navigation Cards */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 800px) {
    .nav-grid { grid-template-columns: 1fr; }
}

.nav-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    gap: 16px;
}

.nav-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
}

.nav-card .num {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
}

.nav-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.nav-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pagination / Navigation Footer */
.nav-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.nav-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-footer a.prev {
    color: var(--text-secondary);
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

.nav-footer a.prev:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.nav-footer a.next {
    background: var(--accent);
    color: white;
}

.nav-footer a.next:hover {
    background: #4338ca;
}

/* Archetype Cards */
.archetype-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 800px) {
    .archetype-grid { grid-template-columns: 1fr; }
}

.archetype-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.archetype-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: var(--accent-border);
}

.archetype-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.archetype-badge.offline { background: #fef2f2; color: #dc2626; }
.archetype-badge.digital { background: #ecfdf5; color: #059669; }
.archetype-badge.intensive { background: #fffbeb; color: #d97706; }
.archetype-badge.light { background: #f0f4ff; color: #4f46e5; }

.archetype-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.archetype-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    min-height: 44px;
}

.state-list {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item .stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-item .stat-value.green {
    color: var(--success);
}

.stat-item .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Dual Chart Container */
.dual-chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 900px) {
    .dual-chart-container { grid-template-columns: 1fr; }
}

.dual-chart-panel {
    display: flex;
    flex-direction: column;
}

.dual-chart-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.dual-chart-panel .chart-wrapper {
    height: 280px;
}

/* Chart Source Attribution */
.chart-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
    font-size: 13px;
}

.chart-body .chart-source {
    grid-column: 1 / -1;
}

.chart-source .source-text {
    color: #94a3b8;
}

.chart-source .get-data {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.chart-source .get-data:hover {
    color: var(--accent-light);
}

.chart-source .get-data svg {
    width: 16px;
    height: 16px;
}

/* Chart Hidden State */
.chart-panel {
    display: none;
}

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

/* Product Analysis Grid */
.product-analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.product-title {
    flex: 1;
}

.product-title h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-tag.matured {
    background: #d1fae5;
    color: #047857;
}

.product-tag.growing {
    background: #fef3c7;
    color: #b45309;
}

.product-tag.aspirational {
    background: #dbeafe;
    color: #1d4ed8;
}

.product-tag.low {
    background: #f1f5f9;
    color: #64748b;
}

.product-penetration {
    text-align: right;
}

.penetration-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.penetration-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-chart-area {
    margin: 12px 0;
    height: 120px;
}

.product-insight {
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.product-insight p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-insight strong {
    color: var(--text-primary);
}

/* Ownership Depth Cards */
.ownership-depth-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.depth-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.depth-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depth-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.depth-icon.rural {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.depth-icon.urban {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.depth-chart-container {
    height: 200px;
    margin-bottom: 16px;
}

.depth-highlights {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.highlight-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
}

.highlight-stat.positive {
    background: #d1fae5;
}

.highlight-stat.negative {
    background: #fee2e2;
}

.highlight-stat .stat-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.highlight-stat.positive .stat-value {
    color: #047857;
}

.highlight-stat.negative .stat-value {
    color: #dc2626;
}

.highlight-stat .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Segment Legend Bar */
.segment-legend-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.segment-legend-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.segment-legend-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.segment-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.segment-abbr {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 2px 8px;
    border-radius: 4px;
}

.segment-full {
    font-size: 12px;
    color: var(--text-secondary);
}

.segment-legend-years {
    display: flex;
    gap: 16px;
    margin-left: auto;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.year-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.year-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.year-dot.light {
    background: #c7d2fe;
}

.year-dot.dark {
    background: #7c3aed;
}

/* Archetype Cards - Redesigned */
.archetype-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.archetype-card-new {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.archetype-card-new.offline-heavy {
    border: 1px solid #fecaca;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.archetype-card-new.digital-first {
    border: 1px solid #a7f3d0;
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.archetype-card-new.consumption-intensive {
    border: 1px solid #fde68a;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.archetype-card-new.asset-light {
    border: 1px solid #c7d2fe;
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
}

.archetype-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.archetype-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.archetype-icon svg {
    width: 24px;
    height: 24px;
}

.offline-heavy .archetype-icon svg { stroke: #ef4444; }
.digital-first .archetype-icon svg { stroke: #10b981; }
.consumption-intensive .archetype-icon svg { stroke: #f59e0b; }
.asset-light .archetype-icon svg { stroke: #4f46e5; }

.archetype-card-new h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.archetype-states {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.state-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-primary);
}

.offline-heavy .state-tag {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.digital-first .state-tag {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #047857;
}

.consumption-intensive .state-tag {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #b45309;
}

.asset-light .state-tag {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
    color: #4338ca;
}

.archetype-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.archetype-desc strong {
    color: var(--text-primary);
}

.archetype-metrics {
    display: flex;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 14px;
}

.archetype-metrics .metric {
    flex: 1;
}

.archetype-metrics .metric-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.offline-heavy .metric-value { color: #ef4444; }
.digital-first .metric-value { color: #10b981; }
.consumption-intensive .metric-value { color: #f59e0b; }
.asset-light .metric-value { color: #4f46e5; }

.archetype-metrics .metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.archetype-strategy {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.archetype-strategy strong {
    color: var(--text-primary);
}
