/* Leaderboard ranking page (premium light). */
.lb-wrap { max-width: 1000px; margin: 0 auto; padding: 30px 20px 80px; font-family: var(--font-family-base, 'Inter', system-ui, sans-serif); }
.lb-hero { text-align: center; margin-bottom: 22px; }
.lb-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.18); /* bleed-ok: chip on brand gradient */ border: 1px solid rgba(255,255,255,0.28); padding: 5px 13px; border-radius: 20px; margin-bottom: 12px; }
.lb-title { font-size: 38px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.lb-sub { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 700px; margin: 0 auto; }
.lb-sub a { color: #fff; text-decoration: underline; }

.lb-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.lb-tab { font-size: 13.5px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.14); /* bleed-ok: tab on brand gradient */ border: 1px solid rgba(255,255,255,0.25); padding: 8px 16px; border-radius: 20px; text-decoration: none; }
.lb-tab.is-on { background: #fff; color: #5a49bf; }

.lb-list { display: flex; flex-direction: column; gap: 10px; }
.lb-row {
    display: grid; grid-template-columns: 44px minmax(0,1fr) auto auto auto; gap: 16px; align-items: center;
    background: var(--color-surface-card, #fff); border: 1px solid var(--color-border-light, #e5e7eb);
    border-radius: 14px; padding: 12px 18px; box-shadow: 0 4px 16px rgba(91,76,178,0.06);
}
.lb-rank { font-size: 22px; font-weight: 800; color: #c7c2de; text-align: center; }
.lb-row:nth-child(1) .lb-rank { color: #f59e0b; }
.lb-row:nth-child(2) .lb-rank, .lb-row:nth-child(3) .lb-rank { color: #6366f1; }
.lb-firm { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.lb-logo { width: 42px; height: 42px; border-radius: 10px; object-fit: contain; background: #fff; border: 1px solid #f0eef8; flex: 0 0 auto; }
.lb-firm-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lb-firm-name { font-size: 15px; font-weight: 700; color: var(--color-text-primary, #1a1a2e); display: flex; align-items: center; gap: 7px; }
.lb-flag { width: 18px; height: auto; border-radius: 3px; }
.lb-rationale { font-size: 12px; color: #9a93b8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 360px; }
.lb-facts { display: flex; gap: 18px; }
.lb-fact { display: flex; flex-direction: column; }
.lb-fact-l { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.4px; color: #b3adc9; font-weight: 600; }
.lb-fact-v { font-size: 15px; font-weight: 800; color: var(--color-text-primary, #1a1a2e); }
.lb-cta { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #6d5ef0, #5a49bf); color: #fff; font-size: 13.5px; font-weight: 700; padding: 9px 16px; border-radius: 10px; text-decoration: none; white-space: nowrap; box-shadow: 0 3px 10px rgba(90,73,191,0.28); }
.lb-cta:hover { filter: brightness(1.06); color: #fff; }

@media (max-width: 760px) {
    .lb-title { font-size: 28px; }
    .lb-row { grid-template-columns: 32px 1fr auto; grid-template-areas: "rank firm score" "rank facts cta"; row-gap: 10px; }
    .lb-rank { grid-area: rank; } .lb-firm { grid-area: firm; } .lb-score { grid-area: score; }
    .lb-facts { grid-area: facts; } .lb-cta { grid-area: cta; }
    .lb-rationale { max-width: 200px; }
}
