
:root {
  --bg: #0b0c10;
  --card: #12131a;
  --text: #e9eef7;
  --muted: #b9c2d0;
  --accent: #4ec3ff; /* TrueNorth accent */
  --badge: #24d08c;
  --brand: #c8192e;  /* subtle Canada red */
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif; }
.container { max-width: 1100px; margin: 0 auto; padding: 1rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header { border-bottom: 1px solid #1f2230; background: #0d0f16; position: sticky; top: 0; z-index: 10; }
.brand { margin: 0; font-size: 1.4rem; letter-spacing: .2px; }
.brand span { color: var(--brand); }
nav a { color: var(--muted); margin-left: 1rem; text-decoration: none; }
nav a:hover { color: var(--text); }
.intro p { margin-top: 0.5rem; color: var(--muted); }
.toolbar { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.toolbar input, .toolbar select { background: #0e1018; color: var(--text); border: 1px solid #1f2230; border-radius: 8px; padding: .5rem .6rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1rem; }
.card { background: var(--card); padding: 1rem; border-radius: 10px; border: 1px solid #1f2230; }
.card h3 { margin: 0 0 .25rem 0; font-size: 1.1rem; }
.meta { display: flex; gap: .5rem; align-items: center; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.badge { background: var(--badge); color: #042d1c; padding: .15rem .5rem; border-radius: 999px; font-weight: 600; }
.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; margin-top: .5rem; }
.metric { background: #0e1018; padding: .5rem; border-radius: 6px; }
.metric-key { color: var(--muted); display: block; font-size: .8rem; }
.metric-val { font-size: 1.1rem; font-weight: 700; }
.links { margin-top: .75rem; }
.links a { color: var(--accent); text-decoration: none; }
.links a:hover { text-decoration: underline; }
.empty { text-align: center; color: var(--muted); margin: 2rem 0; }
.site-footer { border-top: 1px solid #1f2230; color: var(--muted); }
.ad { margin: 2rem 0; text-align: center; }
/* Consent banner */
.consent { position: fixed; inset: auto 0 0 0; background: rgba(13,15,22,.95); border-top: 1px solid #1f2230; }
.consent-inner { max-width: 1100px; margin: 0 auto; padding: .8rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.consent-actions button { background: var(--brand); color: white; border: 0; border-radius: 8px; padding: .5rem .8rem; cursor: pointer; }
.consent-actions button:last-child { background: #0e1018; border: 1px solid #303244; }

