
    .checker-layout { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 32px 0; }
    @media (min-width: 900px) { .checker-layout { grid-template-columns: 1.2fr 1fr; } }
    
    .clause-category { background: var(--surface); border: 1px solid var(--rule); border-radius: 2px; padding: 24px; margin-bottom: 20px; }
    .clause-category h3 { margin-top: 0; font-size: 1.15rem; display: flex; align-items: center; gap: 8px; color: var(--ink); }
    /* The numbered board chip: a square of board with a chalk mono numeral, the
       same component as on Getting started (css/pages/legit-start.css), which
       this page does not load. */
    .num-chip { display: inline-grid; place-items: center; width: 40px; height: 32px; background: var(--board); color: var(--chalk); font: 700 1rem var(--font-mono); border-radius: 2px; flex: none; }
    @media (max-width: 560px) { .num-chip { width: 34px; height: 28px; } }
    
    .clause-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
    .clause-item:last-child { border-bottom: none; padding-bottom: 0; }
    .clause-item input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: #dc2626; cursor: pointer; flex-shrink: 0; }
    .clause-label { font-size: 0.95rem; font-weight: 600; color: var(--text); }
    .clause-desc { font-size: 0.82rem; color: var(--mute, var(--ink-3)); margin-top: 2px; line-height: 1.4; }

    .score-dock { background: var(--bg-alt, #faf7f2); border: 2px solid var(--border); border-radius: 12px; padding: 28px; position: sticky; top: 20px; }
    .score-meter { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
    .score-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 1.1rem; font-weight: 800; padding: 6px 16px; border-radius: 20px; margin-bottom: 12px; }
    .badge-safe { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
    .badge-warn { background: #fef3c7; color: #b45309; border: 1px solid var(--mark); }
    .badge-danger { background: #fee2e2; color: #b91c1c; border: 1px solid var(--crit); }
    .badge-neutral { background: var(--bg, #f1f5f9); color: var(--mute, var(--ink-3)); border: 1px dashed var(--border, #cbd5e1); }

    .risk-title { font-size: 1.8rem; font-weight: 900; font-family: var(--font-display, inherit); margin: 0 0 6px; }
    .risk-summary { font-size: 0.95rem; color: var(--text); line-height: 1.5; }

    .flags-list { margin: 16px 0; list-style: none; padding: 0; }
    .flags-list li { font-size: 0.88rem; padding: 6px 0; border-bottom: 1px dashed var(--border); display: flex; justify-content: space-between; align-items: center; }
    .flags-list li strong { color: #dc2626; }

    .template-box { background: var(--card, #fff); border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-top: 16px; font-size: 0.85rem; font-family: monospace; white-space: pre-wrap; line-height: 1.5; color: var(--text); }
    .copy-btn { margin-top: 8px; width: 100%; }
  