/* ===========================================================================
   DimeClip — Mobile Report design system
   Premium broadcast aesthetic: deep navy, gold + electric-blue accents, dense
   stat grids, ESPN-style callouts. Mobile-first; scales up to a centered column.
   Scoped to the report view (report.html) so the index/login page is unaffected.
   =========================================================================== */
:root {
  --bg: #060d18;
  --bg-2: #08121f;
  --surface: #0c1a2e;
  --surface-2: #0f2138;
  --line: rgba(96, 140, 200, 0.18);
  --line-strong: rgba(96, 140, 200, 0.30);
  --text: #eaf2fb;
  --text-dim: #93a8c4;
  --text-faint: #5d7191;
  --gold: #ffc23d;
  --gold-soft: rgba(255, 194, 61, 0.14);
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.16);
  --green: #2bd47d;
  --red: #f2724b;
  --purple: #a855f7;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 18px 40px rgba(2, 8, 20, 0.55);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body[data-page="report"] {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -180px, #11243f 0%, rgba(17, 36, 63, 0) 60%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "SF Pro Display", system-ui, -apple-system, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.report-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 14px 64px;
}

/* ── Top bar ─────────────────────────────────────────────────────────────── */
.report-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 10px;
  background: linear-gradient(180deg, var(--bg) 70%, rgba(6, 13, 24, 0));
}
.report-topbar .back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.report-topbar .back-link:hover { color: var(--text); }
.report-brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Demo banner ─────────────────────────────────────────────────────────── */
.demo-banner {
  margin: 0 0 10px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-align: center;
}

/* ── Hero scoreboard ─────────────────────────────────────────────────────── */
.scoreboard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(140% 120% at 0% 0%, #123b73 0%, rgba(18, 59, 115, 0) 55%),
    linear-gradient(180deg, #0c1f38, #081320);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
}
.scoreboard .eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.scoreboard .eyebrow .label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.result-pill {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 4px 11px;
  border-radius: 999px;
}
.result-pill.win { background: rgba(43, 212, 125, 0.16); color: var(--green); border: 1px solid rgba(43, 212, 125, 0.4); }
.result-pill.loss { background: rgba(242, 114, 75, 0.16); color: var(--red); border: 1px solid rgba(242, 114, 75, 0.4); }

.score-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.score-side { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 0; }
.score-side.home { align-items: flex-start; }
.score-side.away { align-items: flex-end; }
.team-crest {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 900;
  color: #fff;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, #16365f, #0a1626);
}
.team-name {
  font-size: 13px; font-weight: 800; letter-spacing: 0.3px;
  color: var(--text); text-align: center; max-width: 130px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.score-num {
  font-size: 52px; font-weight: 900; line-height: 0.9; letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.score-side.win-num .score-num { color: var(--gold); }
.score-mid { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-faint); }
.score-mid .dash { font-size: 24px; font-weight: 900; color: var(--text-dim); }
.score-meta { margin-top: 12px; text-align: center; color: var(--text-dim); font-size: 12px; font-weight: 700; }

/* line score (quarters) */
.linescore { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 10px; overflow-x: auto; }
.linescore table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.linescore th, .linescore td { padding: 5px 6px; text-align: center; font-size: 12px; }
.linescore th { color: var(--text-faint); font-weight: 800; font-size: 10px; letter-spacing: 0.6px; }
.linescore td { color: var(--text); font-weight: 700; }
.linescore td:first-child, .linescore th:first-child { text-align: left; color: var(--text-dim); }
.linescore td.total { color: var(--gold); font-weight: 900; }

/* ── Tab bar ─────────────────────────────────────────────────────────────── */
.tabbar {
  position: sticky;
  top: 44px;
  z-index: 30;
  display: flex;
  gap: 6px;
  margin: 12px -14px 14px;
  padding: 8px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(180deg, var(--bg) 78%, rgba(6, 13, 24, 0));
  -webkit-overflow-scrolling: touch;
}
.tabbar::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 13px; font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.tab:hover { color: var(--text); border-color: var(--line-strong); }
.tab.active {
  color: #07111f; background: var(--gold); border-color: var(--gold);
}

.tab-panel { display: none; animation: fade 0.2s ease; }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ── Cards & sections ────────────────────────────────────────────────────── */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: 16px;
  margin: 0 0 14px;
}
.panel-title {
  display: flex; align-items: center; gap: 9px;
  margin: 0 0 14px;
  font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-dim);
}
.panel-title .accent { width: 4px; height: 15px; border-radius: 2px; background: var(--gold); }
.panel-title.blue .accent { background: var(--blue); }
.panel-title.green .accent { background: var(--green); }
.panel-title.purple .accent { background: var(--purple); }

/* story / takeaways */
.story-list { display: flex; flex-direction: column; gap: 10px; }
.story-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
}
.story-item .ico { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--gold-soft); color: var(--gold); font-size: 14px; font-weight: 900; }
.story-item p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--text); font-weight: 600; }

/* four-factors / efficiency strip */
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 460px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }
.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
  padding: 12px;
}
.metric .k { font-size: 10px; font-weight: 900; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-faint); }
.metric .v { font-size: 26px; font-weight: 900; letter-spacing: -0.5px; margin-top: 4px; font-variant-numeric: tabular-nums; }
.metric .d { font-size: 11px; font-weight: 700; color: var(--text-dim); margin-top: 2px; }
.metric .bar { margin-top: 9px; height: 5px; border-radius: 3px; background: rgba(96, 140, 200, 0.15); overflow: hidden; }
.metric .bar > span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--gold)); }

/* leader cards */
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.leader {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
  padding: 12px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.leader .cat { font-size: 9px; font-weight: 900; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-faint); }
.leader .avatar {
  width: 46px; height: 46px; margin: 8px auto 6px; border-radius: 13px;
  display: grid; place-items: center; font-size: 16px; font-weight: 900; color: #fff;
  background: linear-gradient(160deg, #1d4ed8, #0a1626);
  border: 1px solid var(--line-strong);
  background-size: cover; background-position: center;
}
.leader .big { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.leader .unit { font-size: 9px; font-weight: 900; color: var(--text-dim); letter-spacing: 0.5px; }
.leader .who { margin-top: 5px; font-size: 12px; font-weight: 800; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Box score table ─────────────────────────────────────────────────────── */
.boxscore-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
table.boxscore { width: 100%; min-width: 560px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.boxscore th, table.boxscore td { padding: 10px 8px; text-align: right; font-size: 13px; white-space: nowrap; }
table.boxscore thead th {
  position: sticky; top: 0;
  font-size: 10px; font-weight: 900; letter-spacing: 0.6px; color: var(--text-dim);
  background: var(--surface-2); cursor: pointer; user-select: none;
  border-bottom: 2px solid var(--line-strong);
}
table.boxscore thead th.sorted { color: var(--gold); }
table.boxscore th.player, table.boxscore td.player {
  text-align: left; position: sticky; left: 0;
  background: var(--surface); min-width: 150px;
  box-shadow: 1px 0 0 var(--line);
}
table.boxscore tbody td { border-bottom: 1px solid var(--line); color: var(--text); font-weight: 700; }
table.boxscore tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.012); }
table.boxscore tbody tr:nth-child(even) td.player { background: var(--bg-2); }
table.boxscore td.pts { color: var(--gold); font-weight: 900; }
table.boxscore .pm-pos { color: var(--green); font-weight: 800; }
table.boxscore .pm-neg { color: var(--red); font-weight: 800; }
table.boxscore tfoot td { padding: 10px 8px; font-weight: 900; color: var(--text-dim); border-top: 2px solid var(--line-strong); background: #0a1626; }
table.boxscore tfoot td.player { background: #0a1626; }
.player-cell { display: flex; align-items: center; gap: 9px; }
.player-cell .pa {
  width: 30px; height: 30px; flex: 0 0 auto; border-radius: 9px;
  background: linear-gradient(160deg, #1d4ed8, #0a1626); background-size: cover; background-position: center;
  border: 1px solid var(--line); display: grid; place-items: center; font-size: 11px; font-weight: 900; color: #cfe0f5;
}
.player-cell .pn { display: flex; flex-direction: column; line-height: 1.15; }
.player-cell .pn b { font-size: 13px; font-weight: 800; }
.player-cell .pn small { font-size: 10px; color: var(--text-faint); font-weight: 700; }

/* ── Player advanced cards ───────────────────────────────────────────────── */
.player-cards { display: flex; flex-direction: column; gap: 10px; }
.pcard {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6); padding: 12px 13px;
}
.pcard .head { display: flex; align-items: center; gap: 11px; }
.pcard .pa { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(160deg, #1d4ed8, #0a1626); background-size: cover; background-position: center; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 14px; font-weight: 900; color: #cfe0f5; }
.pcard .nm { flex: 1 1 auto; min-width: 0; }
.pcard .nm b { font-size: 15px; font-weight: 900; }
.pcard .nm small { display: block; font-size: 11px; color: var(--text-faint); font-weight: 700; }
.pcard .pts-badge { text-align: right; }
.pcard .pts-badge b { font-size: 24px; font-weight: 900; color: var(--gold); font-variant-numeric: tabular-nums; }
.pcard .pts-badge small { display: block; font-size: 9px; color: var(--text-dim); font-weight: 900; letter-spacing: 0.6px; }
.pcard .adv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--line); }
.pcard .adv .a { text-align: center; }
.pcard .adv .a .k { font-size: 9px; font-weight: 900; letter-spacing: 0.5px; color: var(--text-faint); text-transform: uppercase; }
.pcard .adv .a .v { font-size: 15px; font-weight: 900; margin-top: 2px; font-variant-numeric: tabular-nums; }
.pcard .grade-summary {
  margin: 10px 0 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 194, 61, 0.18);
  border-radius: 10px;
  background: rgba(255, 194, 61, 0.06);
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

/* coach packet */
.coach-brief {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 61, 0.30);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(255, 194, 61, 0.16), rgba(255, 194, 61, 0) 54%),
    linear-gradient(180deg, #0d213b, #081320);
  box-shadow: var(--shadow);
  padding: 17px 16px;
  margin-bottom: 14px;
}
.coach-brief .tag {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(255, 194, 61, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.coach-brief h2 {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: none;
}
.coach-brief p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}
.confidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}
.confidence-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 18, 31, 0.58);
  color: var(--text);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2px;
}
.coach-notes,
.priority-list,
.grade-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coach-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
  padding: 12px 13px;
}
.coach-note b,
.priority b {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.coach-note p,
.priority p,
.grade-card p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 600;
}
.priority {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
  padding: 12px 13px;
}
.priority > span {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #07111f;
  background: var(--green);
  font-size: 13px;
  font-weight: 950;
}
.grade-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6);
  padding: 12px 13px;
}
.grade-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.grade-top b {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}
.grade-top small {
  display: block;
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.grade-badge {
  min-width: 52px;
  border: 1px solid rgba(255, 194, 61, 0.28);
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  padding: 7px 7px 6px;
  font-variant-numeric: tabular-nums;
}
.grade-badge span {
  display: block;
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 900;
}
.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.evidence-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.09);
  color: #b9d4ff;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 850;
}
.watch {
  margin-top: 10px;
  border-left: 3px solid var(--red);
  border-radius: 8px;
  background: rgba(242, 114, 75, 0.08);
  color: #ffb59f;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

/* ── Shot chart ──────────────────────────────────────────────────────────── */
.shotchart-wrap { display: flex; flex-direction: column; align-items: center; }
.shotchart { width: 100%; max-width: 420px; aspect-ratio: 1 / 0.94; }
.shot-legend { display: flex; gap: 18px; justify-content: center; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--text-dim); }
.shot-legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.shot-legend .made { background: var(--green); }
.shot-legend .miss { background: transparent; border: 2px solid var(--red); width: 8px; height: 8px; }

.splits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.split { text-align: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(8,18,31,0.6); padding: 11px 8px; }
.split .k { font-size: 9px; font-weight: 900; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-faint); }
.split .v { font-size: 20px; font-weight: 900; margin-top: 3px; font-variant-numeric: tabular-nums; }
.split .p { font-size: 11px; font-weight: 800; color: var(--gold); margin-top: 1px; }

/* ── Lineups ─────────────────────────────────────────────────────────────── */
.lineup-list { display: flex; flex-direction: column; gap: 10px; }
.lineup {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(8, 18, 31, 0.6); padding: 12px 13px;
}
.lineup .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.lineup .names { font-size: 13px; font-weight: 800; color: var(--text); line-height: 1.35; }
.lineup .pm { font-size: 22px; font-weight: 900; font-variant-numeric: tabular-nums; flex: 0 0 auto; }
.lineup .pm.pos { color: var(--green); } .lineup .pm.neg { color: var(--red); }
.lineup .meta { margin-top: 8px; display: flex; gap: 14px; font-size: 11px; font-weight: 700; color: var(--text-dim); }
.lineup .pmbar { margin-top: 9px; height: 6px; border-radius: 3px; background: rgba(96,140,200,0.12); position: relative; overflow: hidden; }
.lineup .pmbar > span { position: absolute; top: 0; bottom: 0; left: 50%; border-radius: 3px; }
.lineup .pmbar > span.pos { background: var(--green); } .lineup .pmbar > span.neg { background: var(--red); transform: translateX(-100%); }

/* ── Game flow ───────────────────────────────────────────────────────────── */
.flow-wrap { width: 100%; }
.flow-chart { width: 100%; height: 200px; }
.run-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.run { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(8,18,31,0.6); }
.run .badge { font-size: 14px; font-weight: 900; padding: 3px 9px; border-radius: 8px; font-variant-numeric: tabular-nums; }
.run .badge.us { background: rgba(43,212,125,0.16); color: var(--green); }
.run .badge.them { background: rgba(242,114,75,0.16); color: var(--red); }
.run .txt { font-size: 13px; font-weight: 700; color: var(--text); }
.run .txt small { display: block; color: var(--text-faint); font-weight: 700; font-size: 11px; }

/* ── AI report ───────────────────────────────────────────────────────────── */
.ai-hero {
  border: 1px solid rgba(255, 194, 61, 0.34);
  border-radius: var(--radius);
  background: radial-gradient(120% 100% at 0% 0%, rgba(255,194,61,0.10), rgba(255,194,61,0) 55%), linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: 16px; margin-bottom: 14px;
}
.ai-hero .tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 900; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }
.ai-hero h2 { margin: 8px 0 0; font-size: 20px; font-weight: 900; letter-spacing: -0.3px; }
.ai-insight { display: flex; gap: 12px; align-items: flex-start; padding: 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(8,18,31,0.6); margin-bottom: 10px; }
.ai-insight .ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--blue-soft); color: #8ec0ff; font-size: 15px; }
.ai-insight .body b { font-size: 14px; font-weight: 900; }
.ai-insight .body p { margin: 3px 0 0; font-size: 13px; line-height: 1.45; color: var(--text-dim); font-weight: 600; }
.ai-prose p { font-size: 14px; line-height: 1.6; color: var(--text); font-weight: 500; margin: 0 0 12px; }
.ai-locked { text-align: center; padding: 22px 14px; color: var(--text-dim); }
.ai-locked .lock { font-size: 26px; }
.ai-locked h2 { margin: 8px 0 4px; font-size: 17px; color: var(--text); }

.empty-state { text-align: center; color: var(--text-faint); font-size: 13px; font-weight: 700; padding: 22px 12px; }
.footer-note { text-align: center; color: var(--text-faint); font-size: 11px; font-weight: 700; margin-top: 22px; }
