/* Wider slide content for these 3 dense pages */
.slide-content {
  max-width: 1040px;
}

/* === Slide 1 · Honest page === */
.honest-page h2 {
  margin-bottom: 1.6rem;
}

.honest-block {
  border-top: 1px solid var(--border);
  padding: 1rem 0 0.2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.honest-block h4 {
  margin-bottom: 0;
  padding-top: 0.1rem;
}

.honest-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.honest-block.caveat h4 {
  color: var(--text);
}

.honest-block.caveat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  margin-top: 0.6rem;
}

/* === Slide 2 · Scenarios === */
.page-lede {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0.5rem 0 1.5rem;
}

ol.scenarios {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  counter-reset: sc;
}

ol.scenarios li {
  counter-increment: sc;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

ol.scenarios li::before {
  content: counter(sc, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-light);
}

.sc-quote {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
  line-height: 1.4;
}

.sc-real {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === Slide 3 · Timeline === */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.5rem 0 1.75rem;
}

.tl-row {
  display: grid;
  grid-template-columns: 160px 240px 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-sm);
  border-top: 1px solid var(--border);
}

.tl-row:first-child {
  border-top: none;
}

.tl-time {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 500;
}

.tl-what {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.tl-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tl-row.tl-break {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  margin: 0.3rem 0;
}

.tl-row.tl-break .tl-time,
.tl-row.tl-break .tl-what,
.tl-row.tl-break .tl-detail {
  color: var(--text-muted);
  font-style: italic;
}

.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.after-grid.single {
  grid-template-columns: minmax(0, 520px);
}

.after-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.after-block h4 {
  margin-bottom: 0.4rem;
}

.after-block p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .honest-block,
  .tl-row,
  .after-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  ol.scenarios {
    grid-template-columns: 1fr;
  }
}
