
  /* ─── RESET & ROOT ─────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }

  :root {
    --black:      #07080C;
    --amber:      #C8A84B;
    --white:      #FFFFFF;
    --stone:      #BAB2A8;
    --off-black:  #1A1A1A;
    --dark-grey:  #111115;
    --panel:      #0E0F14;
    --light:      #F2F2F0;
    --border:     rgba(255,255,255,0.07);
    --border-l:   rgba(255,255,255,0.04);
    --amber-soft: rgba(200,168,75,0.10);
    --amber-line: rgba(200,168,75,0.35);
    --against:    #B5544A;

    --font-d: 'Playfair Display', Georgia, serif;
    --font-u: 'Poppins', Arial, Helvetica, sans-serif;

    --header-h: 60px;
    --max-w: 1200px;
    --pad-x: 56px;
  }

  body {
    font-family: var(--font-u);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }

  .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

  /* ─── TYPE ─────────────────────────── */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; font-weight: 600; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--amber);
  }
  .eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px;
    background: var(--amber); flex-shrink: 0;
  }
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--amber); margin-bottom: 22px;
    display: inline-flex; align-items: center; gap: 14px;
  }
  .section-label::before {
    content: ''; width: 28px; height: 1px; background: var(--amber); flex-shrink: 0;
  }
  h1 {
    font-family: var(--font-d); font-weight: 700; font-style: italic;
    font-size: clamp(46px, 6.5vw, 82px); line-height: 1.0;
    letter-spacing: -0.025em; color: var(--white);
  }
  h2 {
    font-family: var(--font-d); font-weight: 700;
    font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12;
    letter-spacing: -0.015em; color: var(--white);
  }
  .kicker {
    font-family: var(--font-u); font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  }
  p.body { font-size: 16.5px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.82); }

  /* ─── HEADER (Ruckus chrome) ─────────────────── */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h); display: flex; align-items: center;
    background: rgba(7,8,12,0.94);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); transition: height .3s, background .3s;
  }
  .site-header.scrolled { height: 52px; background: rgba(7,8,12,0.98); }
  .header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .header-logo { display: flex; align-items: center; gap: 13px; }
  .header-mark { height: 26px; width: auto; }
  .header-wordmark {
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,0.9);
  }
  .header-back {
    font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); display: inline-flex; align-items: center; gap: 8px;
    transition: color .2s;
  }
  .header-back:hover { color: var(--amber); }
  .header-back::after { content: '↗'; }

  /* ─── REPORT NAV (top pills) ─────────────────── */
  .report-nav {
    padding: calc(var(--header-h) + 44px) 0 0;
  }
  .report-nav-inner {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  }
  .rpill {
    font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
    padding: 12px 22px; border: 1px solid var(--border);
    color: rgba(255,255,255,0.55); background: var(--panel);
    transition: color .2s, border-color .2s, background .2s; cursor: pointer;
  }
  .rpill:hover { color: var(--white); border-color: var(--amber-line); }
  .rpill.active {
    background: var(--amber); color: var(--black); border-color: var(--amber);
  }

  /* ─── HERO ─────────────────── */
  .hero { padding: 76px 0 60px; text-align: center; }
  .hero .eyebrow { justify-content: center; margin-bottom: 26px; }
  .hero h1 { margin-bottom: 26px; }
  .hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.6);
    max-width: 620px; margin: 0 auto;
  }
  .hero-sub strong { color: var(--stone); font-weight: 400; }

  /* ─── SUBTABS ─────────────────── */
  .subtabs-shell {
    border: 1px solid var(--border); background: linear-gradient(180deg, #0C0D12 0%, #08090D 100%);
    max-width: var(--max-w); margin: 28px auto 96px; border-radius: 4px; overflow: hidden;
  }
  .subtabs {
    display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
    padding: 26px 26px 0; border-bottom: 1px solid var(--border);
  }
  .subtab {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5);
    padding: 12px 22px 20px; cursor: pointer; position: relative;
    transition: color .2s; background: none; border: none; font-family: var(--font-u);
  }
  .subtab:hover { color: var(--white); }
  .subtab.active { color: var(--amber); }
  .subtab.active::after {
    content: ''; position: absolute; left: 22px; right: 22px; bottom: -1px;
    height: 2px; background: var(--amber);
  }
  .panel-body { padding: 62px 56px; }
  .panel { display: none; }
  .panel.active { display: block; animation: fade .4s ease; }
  @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  /* ─── SHARED CONTENT BLOCKS ─────────────────── */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
  .two-col.rule > *:first-child { padding-right: 12px; }
  .two-col.rule { position: relative; }
  .two-col.rule::before {
    content: ''; position: absolute; left: 50%; top: 4px; bottom: 4px;
    width: 1px; background: var(--border);
  }
  .lede { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.62); margin-bottom: 40px; max-width: 46ch; }
  .numbered { font-family: var(--font-d); font-style: italic; font-size: 22px; color: var(--white); margin: 40px 0 18px; }
  .numbered:first-of-type { margin-top: 0; }
  .numbered .n { color: var(--amber); font-style: normal; font-weight: 700; margin-right: 6px; }

  .quotecard {
    border: 1px solid var(--border); border-left: 2px solid var(--amber);
    background: linear-gradient(120deg, var(--amber-soft), transparent 70%);
    padding: 26px 30px; border-radius: 3px;
  }
  .quotecard .qlabel {
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 14px;
  }
  .quotecard p {
    font-family: var(--font-d); font-style: italic; font-size: 17px; line-height: 1.7;
    color: rgba(255,255,255,0.9);
  }
  .quotecard.plain p { font-style: italic; }

  .idlist { }
  .idrow { padding: 24px 0; border-bottom: 1px solid var(--border-l); }
  .idrow:first-child { padding-top: 0; }
  .idrow:last-child { border-bottom: none; }
  .idrow h4 {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 600; letter-spacing: .3px; color: var(--white); margin-bottom: 10px;
  }
  .idrow h4 .ic { color: var(--amber); font-size: 15px; }
  .idrow p { font-size: 14.5px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.66); }

  /* narrative */
  .story p { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.82); margin-bottom: 20px; }
  .story p:last-child { margin-bottom: 0; }
  .story .em { color: var(--amber); font-style: italic; }

  .timeline { position: relative; padding-left: 30px; }
  .timeline::before { content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
  .tl-item { position: relative; padding-bottom: 34px; }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-item::before {
    content: ''; position: absolute; left: -30px; top: 5px; width: 11px; height: 11px;
    border-radius: 50%; background: var(--black); border: 2px solid var(--amber);
  }
  .tl-item h4 { font-size: 15px; font-weight: 600; color: var(--amber); margin-bottom: 10px; }
  .tl-item p { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.66); }

  .sidecard {
    border: 1px solid var(--border); background: var(--panel);
    padding: 28px 30px; border-radius: 4px; margin-bottom: 22px;
  }
  .sidecard:last-child { margin-bottom: 0; }
  .sidecard h4 {
    font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
    color: var(--white); margin-bottom: 18px;
  }
  .sidecard ul { list-style: none; }
  .sidecard li {
    font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.72);
    padding-left: 20px; position: relative; margin-bottom: 14px;
  }
  .sidecard li:last-child { margin-bottom: 0; }
  .sidecard li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

  .arc { margin-top: 56px; border: 1px solid var(--border); border-radius: 4px; padding: 40px; background: var(--dark-grey); }
  .arc-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--stone); margin-bottom: 26px; }
  .arc-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
  .arc-box { border: 1px solid var(--border); border-radius: 4px; padding: 26px 28px; background: var(--panel); }
  .arc-box.to { border-color: var(--amber-line); background: linear-gradient(140deg, var(--amber-soft), transparent 75%); }
  .arc-box .btag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
  .arc-box.to .btag { color: var(--amber); }
  .arc-box p { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.82); }
  .arc-arrow { font-family: var(--font-d); font-size: 32px; color: var(--amber); }

  /* messaging */
  .stand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 14px; }
  .stand h4 { font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; margin-bottom: 20px; }
  .stand.for h4 { color: var(--amber); }
  .stand.against h4 { color: var(--against); }
  .stand ul { list-style: none; }
  .stand li {
    font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,0.82);
    padding: 14px 0 14px 30px; border-bottom: 1px solid var(--border-l); position: relative;
  }
  .stand li:last-child { border-bottom: none; }
  .stand.for li::before { content: '✓'; position: absolute; left: 0; top: 13px; color: var(--amber); font-weight: 700; }
  .stand.against li::before { content: '✕'; position: absolute; left: 0; top: 13px; color: var(--against); font-weight: 700; font-size: 13px; }

  .persoscard { border: 1px solid var(--border); border-left: 2px solid var(--amber); background: var(--panel); padding: 20px 24px; border-radius: 3px; margin-bottom: 16px; font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,0.85); }
  .persoscard:last-child { margin-bottom: 0; }

  .tl-areas { border: 1px solid var(--border); border-radius: 4px; padding: 30px 32px; background: var(--dark-grey); }
  .tl-areas h4 { font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
  .tl-areas ul { list-style: none; }
  .tl-areas li { font-size: 14.5px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.72); padding: 12px 0 12px 20px; position: relative; border-bottom: 1px solid var(--border-l); }
  .tl-areas li:last-child { border-bottom: none; }
  .tl-areas li::before { content: ''; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

  .center-label { text-align: center; margin: 68px 0 40px; }
  .tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
  .tri h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
  .tri p { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.66); margin-bottom: 16px; }
  .tri p:last-child { margin-bottom: 0; }
  .tri .em { color: var(--amber); font-style: italic; }

  .speak {
    margin-top: 60px; border: 1px solid var(--border); border-radius: 4px;
    padding: 34px 36px; background: linear-gradient(120deg, var(--amber-soft), transparent 70%);
    border-left: 2px solid var(--amber);
  }
  .speak h4 { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
  .speak p { font-size: 15.5px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.82); }

  /* ─── FOOTER (minimal shell) ─────────────────── */
  footer { border-top: 1px solid var(--border); padding: 40px 0; }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
  .footer-legal { font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-right { text-align: right; }
  .footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 8px; }
  .footer-brand svg { height: 24px; }
  .footer-wordmark { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
  .footer-tagline { font-family: var(--font-d); font-style: italic; font-size: 16px; color: var(--stone); }

  /* ─── RESPONSIVE ─────────────────── */
  @media (max-width: 900px) {
    :root { --pad-x: 28px; }
    .panel-body { padding: 44px 28px; }
    .two-col, .stand-grid, .tri { grid-template-columns: 1fr; gap: 40px; }
    .two-col.rule::before { display: none; }
    .arc-grid { grid-template-columns: 1fr; }
    .arc-arrow { transform: rotate(90deg); justify-self: center; }
    .footer-inner { flex-direction: column-reverse; text-align: center; gap: 22px; }
    .footer-right { text-align: center; }
    .footer-brand { justify-content: center; }
  }
  @media (max-width: 560px) {
    .report-nav { padding-top: calc(var(--header-h) + 28px); }
    .rpill { padding: 10px 16px; font-size: 11px; }
    .header-wordmark { display: none; }
  }
  
  /* ═══════════════════════════════════════════════════════
     REPORT COMPONENTS — added for the full brand report build
     (block types rendered by build.mjs — see SCHEMA.md)
     ═══════════════════════════════════════════════════════ */

  /* nav pills as links */
  a.rpill { display: inline-block; }

  /* generic headings inside panels */
  .block-heading {
    font-family: var(--font-d); font-weight: 700; font-size: 24px;
    line-height: 1.2; color: var(--white); margin: 46px 0 20px;
  }
  .block-heading:first-child { margin-top: 0; }
  .block-sub {
    font-size: 13px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase;
    color: var(--stone); margin: 38px 0 18px;
  }
  .divider { height: 1px; background: var(--border); margin: 52px 0; border: none; }
  .note {
    font-size: 13.5px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5);
    border-left: 1px solid var(--amber-line); padding-left: 16px; margin: 24px 0;
  }
  .blocks > *:first-child { margin-top: 0; }

  /* stat row */
  .stats {
    display: flex; flex-wrap: wrap;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 4px; overflow: hidden; margin: 34px 0;
  }
  .stat {
    flex: 1 1 170px; padding: 26px 24px;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin: -1px -1px 0 0;
  }
  .stat .v {
    font-family: var(--font-d); font-weight: 700; font-size: 34px; line-height: 1;
    color: var(--amber); margin-bottom: 10px;
  }
  .stat .l {
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.55); line-height: 1.5;
  }

  /* tag / chip list — for long name & company lists */
  .taglist { margin: 26px 0; }
  .taglist > h4 {
    font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
    color: var(--white); margin-bottom: 18px;
  }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    font-size: 12.5px; font-weight: 400; color: rgba(255,255,255,0.72);
    background: var(--panel); border: 1px solid var(--border);
    padding: 7px 13px; border-radius: 2px; transition: border-color .2s, color .2s;
  }
  .tag:hover { border-color: var(--amber-line); color: var(--white); }
  .taglist .count {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--amber); margin-left: 10px;
  }

  /* key / value list */
  .kvlist { border-top: 1px solid var(--border-l); margin: 26px 0; }
  .kvrow {
    display: grid; grid-template-columns: 220px 1fr; gap: 28px;
    padding: 18px 0; border-bottom: 1px solid var(--border-l);
  }
  .kvrow .k {
    font-size: 11.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--amber); padding-top: 2px;
  }
  .kvrow .v { font-size: 14.5px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.78); }

  /* cards grid */
  .cardgrid { display: grid; gap: 22px; margin: 30px 0; }
  .cardgrid.c1 { grid-template-columns: 1fr; }
  .cardgrid.c2 { grid-template-columns: repeat(2, 1fr); }
  .cardgrid.c3 { grid-template-columns: repeat(3, 1fr); }
  .card {
    border: 1px solid var(--border); background: var(--panel);
    border-radius: 4px; padding: 26px 28px; position: relative;
  }
  .card.accent { border-left: 2px solid var(--amber); }
  .card .c-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 12px;
  }
  .card h4 {
    font-family: var(--font-d); font-weight: 700; font-size: 19px; line-height: 1.25;
    color: var(--white); margin-bottom: 10px;
  }
  .card .c-meta {
    font-size: 12px; font-weight: 400; letter-spacing: .4px;
    color: var(--stone); margin-bottom: 16px;
  }
  .card p { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
  .card p:last-child { margin-bottom: 0; }
  .card ul { list-style: none; margin: 14px 0 0; }
  .card li {
    font-size: 13.5px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.7);
    padding-left: 18px; position: relative; margin-bottom: 11px;
  }
  .card li:last-child { margin-bottom: 0; }
  .card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--amber); border-radius: 50%; }
  .card .c-link {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--amber); border-bottom: 1px solid var(--amber-line); padding-bottom: 3px;
  }
  .card .c-link::after { content: '↗'; }
  .card .c-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
  .card .c-tags span {
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
    color: rgba(255,255,255,0.6); border: 1px solid var(--border); padding: 5px 9px; border-radius: 2px;
  }

  /* fit / score badge */
  .badge {
    position: absolute; top: 22px; right: 24px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
    padding: 6px 10px; border-radius: 2px; border: 1px solid var(--border);
    color: rgba(255,255,255,0.6);
  }
  .badge.strong { color: var(--amber); border-color: var(--amber-line); background: var(--amber-soft); }
  .badge.moderate { color: var(--stone); border-color: rgba(186,178,168,0.35); }
  .badge.weak { color: var(--against); border-color: rgba(181,84,74,0.35); }
  .card.has-badge h4 { padding-right: 96px; }

  /* accordion */
  .acc { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 30px 0; }
  .acc-item { border-bottom: 1px solid var(--border); }
  .acc-item:last-child { border-bottom: none; }
  .acc-head {
    width: 100%; text-align: left; background: var(--panel); border: none; cursor: pointer;
    padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    font-family: var(--font-u); transition: background .2s;
  }
  .acc-head:hover { background: #12131A; }
  .acc-head .t { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.4; }
  .acc-head .m {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--stone); margin-top: 7px; display: block;
  }
  .acc-head .chev { color: var(--amber); font-size: 18px; flex-shrink: 0; transition: transform .25s; }
  .acc-item.open .acc-head .chev { transform: rotate(90deg); }
  .acc-body { display: none; padding: 4px 26px 30px; background: #0A0B10; }
  .acc-item.open .acc-body { display: block; animation: fade .3s ease; }

  /* table */
  .tablewrap { margin: 30px 0; border: 1px solid var(--border); border-radius: 4px; overflow-x: auto; }
  table.rtable { width: 100%; border-collapse: collapse; min-width: 560px; }
  table.rtable th {
    text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--amber); background: var(--dark-grey); padding: 16px 20px; border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }
  table.rtable td {
    font-size: 13.5px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.75);
    padding: 16px 20px; border-bottom: 1px solid var(--border-l); vertical-align: top;
  }
  table.rtable tr:last-child td { border-bottom: none; }
  table.rtable tbody tr:hover td { background: rgba(255,255,255,0.015); }
  .tablewrap .tcaption {
    font-size: 12px; color: rgba(255,255,255,0.45); padding: 14px 20px; border-top: 1px solid var(--border);
  }

  /* toolbar / filters */
  .toolbar {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    margin: 30px 0 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
  }
  .fbtn {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
    padding: 9px 16px; border: 1px solid var(--border); background: var(--panel);
    color: rgba(255,255,255,0.55); cursor: pointer; font-family: var(--font-u);
    transition: color .2s, border-color .2s, background .2s;
  }
  .fbtn:hover { color: var(--white); border-color: var(--amber-line); }
  .fbtn.active { background: var(--amber); color: var(--black); border-color: var(--amber); }
  .fcount { font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-left: auto; }
  .is-hidden { display: none !important; }

  /* placeholder state (unpopulated template) */
  .placeholder {
    border: 1px dashed var(--amber-line); background: var(--amber-soft);
    border-radius: 4px; padding: 30px 32px; margin: 26px 0;
  }
  .placeholder .ph-label {
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 12px;
  }
  .placeholder p { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); }
  .placeholder code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px;
    color: var(--stone); background: rgba(0,0,0,0.35); padding: 2px 6px; border-radius: 2px;
  }

  @media (max-width: 900px) {
    .cardgrid.c2, .cardgrid.c3 { grid-template-columns: 1fr; }
    .kvrow { grid-template-columns: 1fr; gap: 8px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
  }
