:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --text: #18212b;
  --muted: #647180;
  --line: #d7dee7;
  --accent: #145da0;
  --accent-dark: #0f477a;
  --ok: #0b7a4b;
  --partial: #9a6500;
  --error: #b42318;
  --shadow: 0 8px 28px rgba(24, 33, 43, .08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); line-height: 1.55; }
a { color: var(--accent); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--accent-dark); }
.wrap { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(10px); }
.header-row { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-weight: 750; color: var(--text); text-decoration: none; }
.updated, .muted { color: var(--muted); }
main.wrap { padding: 26px 0 48px; }
.site-footer { border-top: 1px solid var(--line); background: var(--surface); color: var(--muted); padding: 22px 0; }
.hero { margin: 0 0 22px; padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, #fff, #edf4fb); box-shadow: var(--shadow); }
.hero h1 { margin: 4px 0 8px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; }
.hero p { max-width: 960px; }
.eyebrow { margin: 0; letter-spacing: .12em; font-size: .76rem; font-weight: 800; color: var(--accent); }
.button { display: inline-block; padding: 10px 16px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 700; text-decoration: none; }
.button:hover { color: #fff; background: var(--accent-dark); }
.source-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.source-tab { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); text-decoration: none; }
.source-tab.active { color: #fff; background: var(--accent); border-color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 10px; border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: .86rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-bottom: 20px; }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid.cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.card { margin: 0 0 20px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 3px 18px rgba(24,33,43,.045); }
.card.compact { padding: 16px 20px; }
.card h2 { margin-top: 0; }
.metric { min-height: 128px; display: flex; flex-direction: column; justify-content: center; gap: 7px; margin: 0; }
.metric span { color: var(--muted); font-size: .83rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.metric strong { font-size: 1.35rem; overflow-wrap: anywhere; }
.metric small { color: var(--muted); }
.metric-link { color: var(--text); text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.metric-link:hover { color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }
.warning { border-color: #e6c069; background: #fff9e8; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th, td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); background: var(--surface-soft); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
tbody tr:hover { background: #f9fbfd; }
.small-table { font-size: .88rem; }
.report-table td:nth-child(4) { min-width: 280px; }
.status, .source { display: inline-flex; align-items: center; width: fit-content; padding: 3px 8px; border-radius: 999px; font-size: .76rem; font-weight: 750; }
.status-ok { color: #065f3c; background: #dff5e9; }
.status-partial { color: #7a5100; background: #fff0c7; }
.status-error { color: #8f1d15; background: #fde3e0; }
.source { color: #334155; background: #e8edf3; }
.source-nasdaq-report, .source-nasdaq { color: #004f7a; background: #dceff8; }
.source-mfn { color: #6d3c00; background: #fff0d8; }
.source-sec { color: #5a2a82; background: #efe3f8; }
.document-list { display: grid; gap: 12px; }
.document-row { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.document-row:last-child { border-bottom: 0; }
.document-row h3 { margin: 6px 0 0; font-size: 1rem; }
.doc-links { display: flex; flex-wrap: wrap; gap: 9px; align-items: flex-start; }
.document-text { white-space: pre-wrap; overflow-wrap: anywhere; max-height: 70vh; overflow: auto; padding: 14px; border-radius: 8px; background: #101822; color: #e8edf3; }
details { margin: 10px 0; }
summary { cursor: pointer; font-weight: 650; }
.source-screenshot { display: block; max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; }
.ownership-view { margin-top: 24px; }
@media (max-width: 1050px) {
  .grid, .grid.cols-4, .grid.cols-5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 20px, 1440px); }
  .header-row, .section-heading, .document-row { align-items: flex-start; flex-direction: column; }
  .updated { font-size: .78rem; }
  .hero, .card { padding: 18px; border-radius: 12px; }
  .grid, .grid.cols-4, .grid.cols-5 { grid-template-columns: 1fr; }
  th, td { padding: 9px; }
}
