.lede {
  max-width: 700px;
  font-size: 1.05rem;
  margin-top: 16px;
  color: var(--text-muted);
}

/* ---------------- Numbered steps: case-file folder tabs ---------------- */
/* Numbering is meaningful here: these steps run in a real fixed order in
   the pipeline, so the sequence itself carries information. Styled as a
   stack of folder tabs, since that's literally what a case pipeline is. */

.steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--border);
  padding: 22px 24px;
  transition: border-left-color 0.2s ease, background 0.2s ease;
}
.step:hover { border-left-color: var(--accent); background: var(--panel-raised); }

.step-num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 500;
  padding-top: 2px;
}

.step h3 { margin-bottom: 6px; font-family: var(--font-display); font-size: 1.15rem; }
.step p { margin-bottom: 0; }

@media (max-width: 600px) {
  .step { grid-template-columns: 40px 1fr; padding: 18px; }
}

/* ---------------- Tool list: stamped tool cards ---------------- */

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tool-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
}
.tool-item:last-child { border-bottom: none; }
.tool-item .verdict { justify-self: start; font-family: var(--font-mono); }
.tool-item p { margin: 0; }

@media (max-width: 640px) {
  .tool-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------------- Findings cards: evidence photos, corner-taped ------- */

.finding-card {
  position: relative;
  padding: 28px 28px 28px 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-soft);
  margin-bottom: 24px;
}
.finding-card::before {
  content: '';
  position: absolute;
  top: -6px; left: 22px;
  width: 46px; height: 16px;
  background: rgba(237, 227, 204, 0.14);
  transform: rotate(-3deg);
}
.finding-card h3 { margin-bottom: 10px; font-family: var(--font-display); }
.finding-card .finding-meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.92rem;
  font-family: var(--font-mono);
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ---------------- Limitation items: redacted bars ---------------- */

.limitation-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.limitation-item:last-child { border-bottom: none; }
.limitation-mark {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  position: relative;
}
.limitation-item h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  display: inline-block;
}
.limitation-item p { margin-bottom: 0; }
