.field-guide-page{--font-display:"Newsreader",Georgia,serif;--mono:"Spline Sans Mono",ui-monospace,monospace;--font-body:"Newsreader",Georgia,serif}
/* ── SCENARIO TABS ───────────────────────────────────────────────────────── */
    .bc-tabs-wrap {
      overflow-x: auto;
      scrollbar-width: none;
      margin-bottom: 16px;
    }
    .bc-tabs-wrap::-webkit-scrollbar { display: none; }
    .bc-tabs {
      display: flex;
      gap: 8px;
      min-width: max-content;
    }
    .bc-tab {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.05em;
      padding: 7px 16px;
      border-radius: 20px;
      border: 0.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.15s;
      white-space: nowrap;
    }
    .bc-tab:hover { color: var(--text); border-color: rgba(60, 55, 30,0.2); }
    .bc-tab.active { background: var(--accent); color: var(--bg); border-color: var(--accent); font-weight: 700; }

    /* ── CONDITION TOGGLE ────────────────────────────────────────────────────── */
    #bc-condition-row {
      display: none;
      gap: 8px;
      margin-bottom: 20px;
      align-items: center;
    }
    .bc-cond {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      padding: 5px 18px;
      border-radius: 4px;
      border: 0.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.15s;
    }
    .bc-cond.active {
      border-color: var(--accent);
      background: rgba(70,90,46,0.08);
      color: var(--accent);
      font-weight: 700;
    }

    /* ── PROGRESS ────────────────────────────────────────────────────────────── */
    .bc-progress-wrap { margin-bottom: 32px; }
    .bc-progress-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
    }
    .bc-progress-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--muted);
    }
    .bc-progress-count {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      transition: color 0.2s;
    }
    .bc-progress-track {
      height: 3px;
      background: var(--surface);
      border-radius: 2px;
      overflow: hidden;
    }
    .bc-progress-bar {
      height: 100%;
      width: 0%;
      background: var(--accent);
      border-radius: 2px;
      transition: width 0.25s ease, background 0.25s;
    }

    /* ── CHECKLIST ───────────────────────────────────────────────────────────── */
    .bc-section { margin-bottom: 32px; }
    .bc-section-heading {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: rgba(34, 38, 27,0.3);
      padding-bottom: 10px;
      margin-bottom: 2px;
      border-bottom: 0.5px solid var(--border);
    }
    .bc-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      width: 100%;
      background: none;
      border: none;
      border-bottom: 0.5px solid rgba(60, 55, 30,0.04);
      padding: 12px 0;
      cursor: pointer;
      text-align: left;
      transition: background 0.1s;
      border-radius: 0;
    }
    .bc-item:last-child { border-bottom: none; }
    .bc-item:hover { background: rgba(60, 55, 30,0.02); }
    .bc-item:active { background: rgba(60, 55, 30,0.04); }

    .bc-checkbox {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      border-radius: 3px;
      border: 1px solid rgba(60, 55, 30,0.14);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
      transition: all 0.15s;
    }
    .bc-checkbox.checked {
      background: #465a2e;
      border-color: #465a2e;
    }
    .bc-checkbox.crit-border { border-color: #ff9f43; }

    .bc-item-text {
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.6;
      color: rgba(34, 38, 27,0.75);
      transition: color 0.15s, text-decoration 0.15s;
    }
    .bc-item.done .bc-item-text {
      color: rgba(34, 38, 27,0.25);
      text-decoration: line-through;
      text-decoration-color: rgba(60, 55, 30,0.2);
    }

    .bc-critical-label {
      display: inline-block;
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: #ff9f43;
      margin-right: 8px;
      vertical-align: middle;
    }

    /* ── RESET ───────────────────────────────────────────────────────────────── */
    #bc-reset {
      display: none;
      width: 100%;
      padding: 14px;
      background: transparent;
      border: 0.5px solid var(--border);
      border-radius: 6px;
      color: var(--muted);
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      cursor: pointer;
      margin-top: 8px;
      transition: border-color 0.15s, color 0.15s;
    }
    #bc-reset:hover { border-color: rgba(60, 55, 30,0.2); color: var(--text); }

    /* ── SCENARIO DESCRIPTION ────────────────────────────────────────────────── */
    #bc-scenario-desc {
      font-family: var(--mono);
      font-size: 10px;
      color: rgba(34, 38, 27,0.3);
      margin-bottom: 24px;
      letter-spacing: 0.02em;
    }

    /* ── COMPLETE STATE ──────────────────────────────────────────────────────── */
    .bc-complete-banner {
      display: none;
      background: rgba(81,207,102,0.08);
      border: 0.5px solid rgba(81,207,102,0.25);
      border-radius: 6px;
      padding: 14px 18px;
      margin-bottom: 24px;
      font-family: var(--mono);
      font-size: 11px;
      color: #51cf66;
      letter-spacing: 0.05em;
    }
    @media print {
      .nav, .footer, .bc-tabs-wrap, #bc-condition-row, .page-print-btn { display: none !important; }
      body { background: white !important; color: black !important; padding-top: 0 !important; }
      .bc-item { display: flex !important; }
      .bc-section { page-break-inside: avoid; }
    }
