/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #040A14;
    --blue: #1273E0;
    --blue-light: #E8F1FD;
    --red: #C90000;
    --bg: #F5F5F5;
    --surface: #FFFFFF;
    --text: #070707;
    --text-secondary: #727272;
    --text-light: #FFFFFF;
    --border: #E5E7EB;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.container-wide { max-width: 1440px; }

/* === Header === */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 40px;
}
.logo-group { display: flex; align-items: center; gap: 8px; }
.logo { height: 32px; width: auto; }
.logo-divider { color: #E0E0E0; font-weight: 300; font-size: 24px; }
.logo-text { font-weight: 800; font-size: 15px; color: #1A1A1A; text-transform: uppercase; letter-spacing: 1.5px; }
.nav { display: flex; gap: 34px; }
.nav-link {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--blue); }
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hiring-badge {
    display: inline-block;
    background: #2563EB;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1;
}

/* === Hero === */
.hero {
    background: var(--primary);
    color: var(--text-light);
    padding: 120px 0 100px;
    text-align: center;
}
.hero-title {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-meta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}
.badge-blue { background: var(--blue); color: white; }
.badge-dark { background: rgba(255,255,255,0.15); color: white; }
.badge-outline { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }

/* === Use Cases === */
.usecase-section { padding: 60px 0 40px; }
.usecase-intro { color: var(--text-secondary); margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.usecase-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.usecase-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.usecase-card.active { border-color: var(--blue); background: var(--blue-light); }
.usecase-icon { font-size: 32px; margin-bottom: 8px; }
.usecase-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.usecase-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

.usecase-result {
    margin-top: 32px;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.usecase-result-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.usecase-top3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.usecase-model {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
}
.usecase-model-rank {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--blue);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.usecase-model-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.usecase-model-provider { font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
.usecase-model-score {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}
.usecase-model-bar {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}
.usecase-model-bar-fill { height: 100%; border-radius: 3px; background: var(--blue); }
.usecase-model-why {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.usecase-model-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.usecase-cat-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--bg);
    font-weight: 500;
}

@media (max-width: 768px) {
    .usecase-top3 { grid-template-columns: 1fr; }
}

/* === Podium === */
.podium-section { padding: 60px 0 40px; }
.section-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.podium-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.podium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.podium-card.gold { border-top: 4px solid #FFD700; }
.podium-card.silver { border-top: 4px solid #C0C0C0; }
.podium-card.bronze { border-top: 4px solid #CD7F32; }
.podium-rank {
    font-size: 40px;
    margin-bottom: 8px;
}
.podium-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}
.podium-provider {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.podium-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.podium-score.score-high { background: #DCFCE7; color: #166534; }
.podium-score.score-mid { background: #FEF9C3; color: #854D0E; }
.podium-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Filter Bar === */
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text-secondary);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === Column Picker === */
.column-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.column-picker-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    white-space: nowrap;
}
.column-picker-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.col-pill {
    padding: 5px 14px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text-secondary);
    white-space: nowrap;
}
.col-pill:hover { border-color: var(--blue); color: var(--blue); }
.col-pill.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* Column visibility via CSS classes on container */
.hide-col-coding .col-coding,
.hide-col-reasoning .col-reasoning,
.hide-col-math .col-math,
.hide-col-writing .col-writing,
.hide-col-speed .col-speed,
.hide-col-eu .col-eu,
.hide-col-ctx .col-ctx,
.hide-col-price .col-price { display: none !important; }

/* === Rankings Table === */
.rankings-section { padding: 0 0 60px; }
.table-wrapper {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: auto;
}
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.rankings-table thead {
    background: var(--primary);
    color: var(--text-light);
}
.rankings-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.rankings-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.rankings-table tbody tr {
    cursor: pointer;
    transition: background 0.15s;
}
.rankings-table tbody tr:hover { background: var(--blue-light); }
.rankings-table tbody tr:last-child td { border-bottom: none; }

.rankings-table .col-name a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
}
.rankings-table .col-name a:hover {
    color: var(--blue);
}

/* Sortable headers */
.rankings-table th[data-sort] {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    position: relative;
}
.rankings-table th[data-sort]:hover {
    color: var(--blue-light);
}
.rankings-table th[data-sort]::after {
    content: '⇅';
    margin-left: 4px;
    font-size: 10px;
    opacity: 0.4;
}
.rankings-table th.sort-active::after {
    opacity: 1;
}
.rankings-table th.sort-desc::after {
    content: '↓';
}
.rankings-table th.sort-asc::after {
    content: '↑';
}

/* Sticky columns on mobile */
.col-rank { width: 50px; text-align: center !important; }
.col-name { min-width: 140px; }
.col-score { text-align: center !important; }
.col-bar { min-width: 120px; }

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    background: var(--bg);
}
.rank-1 { background: #FEF3C7; color: #92400E; }
.rank-2 { background: #F3F4F6; color: #4B5563; }
.rank-3 { background: #FED7AA; color: #9A3412; }

.model-name { font-weight: 600; }
.provider-tag {
    font-size: 11px;
    color: var(--text-secondary);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.score-cell {
    font-weight: 700;
    font-size: 16px;
}
.score-cell.high { color: #166534; }
.score-cell.mid { color: #854D0E; }
.score-cell.low { color: #991B1B; }

.score-bar-container {
    width: 100%;
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
}
.score-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}
.score-bar.high { background: linear-gradient(90deg, #22C55E, #16A34A); }
.score-bar.mid { background: linear-gradient(90deg, #EAB308, #CA8A04); }
.score-bar.low { background: linear-gradient(90deg, #EF4444, #DC2626); }

.cat-score { font-weight: 500; font-size: 13px; }
.cat-score.high { color: #166534; }
.cat-score.mid { color: #854D0E; }
.cat-score.low { color: #991B1B; }

.ctx-tag { font-size: 13px; font-weight: 500; }
.price-tag { font-size: 13px; color: var(--text-secondary); }

/* === Category Winners === */
.categories-section { padding: 60px 0; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.category-hero {
    width: 100%;
    height: 6px;
    border-radius: 12px 12px 0 0;
}
.category-card-body {
    padding: 20px;
}
.category-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    overflow: hidden;
}
.category-card:hover { transform: translateY(-2px); }
.category-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.category-winner {
    font-size: 20px;
    font-weight: 700;
}
.category-benchmarks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}
.category-benchmark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.bench-label {
    color: var(--text-secondary);
}
.bench-value {
    font-weight: 600;
    color: var(--text-primary);
}
.category-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.category-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

/* === Modal === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--surface);
    border-radius: var(--radius);
    max-width: 680px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.modal-close:hover { background: var(--bg); }
.modal-header { margin-bottom: 24px; }
.modal-model-name { font-size: 28px; font-weight: 800; }
.modal-provider { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.modal-desc { font-size: 15px; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }
.modal-overall {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
.modal-overall-score {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.modal-overall-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.modal-overall-bar {
    flex: 1;
    height: 12px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.modal-overall-bar-fill {
    height: 100%;
    border-radius: 6px;
}
.modal-categories { margin: 24px 0; }
.modal-cat-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.modal-cat-row:last-child { border-bottom: none; }
.modal-cat-name { width: 120px; font-weight: 600; font-size: 14px; }
.modal-cat-score { width: 40px; font-weight: 700; font-size: 14px; }
.modal-cat-bar { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; margin: 0 12px; }
.modal-cat-bar-fill { height: 100%; border-radius: 4px; }
.modal-cat-sources { margin-top: 4px; }
.modal-source-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--blue);
    background: var(--blue-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 2px 4px 2px 0;
    text-decoration: none;
    transition: background 0.2s;
}
.modal-source-tag:hover { background: #D1E5FE; }
.modal-pricing {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 24px;
    font-size: 14px;
}
.modal-pricing dt { font-weight: 500; color: var(--text-secondary); font-size: 12px; }
.modal-pricing dd { font-weight: 700; font-size: 18px; margin-top: 4px; }

/* === Archive === */
.archive-section { padding: 60px 0; }
.archive-intro { color: var(--text-secondary); margin-bottom: 24px; text-align: center; }
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.archive-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.archive-card:hover { opacity: 1; }
.archive-score {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    background: #F3F4F6;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.archive-info { flex: 1; }
.archive-name { font-weight: 600; font-size: 15px; }
.archive-meta { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.archive-badge {
    font-size: 11px;
    background: #FEF3C7;
    color: #92400E;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* === Sources === */
.sources-section {
    padding: 60px 0;
    background: var(--surface);
}
.sources-intro {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.source-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
}
.source-card:hover { border-color: var(--blue); }
.source-name { font-weight: 600; margin-bottom: 4px; }
.source-name a { color: var(--text); text-decoration: none; }
.source-name a:hover { color: var(--blue); }
.source-desc { font-size: 13px; color: var(--text-secondary); }

/* === Intro Section === */
.intro-section { padding: 60px 0 40px; background: var(--surface); }
.intro-text { max-width: 960px; margin: 0 auto; }
.intro-text p { 
    color: var(--text-secondary); 
    margin-bottom: 16px; 
    font-size: 16px; 
    line-height: 1.8; 
}
.intro-cta { 
    font-size: 18px !important; 
    color: var(--text) !important; 
    margin-top: 24px !important; 
}

/* === Methodik Section === */
.methodik-section { 
    padding: 60px 0; 
    background: var(--surface); 
}
.methodik-content { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: start; 
}
.methodik-text p { 
    color: var(--text-secondary); 
    margin-bottom: 16px; 
    line-height: 1.7; 
}
.scoring-table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 14px; 
}
.scoring-table th { 
    background: var(--primary); 
    color: white; 
    padding: 12px 16px; 
    text-align: left; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.scoring-table td { 
    padding: 14px 16px; 
    border-bottom: 1px solid var(--border); 
}

/* === FAQ Section === */
.faq-section { padding: 60px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { 
    border-bottom: 1px solid var(--border); 
    padding: 0; 
}
.faq-question { 
    cursor: pointer; 
    padding: 20px 0; 
    list-style: none; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question h3 { 
    font-size: 16px; 
    font-weight: 600; 
    margin: 0; 
}
.faq-question::after { 
    content: '+'; 
    font-size: 24px; 
    font-weight: 300; 
    color: var(--text-secondary); 
    transition: transform 0.2s; 
}
details[open] .faq-question::after { 
    content: '−'; 
}
.faq-answer { 
    padding: 0 0 20px; 
}
.faq-answer p { 
    color: var(--text-secondary); 
    line-height: 1.7; 
}

@media (max-width: 768px) {
    .methodik-content { grid-template-columns: 1fr; }
}

/* === Footer === */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 24px;
    font-size: 13px;
}
.footer-content {
    display: flex;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about { flex: 1; }
.footer-logo { height: 24px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-text { line-height: 1.7; max-width: 600px; }
.footer-links a { color: var(--blue); text-decoration: none; font-weight: 500; white-space: nowrap; }
.footer-bottom { font-size: 12px; }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; }
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .hero { padding: 60px 0 48px; }

    /* Sticky first two columns */
    .table-wrapper {
        position: relative;
    }
    .table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 24px;
        background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
        pointer-events: none;
        z-index: 2;
    }
    .rankings-table .col-rank,
    .rankings-table .col-name {
        position: sticky;
        z-index: 1;
    }
    .rankings-table .col-rank {
        left: 0;
    }
    .rankings-table .col-name {
        left: 50px;
    }
    .rankings-table thead .col-rank,
    .rankings-table thead .col-name {
        z-index: 3;
        background: var(--primary);
    }
    .rankings-table tbody .col-rank,
    .rankings-table tbody .col-name {
        background: var(--surface);
    }
    .rankings-table tbody tr:hover .col-rank,
    .rankings-table tbody tr:hover .col-name {
        background: var(--blue-light);
    }
    /* Shadow on sticky edge */
    .rankings-table .col-name::after {
        content: '';
        position: absolute;
        top: 0;
        right: -8px;
        bottom: 0;
        width: 8px;
        background: linear-gradient(to right, rgba(0,0,0,0.06), transparent);
        pointer-events: none;
    }
    .podium { grid-template-columns: 1fr; }
    .nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 24px 40px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    .nav.open { display: flex; }
    .nav .nav-link {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid #E0E0E0;
    }
    .hamburger { display: flex; }
    .rankings-table { font-size: 12px; }
    .rankings-table th, .rankings-table td { padding: 10px 8px; }
    .modal { padding: 24px; }
    .modal-pricing { flex-direction: column; gap: 12px; }
}

/* Column Picker mobile */
@media (max-width: 768px) {
    .column-picker-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
}

/* EU Compliant Column */
.col-eu { min-width: 120px; }
.eu-tooltip { cursor: help; display: inline-block; padding: 4px 8px; border-radius: 3px; font-size: 13px; font-weight: 600; }
.eu-yes { background: #ecfdf5; color: #065f46; }
.eu-partial { background: #fefce8; color: #854d0e; }
.eu-no { background: #fef2f2; color: #991b1b; }
