
    .verifier-grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: 32px; margin: 32px 0; }
    .verifier-grid > *, .control-group { min-width: 0; }
    @media (min-width: 920px) { .verifier-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }

    .card-panel { background: var(--card, #fff); border: 1px solid var(--border); border-radius: 12px; padding: 26px; margin-bottom: 20px; }
    .card-panel h3 { margin-top: 0; font-size: 1.1rem; color: var(--text); }

    .control-group { margin-bottom: 20px; }
    .control-group label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
    .select-input { box-sizing: border-box; width: 100%; min-width: 0; max-width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); color: var(--text); font-family: inherit; font-size: 1rem; }

    .result-dock { background: var(--bg-alt, #faf7f2); border: 2px solid var(--brand, #047857); border-radius: 12px; padding: 28px; position: sticky; top: 20px; }
    .grade-badge-wrap { text-align: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
    .grade-badge { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; font-size: 2.2rem; font-weight: 900; font-family: var(--font-display, inherit); color: #fff; margin-bottom: 10px; }
    .grade-a { background: #059669; }
    .grade-b { background: #0284c7; }
    .grade-c { background: #d97706; }
    .grade-d { background: #dc2626; }

    .grade-title { font-size: 1.4rem; font-weight: 800; font-family: var(--font-display, inherit); margin: 0 0 4px; }
    .grade-sub { font-size: 0.9rem; color: var(--mute, var(--ink-3)); }

    .matrix-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
    .status-pill { font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 12px; text-align: right; }
    .status-ok { background: #dcfce7; color: #166534; }
    .status-warn { background: #fef3c7; color: var(--warn); }
    .status-no { background: #fee2e2; color: #991b1b; }

    .tool-scope { background: var(--bg-alt, #faf7f2); border: 1px dashed var(--border); border-radius: 12px; padding: 16px 20px; margin: 20px 0; font-size: 0.92rem; color: var(--text); }
    .tool-scope strong { display: block; margin-bottom: 4px; }

    .action-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .action-links a { flex: 1 1 12rem; min-width: 0; max-width: 100%; white-space: normal; text-align: center; }

    @media (max-width: 640px) {
      .verifier-grid { gap: 20px; margin-block: 20px; }
      .verifier-grid > .card-panel, .result-dock { padding: 20px; margin-bottom: 0; }
      .result-dock { position: static; }
      .matrix-item { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; }
      .matrix-item > span { min-width: 0; overflow-wrap: anywhere; }
      .matrix-item > span:first-child { font-weight: 600; }
    }
