/* ============================================================
   FIND-INVESTORS.CSS
   The "Find My Investors" founder questionnaire: question blocks,
   the match results list, score breakdown bars, and reason
   checklists.
   ============================================================ */
  /* ---------- FIND INVESTORS QUESTIONNAIRE ---------- */
  .finder-intro {
    max-width: 640px;
    margin-bottom: 8px;
  }
  .finder-intro p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-dim);
  }
  .finder-question {
    margin: 32px 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hairline);
  }
  .finder-question-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 4px;
  }
  .finder-question-hint {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-dim);
    margin-bottom: 16px;
  }
  .finder-btn {
    display: inline-block;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg);
    background: var(--gold);
    border: none;
    border-radius: 4px;
    padding: 13px 28px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.15s ease;
  }
  .finder-btn:hover { background: var(--gold-bright); }
  .finder-results {
    margin-top: 40px;
  }
  .finder-results-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .finder-result-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 20px 22px;
    margin-bottom: 14px;
  }
  .finder-result-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
  .finder-result-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 20px;
  }
  .finder-result-name a { color: var(--ink); text-decoration: none; }
  .finder-result-name a:hover { color: var(--gold-bright); }
  .finder-match-badge {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--gold-bright);
    background: rgba(201,162,39,0.12);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .finder-match-reasons {
    font-size: 13.5px;
    color: var(--ink-dim);
    margin-top: 10px;
    line-height: 1.6;
  }
  .finder-score-badge {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-bright);
    background: rgba(201,162,39,0.12);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .finder-score-block {
    text-align: center;
    min-width: 84px;
  }
  .finder-score-pct {
    font-family: var(--mono);
    font-size: 30px;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
  }
  .finder-score-quality {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
  }
  .finder-reasons {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
  }
  .finder-reasons-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 8px;
  }
  .finder-reason-check {
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.9;
  }
  .finder-reasons-empty {
    font-size: 13px;
    color: var(--ink-dim);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
  }
  .finder-breakdown {
    margin-top: 14px;
  }
  .finder-breakdown-row {
    display: grid;
    grid-template-columns: 110px 1fr 34px;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
  }
  .finder-breakdown-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-dim);
  }
  .finder-breakdown-track {
    background: var(--surface-raised);
    border-radius: 3px;
    height: 6px;
    overflow: hidden;
  }
  .finder-breakdown-fill {
    background: var(--gold);
    height: 100%;
    border-radius: 3px;
  }
  .finder-breakdown-pts {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-dim);
    text-align: right;
  }
 .finder-breakdown-detail {
    grid-column: 1 / -1;
    font-size: 12.5px;
    color: var(--ink-dim);
    margin: -2px 0 4px;
  }
