/* ============================================================
   newCasefile.css
   New Casefile v1 — blind-lift navigation system
   Extracted from wk_casefile_preview4.html
   Strips: prototype-only interview stage, question dock,
           statement panel, :root vars already in engine.
   Keeps: all wkNcf-, wkNb-, wkCm-, wkTl-, wkBarStrip,
          blind animation states, keyframes.
   ============================================================ */

/* ── BLIND ANIMATION STATES on #wkBottomBar ──
   Engine bar uses woodgrain PNG (not overridden here).
   These classes are added/removed by openScreen/closeScreen. */

#wkBottomBar {
  transition: none;
  will-change: height;
}

#wkBottomBar.bar-rising {
  transition: height 480ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
}

#wkBottomBar.bar-open {
  transition: none;
  height: 100vh;
}

#wkBottomBar.bar-falling {
  transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  height: var(--wk-barH);
}

/* ── CLOSE STRIP ── */
#wkBarStrip {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 38px;
  z-index: 6600;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease;
}
#wkBarStrip:hover {
  background: #161616;
}
#wkBarStrip::before {
  content: ""; display: block; width: 32px; height: 2px;
  background: rgba(255,255,255,0.35); border-radius: 1px;
}
#wkBarStripLabel {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-family: sans-serif;
}
#wkBarStrip::after {
  content: "↓"; font-size: 12px;
  color: rgba(255,255,255,0.45); font-family: sans-serif;
}
#wkBarStrip:hover #wkBarStripLabel { color: rgba(255,255,255,0.95); }
#wkBarStrip:hover::after { color: rgba(255,255,255,0.8); }
#wkBarStrip:hover::before { background: rgba(255,255,255,0.6); }
body.wk-screen-open #wkBarStrip {
  opacity: 1; pointer-events: auto;
}

/* ── NAV BUTTON BAR INNER — hide during screen open ──
   #wkBarButtons is the wrapper added around the three nav buttons.
   Opacity is driven by JS (openScreen/closeScreen). */
#wkBarButtons {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 12px 18px 16px;
  transition: opacity 200ms ease;
}

/* ── NAV BUTTON LOADED STATE (contradiction filed) ── */
.wkNcf-btn-loaded svg { stroke: rgba(255,255,255,0.75) !important; }
.wkNcf-btn-loaded .wk-navBtn-lbl { color: rgba(255,255,255,0.75) !important; }
.wkNcf-btn-loaded { animation: wkBtnGlow 1.8s ease-in-out infinite; }
.wkNcf-btn-loaded .wk-navBtn-badge { display: flex; }
@keyframes wkBtnGlow {
  0%, 100% { filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55)); }
  50%       { filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55)) drop-shadow(0 0 14px rgba(255,255,255,0.45)); }
}

/* ── BACK BUTTON (shared across all three screens) ── */
.wkNcf-back-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; padding: 0;
  color: rgba(255,255,255,0.5); transition: color 150ms;
  font-family: sans-serif;
}
.wkNcf-back-btn:hover { color: rgba(255,255,255,0.9); }
.wkNcf-back-arrow-lbl {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.wkNcf-back-divider {
  width: 1px; height: 20px; background: rgba(255,255,255,0.1); margin: 0 4px;
}

/* ════════════════════════════════════════════════════════
   NEW CASEFILE SCREEN (#wkNewCasefile)
   ════════════════════════════════════════════════════════ */
#wkNewCasefile {
  position: fixed;
  inset: 0;
  bottom: 38px;
  z-index: 6500;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
#wkNewCasefile.ncf-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Visual overhaul — subtle horizontal rule texture */
#wkNewCasefile {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.012) 28px, rgba(255,255,255,0.012) 29px),
    #0a0a0a !important;
}

/* Header */
.wkNcf-header {
  height: 52px;
  background: #121212;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; padding: 0 24px; flex-shrink: 0; gap: 12px;
}
.wkNcf-title {
  font-size: 20px; font-style: italic; color: rgba(255,255,255,0.72);
  font-family: Georgia, serif; letter-spacing: 0.01em;
}
.wkNcf-subtitle {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.18); font-family: sans-serif; margin-top: 2px;
}

/* Portrait strip */
.wkNcf-strip {
  height: 240px;
  background: #0b0b0e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-shrink: 0;
  transition: height 0.28s cubic-bezier(0.2,0,0.2,1); overflow: hidden;
}
.wkNcf-strip.receded { height: 175px; }

.wkNcf-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; border-right: 1px solid rgba(255,255,255,0.04);
  padding: 10px 6px; transition: background 0.18s; position: relative; overflow: hidden;
}
.wkNcf-tab:last-child { border-right: none; }
.wkNcf-tab:hover { background: rgba(255,255,255,0.03); }
.wkNcf-tab.active { background: rgba(255,255,255,0.06); }
.wkNcf-tab.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,0.7);
}

.wkNcf-portrait {
  width: 118px; height: 118px; border-radius: 0px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; flex-shrink: 0;
  transition: all 0.28s cubic-bezier(0.2,0,0.2,1);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
}
.wkNcf-tab.active .wkNcf-portrait { border-color: rgba(255,255,255,0.45); }
.wkNcf-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.wkNcf-tab-icon {
  width: 108px; height: 108px; border-radius: 0px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.28s cubic-bezier(0.2,0,0.2,1);
}
.wkNcf-tab.active .wkNcf-tab-icon { border-color: rgba(255,255,255,0.42); }

.wkNcf-tab-name {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-align: center; line-height: 1.35;
  transition: all 0.28s; white-space: nowrap; font-family: sans-serif;
}
.wkNcf-tab.active .wkNcf-tab-name { color: rgba(255,255,255,0.7); }
/* Italic override for name tabs */
.wkNcf-tab-name { font-family: Georgia, serif !important; font-style: italic; letter-spacing: 0.02em !important; text-transform: none !important; font-size: 13px !important; }
.wkNcf-tab.active .wkNcf-tab-name { color: rgba(255,255,255,0.7) !important; }

.wkNcf-tab-sub {
  font-size: 10px; color: rgba(255,255,255,0.28); text-align: center;
  transition: opacity 0.2s; font-family: sans-serif; letter-spacing: 0.03em;
}
.wkNcf-tab-badge {
  position: absolute; top: 10px; right: 10px;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: rgba(255,255,255,0.15); font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center; padding: 0 5px; font-family: sans-serif;
}

/* Receded strip */
.wkNcf-strip.receded .wkNcf-portrait     { width: 96px; height: 96px; border-width: 1px; }
.wkNcf-strip.receded .wkNcf-tab-icon     { width: 96px; height: 96px; border-radius: 8px; border-width: 1px; }
.wkNcf-strip.receded .wkNcf-tab-icon svg { width: 38px; height: 38px; }
.wkNcf-strip.receded .wkNcf-tab-sub      { opacity: 0; height: 0; overflow: hidden; }
.wkNcf-strip.receded .wkNcf-tab          { flex-direction: column; gap: 6px; padding: 6px 4px; }
.wkNcf-strip.receded .wkNcf-tab-name     { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wkNcf-strip.receded .wkNcf-tab-badge    { top: 4px; right: 4px; width: 16px; height: 16px; min-width: 16px; font-size: 9px; }

/* ── Info button (ⓘ top-left of each person tab) ── */
.wkNcf-info-btn {
  position: absolute; top: 8px; left: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.38); font-size: 11px; font-weight: 600;
  font-family: Georgia, serif; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
  z-index: 2; line-height: 1;
}
.wkNcf-info-btn:hover {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.7);
}
.wkNcf-strip.receded .wkNcf-info-btn { width: 16px; height: 16px; font-size: 9px; top: 5px; left: 5px; }

/* ── Info popup ── */
.wkNcf-info-overlay {
  position: fixed; inset: 0; z-index: 100010;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.wkNcf-info-card {
  background: #13141a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 56px 56px 48px;
  width: min(720px, 88vw); display: flex; flex-direction: column; gap: 32px;
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.wkNcf-info-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.wkNcf-info-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.wkNcf-info-header {
  display: flex; align-items: center; gap: 32px;
}
.wkNcf-info-portrait {
  width: 128px; height: 128px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.wkNcf-info-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.wkNcf-info-identity { display: flex; flex-direction: column; gap: 8px; }
.wkNcf-info-name {
  font-size: 26px; font-weight: 600; color: #e8dfc8;
  font-family: Georgia, serif; font-style: italic;
}
.wkNcf-info-role {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-family: sans-serif;
}
.wkNcf-info-divider {
  height: 1px; background: rgba(255,255,255,0.07);
}
.wkNcf-info-bio-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); font-family: sans-serif; margin-bottom: 10px;
}
.wkNcf-info-bio {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.55);
  font-family: Georgia, serif; font-style: italic;
}

/* Body */
.wkNcf-body { display: flex; flex: 1; min-height: 0; }

/* Claim list */
.wkNcf-list {
  flex: 1; overflow-y: auto; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.wkNcf-empty {
  padding: 32px 14px; font-size: 13px; color: rgba(255,255,255,0.16);
  font-style: italic; text-align: center; line-height: 1.8; font-family: sans-serif;
}
.wkNcf-section {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 6px 2px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 6px; font-family: sans-serif;
}

/* Claim rows */
.wkNcf-row {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
  background: rgba(255,255,255,0.028); cursor: pointer;
  transition: background 120ms, border-color 120ms;
  position: relative; overflow: hidden;
}
.wkNcf-row:hover    { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.28); }
.wkNcf-row.retired  { opacity: 0.22; pointer-events: none; }

/* Left-edge accent bar by icon type */
.wkNcf-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--row-accent, rgba(255,255,255,0.1)); opacity: 0.7;
  border-radius: 10px 0 0 10px; z-index: 0;
}
.wkNcf-row[data-icon="eye"]    { --row-accent: rgba(106,169,255,0.8); }
.wkNcf-row[data-icon="ear"]    { --row-accent: rgba(160,130,210,0.8); }
.wkNcf-row[data-icon="walk"]   { --row-accent: rgba(255,255,255,0.8); }
.wkNcf-row[data-icon="people"] { --row-accent: rgba(80,190,160,0.8); }
.wkNcf-row[data-icon="deny"]   { --row-accent: rgba(210,100,100,0.8); }
.wkNcf-row[data-icon="clock"]  { --row-accent: rgba(180,155,95,0.8); }
.wkNcf-row[data-icon="bolt"]   { --row-accent: rgba(220,140,60,0.8); }
.wkNcf-row[data-icon="alert"]  { --row-accent: rgba(220,180,70,0.8); }
.wkNcf-row[data-icon="cam"]    { --row-accent: rgba(160,100,100,0.8); }
.wkNcf-row[data-icon="door"]   { --row-accent: rgba(180,140,100,0.8); }
.wkNcf-row[data-icon="glass"]  { --row-accent: rgba(130,180,200,0.8); }
.wkNcf-row[data-icon="cellar"] { --row-accent: rgba(140,160,130,0.8); }
.wkNcf-row[data-icon="search"] { --row-accent: rgba(130,190,140,0.8); }

/* "click to compare" hint */
.wkNcf-row::after {
  content: 'click to compare'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.1); font-family: sans-serif;
  opacity: 0; transition: opacity 150ms;
}
.wkNcf-row:hover::after  { opacity: 1; }
.wkNcf-row.retired::after { display: none; }
.wkNcf-row--clue::after, .wkNcf-row--clue:hover::after { display: none; }
/* Keep before z-index above after */
.wkNcf-row::before { z-index: 1; }

.wkNcf-row-icon {
  width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.wkNcf-row-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wkNcf-row-icon svg { width: 32px; height: 32px; }
.wkNcf-row-text  { flex: 1; min-width: 0; }
.wkNcf-row-src   { font-size: 10px !important; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.28) !important; margin-bottom: 5px; font-family: sans-serif; }
.wkNcf-row-main  { font-size: 20px; font-weight: 500 !important; color: rgba(255,255,255,0.92) !important; line-height: 1.4; }
.wkNcf-row-add   { display: none !important; }

/* ── Clue row info button ── */
.wkNcf-clue-info-btn {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.38); font-size: 11px; font-weight: 600;
  font-family: Georgia, serif; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1; align-self: center;
}
.wkNcf-clue-info-btn:hover {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.7);
}

/* ── Clue detail popup ── */
.wkNcf-clue-card {
  background: #13141a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
  width: min(640px, 90vw); display: flex; flex-direction: column;
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.wkNcf-clue-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  display: block; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wkNcf-clue-card-body {
  padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px;
}
.wkNcf-clue-card-kicker {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-family: sans-serif;
}
.wkNcf-clue-card-title {
  font-size: 20px; font-weight: 600; color: #e8dfc8;
  font-family: Georgia, serif; font-style: italic; line-height: 1.3;
}
.wkNcf-clue-card-text {
  font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.52);
  font-family: Georgia, serif; font-style: italic;
}

.wkNcf-row.retired .wkNcf-row-main { text-decoration: line-through; color: rgba(255,255,255,0.28) !important; }

/* New-claim glow animation */
@keyframes wkClaimNewGlow {
  0%   { box-shadow: 0 0 0 2px rgba(255,255,255,0.6), inset 0 0 20px rgba(255,255,255,0.12); }
  100% { box-shadow: none; }
}
.wkNcf-row.wk-just-added { animation: wkClaimNewGlow 1.4s ease-out forwards; }

/* Confidence badges */
.wkNcf-confidence {
  font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 3px; font-family: sans-serif;
  flex-shrink: 0; align-self: flex-start; margin-top: 2px;
}
.wkNcf-confidence.corroborated { background: rgba(80,190,160,0.12);  color: rgba(80,190,160,0.8);  border: 1px solid rgba(80,190,160,0.2); }
.wkNcf-confidence.contested    { background: rgba(220,140,60,0.1);   color: rgba(220,140,60,0.75); border: 1px solid rgba(220,140,60,0.18); }
.wkNcf-confidence.single       { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.07); }

/* Tray */
.wkNcf-tray {
  width: 360px; flex-shrink: 0; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(0,0,0,0.25); border-left: 1px solid rgba(255,255,255,0.06);
}
.wkNcf-tray-head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); font-family: sans-serif; margin-bottom: 2px;
}
.wkNcf-slot {
  min-height: 150px; border: 2px dashed rgba(255,255,255,0.15); border-radius: 12px;
  padding: 22px 20px; font-size: 16px; color: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; text-align: center;
  transition: all 0.2s; position: relative; font-family: sans-serif;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.wkNcf-slot.filled {
  border-style: solid; border-width: 2.5px; border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
  align-items: flex-start; justify-content: flex-start; text-align: left;
  font-size: 18px; line-height: 1.45;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.2);
}
.wkNcf-slot.match { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.11); }
.wkNcf-vs {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.13); text-align: center; font-family: sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wkNcf-vs::before { content: '←'; font-size: 14px; opacity: 0.4; }
.wkNcf-vs::after  { content: '→'; font-size: 14px; opacity: 0.4; }
.wkNcf-hint {
  font-size: 10px; color: rgba(255,255,255,0.15);
  text-align: center; line-height: 1.6; font-family: sans-serif;
}
.wkNcf-slot-src {
  display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.52); margin-bottom: 3px; font-family: sans-serif;
}
.wkNcf-xclear {
  position: absolute; top: 5px; right: 5px;
  width: 15px; height: 15px; background: rgba(255,255,255,0.05);
  border: none; border-radius: 50%; color: rgba(255,255,255,0.25);
  font-size: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.wkNcf-xclear:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Contradiction sequence overlay */
.wkNcf-seq   { position: absolute; inset: 0; z-index: 10; pointer-events: none; overflow: hidden; }
.wkNcf-flash { position: absolute; inset: 0; background: #fff; opacity: 0; }
.wkNcf-black { position: absolute; inset: 0; background: #000; opacity: 0; }
.wkNcf-quiet {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; background: rgba(0,0,0,0.88);
}
.wkNcf-quiet-inner { text-align: center; padding: 0 24px; position: relative; }
.wkNcf-word {
  font-family: Georgia, serif; font-size: 62px; font-style: italic;
  font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 0.02em;
  text-shadow: 0 0 50px rgba(255,255,255,0.3);
}
.wkNcf-word::after {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent);
  margin: 8px auto 0; width: 0; transition: width 0.5s ease 0.2s;
}
.wkNcf-word.wkNcf-line::after { width: 100%; }
.wkNcf-word-sub {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: 10px; font-family: sans-serif;
}
.wkNcf-cards {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 260px; margin: 22px auto 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.wkNcf-cards.wkNcf-show { opacity: 1; transform: translateY(0); }
.wkNcf-card          { padding: 10px 13px; border-radius: 5px; font-size: 12px; color: #d4c9a8; text-align: left; line-height: 1.45; font-family: sans-serif; }
.wkNcf-card-a        { background: rgba(120,110,220,0.15); border: 1px solid rgba(120,110,220,0.28); }
.wkNcf-card-b        { background: rgba(29,158,117,0.15);  border: 1px solid rgba(29,158,117,0.28); }
.wkNcf-card-src-a    { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(160,140,220,0.8); margin-bottom: 3px; }
.wkNcf-card-src-b    { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(60,190,140,0.8);  margin-bottom: 3px; }
.wkNcf-vs-label      { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.18); text-align: center; font-family: sans-serif; }
.wkNcf-countdown {
  height: 2px; background: rgba(255,255,255,0.07); border-radius: 1px;
  max-width: 260px; margin: 20px auto 0; overflow: hidden;
  opacity: 0; transition: opacity 0.3s;
}
.wkNcf-countdown.wkNcf-show { opacity: 1; }
.wkNcf-countdown-fill {
  height: 100%; background: rgba(255,255,255,0.75); width: 100%;
  transform-origin: left; transition: transform 3s linear;
}
.wkNcf-countdown-fill.wkNcf-run { transform: scaleX(0); }
.wkNcf-filing {
  font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-align: center; margin-top: 12px;
  opacity: 0; transition: opacity 0.4s; font-family: sans-serif;
}
.wkNcf-filing.wkNcf-show { opacity: 1; }

/* Flyer + trail particles */
.wkNcf-flyer {
  position: fixed; padding: 7px 10px; border-radius: 5px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.6);
  font-size: 9px; color: #e8d8a0; line-height: 1.35;
  pointer-events: none; z-index: 999999; opacity: 0;
  box-shadow: 0 0 18px rgba(255,255,255,0.28); font-family: sans-serif;
}
.wkNcf-flyer-lbl {
  font-size: 8px; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7); margin-bottom: 2px;
}
.wkNcf-trail {
  position: fixed; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.75); pointer-events: none; z-index: 999998; opacity: 0;
}

/* Confrontation row (injected into question list after contradiction fires) */
.wkArmedRow {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,0.45); background: rgba(255,255,255,0.08);
  border-radius: 12px; font-size: 13px; color: rgba(255,255,255,0.7); font-family: inherit;
  animation: wkConfrontPulse 1.8s ease-in-out infinite;
  cursor: pointer; width: 100%; text-align: left;
}
@keyframes wkConfrontPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 0 5px rgba(255,255,255,0.1); }
}
.wkArmedDot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.7);
  flex-shrink: 0; animation: wkDotPulse 1.8s ease-in-out infinite;
}
@keyframes wkDotPulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 4px rgba(255,255,255,0.3); }
  50%       { opacity: 1;   box-shadow: 0 0 10px rgba(255,255,255,0.7); }
}

/* Keyframes — shake + quiet-in */
@keyframes wkNcfShake {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-6px,-4px) rotate(-0.4deg); }
  20%  { transform: translate(7px,3px) rotate(0.35deg); }
  30%  { transform: translate(-5px,5px) rotate(-0.28deg); }
  40%  { transform: translate(6px,-3px) rotate(0.22deg); }
  55%  { transform: translate(-3px,3px) rotate(-0.12deg); }
  70%  { transform: translate(3px,-2px) rotate(0.08deg); }
  85%  { transform: translate(-2px,1px); }
  100% { transform: translate(0,0); }
}
.wkNcf-shaking { animation: wkNcfShake 0.5s cubic-bezier(0.36,0.07,0.19,0.97) both; }

@keyframes wkNcfQuietIn {
  0%   { opacity: 0; transform: scale(0.94); }
  60%  { opacity: 1; transform: scale(1.012); }
  100% { opacity: 1; transform: scale(1); }
}
.wkNcf-quiet-in { animation: wkNcfQuietIn 0.45s cubic-bezier(0.2,1,0.4,1) both; }

/* ════════════════════════════════════════════════════════
   TIMELINE SCREEN (#wkTimelineScreen)
   ════════════════════════════════════════════════════════ */
#wkTimelineScreen {
  position: fixed; inset: 0; bottom: 38px; z-index: 6500;
  display: flex; flex-direction: column;
  background: #08080b; overflow: hidden;
  opacity: 0; pointer-events: none; transition: opacity 260ms ease;
}
#wkTimelineScreen.ncf-visible { opacity: 1; pointer-events: auto; }

.wkTl-header {
  height: 52px; background: #121212;
  border-bottom: 1px solid rgba(170,140,210,0.14);
  display: flex; align-items: center; padding: 0 24px; flex-shrink: 0; gap: 12px;
}
.wkTl-title {
  font-size: 20px; font-style: italic; color: rgba(170,140,210,0.72);
  font-family: Georgia, serif;
}
.wkTl-subtitle {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.18); font-family: sans-serif; margin-top: 2px;
}
/* Toggle pill */
.wkTl-toggle {
  margin-left: auto;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(170,140,210,0.18);
  border-radius: 6px; overflow: hidden;
}
.wkTl-toggle-btn {
  padding: 5px 14px;
  background: none; border: none; cursor: pointer;
  font-size: 11px; font-family: sans-serif; letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(170,140,210,0.45);
  transition: color 120ms, background 120ms;
}
.wkTl-toggle-btn:hover  { color: rgba(170,140,210,0.75); }
.wkTl-toggle-btn.active {
  background: rgba(170,140,210,0.14);
  color: rgba(170,140,210,0.9);
}

/* List view */
.wkTl-listView {
  flex: 1; overflow-y: auto; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.wkTl-listView.hidden { display: none; }

/* Event cards in list view */
.wkTl-event {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border-left: 3px solid rgba(170,140,210,0.4);
  cursor: pointer; transition: background 120ms, border-color 120ms;
}
.wkTl-event:hover { background: rgba(170,140,210,0.08); border-color: rgba(170,140,210,0.35); }
.wkTl-event.retired { opacity: 0.22; pointer-events: none; }
.wkTl-event-time {
  font-size: 12px; font-family: sans-serif; letter-spacing: 0.06em;
  color: rgba(170,140,210,0.7); white-space: nowrap; padding-top: 1px;
  min-width: 52px; flex-shrink: 0;
}
.wkTl-event-text {
  font-size: 15px; color: rgba(255,255,255,0.85);
  font-family: Georgia, serif; line-height: 1.45;
}
.wkTl-event-src {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25); margin-top: 4px; font-family: sans-serif;
}
.wkTl-empty {
  padding: 40px 14px; font-size: 13px; color: rgba(255,255,255,0.16);
  font-style: italic; text-align: center; line-height: 1.8; font-family: sans-serif;
}

/* Grid view */
.wkTl-gridView {
  flex: 1; overflow-x: auto; overflow-y: hidden; position: relative;
  display: none;
}
.wkTl-gridView.visible { display: block; }
.wkTl-canvas {
  position: relative; height: 100%; min-width: 100%;
}

/* ── TIMELINE INLINE IN CASEFILE ── */
.wkTl-cfHeader {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; flex-shrink: 0;
}
.wkTl-cfSection {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-family: sans-serif;
}
.wkTl-listInCf {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px;
}
.wkTl-gridInCf {
  height: 360px; flex-shrink: 0;
  overflow-x: auto; overflow-y: hidden; position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(900px 520px at 22% 0%, rgba(255,255,255,0.06), rgba(0,0,0,0) 58%),
    radial-gradient(900px 520px at 70% 70%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%),
    rgba(0,0,0,0.18);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  cursor: grab; user-select: none;
}
.wkTl-gridInCf:active { cursor: grabbing; }
#wkTlCfCanvas {
  position: relative; height: 100%; min-height: 360px;
}
/* Mirror #timelineOverlay marker styles scoped to in-casefile canvas */
#wkTlCfCanvas .baseline {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: rgba(255,255,255,0.14); transform: translateY(-1px);
}
#wkTlCfCanvas .friday-shade {
  position: absolute; top: 0; bottom: 0; background: rgba(255,255,255,0.03);
}
#wkTlCfCanvas .midnight-line {
  position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.14);
}
#wkTlCfCanvas .midnight-label {
  position: absolute; top: 14px; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,0.78); letter-spacing: 0.1em;
  text-transform: uppercase; font-family: sans-serif;
}
#wkTlCfCanvas .sunset-band {
  position: absolute; top: 0; bottom: 0; width: 140px; background: rgba(255,197,106,0.06);
}
#wkTlCfCanvas .sunset-line {
  position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,197,106,0.18);
}
#wkTlCfCanvas .sunset-label {
  position: absolute; top: 46px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; padding: 6px 10px;
  border-radius: 999px; font-size: 12px; color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
  font-family: sans-serif;
}
#wkTlCfCanvas .sunset-icon {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,197,106,0.85); box-shadow: 0 0 0 6px rgba(255,197,106,0.1);
}
#wkTlCfCanvas .marker {
  position: absolute; top: 50%; transform: translateX(-50%);
}
#wkTlCfCanvas .marker.provenLane  { top: 38%; }
#wkTlCfCanvas .marker.claimedLane { top: 62%; }
#wkTlCfCanvas .marker-button {
  appearance: none; border: 0; background: transparent;
  color: inherit; cursor: pointer; padding: 0; text-align: left;
}
#wkTlCfCanvas .marker .label {
  display: inline-block; font-size: 13px; font-weight: 650;
  padding: 8px 10px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.22);
  max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: sans-serif; color: rgba(255,255,255,0.92);
}
#wkTlCfCanvas .marker.selected .label {
  border-color: rgba(106,169,255,0.45); background: rgba(106,169,255,0.10);
}
#wkTlCfCanvas .marker .stem {
  position: absolute; left: 16px; top: 100%; width: 2px; height: 22px;
  background: rgba(255,255,255,0.1);
}
#wkTlCfCanvas .marker .node {
  position: absolute; left: 10px; top: calc(100% + 18px);
  width: 14px; height: 14px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.55);
}
#wkTlCfCanvas .marker.proven .node {
  border-color: rgba(106,169,255,0.45); box-shadow: 0 0 0 8px rgba(106,169,255,0.08);
}
#wkTlCfCanvas .marker.claimed .node {
  border-color: rgba(255,255,255,0.14); box-shadow: 0 0 0 8px rgba(255,255,255,0.05);
}
#wkTlCfCanvas .span {
  position: absolute; top: 62%; height: 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  transform: translateY(-50%);
}
#wkTlCfCanvas .window {
  position: absolute; top: 62%; height: 30px; border-radius: 14px;
  background: rgba(0,0,0,0.14); border: 1px dashed rgba(255,255,255,0.14);
  transform: translateY(-50%);
}

/* ════════════════════════════════════════════════════════
   NOTEBOOK SCREEN (#wkNotebookScreen)
   ════════════════════════════════════════════════════════ */
#wkNotebookScreen {
  position: fixed; inset: 0; bottom: 38px; z-index: 6500;
  display: flex; flex-direction: column;
  background: #0a0a0a; overflow: hidden;
  opacity: 0; pointer-events: none; transition: opacity 260ms ease;
}
#wkNotebookScreen.ncf-visible { opacity: 1; pointer-events: auto; }

.wkNb-header {
  height: 52px; background: #121212;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; padding: 0 24px; flex-shrink: 0; gap: 12px;
}
.wkNb-title {
  font-size: 20px; font-style: italic; color: rgba(255,255,255,0.65);
  font-family: Georgia, serif;
}
.wkNbAddBtn {
  position: absolute; bottom: 20px; right: 20px;
  padding: 10px 18px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72); font-size: 11px; letter-spacing: 0.08em;
  font-family: sans-serif; cursor: pointer; transition: all 120ms;
  z-index: 10;
}
.wkNbAddBtn:hover { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.7); }

/* ── Canvas body — scrolling replaced by pan/zoom ── */
.wkNb-body {
  flex: 1; overflow: hidden; position: relative; background: #07070a;
}
.wkNb-canvas {
  position: absolute; inset: 0;
  transform-origin: 0 0;
  will-change: transform;
}
.wkNb-empty {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center; font-family: sans-serif; pointer-events: none;
  font-size: 13px; color: rgba(255,255,255,0.13); line-height: 1.8; font-style: italic;
}

/* ── Claim cards — absolutely positioned on canvas ── */
.wkNb-claim {
  position: absolute; width: 320px;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  background: rgba(14,12,18,0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  user-select: none;
}
.wkNb-claim-grip {
  height: 24px; border-radius: 8px 8px 0 0;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: move; display: flex; align-items: center; padding: 0 10px;
  flex-shrink: 0;
}
.wkNb-claim-grip-dots {
  font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 2px; line-height: 1;
}
.wkNb-claim-inner {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px 10px;
}
.wkNb-claim-text    { flex: 1; min-width: 0; }
.wkNb-claim-src     { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.28); margin-bottom: 5px; font-family: sans-serif; }
.wkNb-claim-main    { font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.4; font-family: Georgia, serif; }
.wkNb-actions       { display: flex; align-items: center; gap: 6px; padding: 0 14px 12px; justify-content: flex-end; }
.wkNb-btn           { padding: 6px 11px; border-radius: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.05em; cursor: pointer; font-family: sans-serif; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.55); transition: all 120ms; white-space: nowrap; }
.wkNb-btn:hover     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.wkNb-btn.compare   { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); }
.wkNb-btn.compare:hover { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.7); }
.wkNb-btn.remove    { border-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.22); padding: 6px 8px; }
.wkNb-btn.remove:hover  { border-color: rgba(255,100,100,0.3); color: rgba(255,100,100,0.6); background: rgba(255,100,100,0.06); }

/* ── Post-it notes ── */
.wkNbPostIt {
  position: absolute; width: 210px; min-height: 170px;
  display: flex; flex-direction: column;
  border-radius: 2px;
  box-shadow: 3px 6px 20px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.3);
  user-select: none;
}
.wkNbPostIt-grip {
  height: 24px; border-radius: 2px 2px 0 0;
  background: #d4cc52; cursor: move;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px; flex-shrink: 0;
}
.wkNbPostIt-label {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.3); font-family: sans-serif;
}
.wkNbPostIt-del {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: rgba(0,0,0,0.28); padding: 0; line-height: 1;
  transition: color 100ms;
}
.wkNbPostIt-del:hover { color: rgba(160,0,0,0.65); }
.wkNbPostIt-text {
  flex: 1; padding: 10px 11px 12px;
  background: #f5f099;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px; color: #2a2a1a; line-height: 1.55;
  border: none; outline: none; resize: none;
  width: 100%; min-height: 146px;
  cursor: text;
}

/* ════════════════════════════════════════════════════════
   CONTEXT MENU (#wkClaimMenu)
   ════════════════════════════════════════════════════════ */
#wkClaimMenu {
  position: fixed; z-index: 99999;
  background: rgba(14,12,10,0.97); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 5px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7); backdrop-filter: blur(12px);
  min-width: 210px; opacity: 0; transform: scale(0.95);
  transform-origin: top left; transition: opacity 120ms ease, transform 120ms ease;
  pointer-events: none;
}
#wkClaimMenu.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.wkCm-item  { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 7px; cursor: pointer; font-family: sans-serif; font-size: 13px; color: rgba(255,255,255,0.82); transition: background 100ms; border: none; background: none; width: 100%; text-align: left; }
.wkCm-item:hover { background: rgba(255,255,255,0.06); }
.wkCm-icon  { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.wkCm-icon.compare  { background: rgba(255,255,255,0.12); }
.wkCm-icon.notebook { background: rgba(120,110,220,0.14); }
.wkCm-label { flex: 1; }
.wkCm-sub   { display: block; font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 1px; letter-spacing: 0.03em; }
.wkCm-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 6px; }
.wkCm-claim-preview {
  padding: 8px 12px 10px; font-family: sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.3); line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 3px;
  font-style: italic; max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* --wk-strip-h not yet in engine :root — add here for safety */
:root { --wk-strip-h: 38px; }

/* ── WHAT HAPPENED — font ─────────────────────────── */
@font-face {
  font-family: 'ITCBenguiat';
  src: url('../fonts/ITCBenguiatStdBookCn.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ── WHAT HAPPENED SCREEN ─────────────────────────── */
#wkStoryScreen {
  position: fixed;
  inset: 0;
  bottom: 38px;
  background: var(--ncf-bg, rgba(14,12,10,0.97));
  display: flex;
  flex-direction: column;
  z-index: 6500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
#wkStoryScreen.ncf-visible {
  opacity: 1;
  pointer-events: auto;
}
.wkStory-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px 24px 56px;
  display: flex;
  justify-content: center;
}
.wkStory-prose {
  background: #f4efe4;
  padding: 52px 56px 60px;
  max-width: 620px;
  width: 100%;
  align-self: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 6px 32px rgba(0,0,0,0.3);
}
.wkStory-prose p {
  font-family: 'ITCBenguiat', 'Courier New', Courier, serif;
  font-size: 13.5px;
  line-height: 1.9;
  color: #1c1810;
  margin: 0 0 1.5em;
}
.wkStory-empty {
  font-family: 'ITCBenguiat', 'Courier New', Courier, serif;
  font-size: 13px;
  color: rgba(28,24,16,0.38);
  font-style: italic;
}
.wkStory-fact {
  color: #7a5500;
}
.wkStory-fact--fresh {
  color: #7a5500;
  transition: color 2s ease;
}

/* ── TO FIND OUT NOTE ─────────────────────────── */
.wkTfd-note {
  background: #f0ead8;
  border-radius: 3px;
  padding: 12px 16px 16px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.wkTfd-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 22px,
    rgba(140,120,80,0.13) 22px,
    rgba(140,120,80,0.13) 23px
  );
  pointer-events: none;
}
.wkTfd-header {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #a08848;
  text-transform: uppercase;
  margin-bottom: 11px;
  position: relative;
}
.wkTfd-q {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 9px;
  position: relative;
}
.wkTfd-q:last-child { margin-bottom: 0; }
.wkTfd-circle {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #7a5e28;
  margin-top: 2px;
  flex-shrink: 0;
  background: transparent;
}
.wkTfd-circle.wkTfd-done {
  background: #c8b88a;
  border-color: #c8b88a;
}
.wkTfd-q-text {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #2a1e08;
  line-height: 1.5;
}
.wkTfd-q-text.wkTfd-struck {
  text-decoration: line-through;
  color: #9a8a60;
}
/* Accordion toggle */
.wkTfd-acc-toggle {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #a08848;
  text-transform: uppercase;
  margin-top: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.wkTfd-acc-toggle::after {
  content: ' ▸';
  font-size: 9px;
}
.wkTfd-acc-toggle.wkTfd-acc-open::after {
  content: ' ▾';
}
.wkTfd-acc-toggle:hover {
  opacity: 1;
}
/* Accordion list (resolved items) */
.wkTfd-acc-list {
  display: none;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(140,120,80,0.18);
}
.wkTfd-acc-list.wkTfd-acc-open {
  display: block;
}
.wkTfd-q-resolved .wkTfd-q-text {
  font-size: 11px;
  opacity: 0.65;
}
