.transition-map {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid #b6cebf;
  border-radius: 16px;
  background: var(--soft);
  font-family: system-ui, sans-serif;
}
.visual-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.transition-map figcaption strong {
  display: block;
  max-width: 28ch;
  font: 600 26px/1.2 Georgia, serif;
  letter-spacing: -.02em;
}
.transition-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
}
.transition-steps li {
  position: relative;
  margin: 0;
  border-top: 1px solid #a6c3b2;
  padding-top: 16px;
}
.transition-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--accent);
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.transition-steps h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  line-height: 1.3;
}
.transition-steps p {
  margin: 0;
  color: #40574a;
  font-size: 14px;
  line-height: 1.55;
}
.transition-fallback {
  display: flex;
  gap: 12px;
  margin: 0;
  border-top: 1px solid #a6c3b2;
  padding-top: 16px;
  color: #40574a;
  font-size: 13px;
  line-height: 1.5;
}
.transition-fallback span {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.readiness-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 30px;
  font: 15px/1.55 system-ui, sans-serif;
}
.readiness-table caption {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}
.readiness-table thead {
  background: var(--accent);
  color: white;
}
.readiness-table th,
.readiness-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
}
.readiness-table thead th {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .03em;
}
.readiness-table tbody th {
  width: 34%;
  font-size: 14px;
  font-weight: 650;
}
.readiness-table tbody tr {
  border-bottom: 1px solid var(--line);
}
.readiness-table tbody tr:nth-child(even) {
  background: #f2efe6;
}
.row-number {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .05em;
}
@media (max-width: 600px) {
  .transition-map { padding: 22px; }
  .transition-map figcaption strong { font-size: 24px; }
  .transition-steps { grid-template-columns: 1fr; gap: 20px; }
  .transition-steps li { padding-left: 46px; min-height: 48px; }
  .step-number { position: absolute; left: 0; top: 16px; }
  .transition-steps h3 { margin-top: 0; padding-right: 18px; }
  .transition-steps li:not(:last-child)::after { content: "↓"; top: 16px; }
  .readiness-table { font-size: 14px; }
  .readiness-table th, .readiness-table td { padding: 14px 10px; }
  .readiness-table tbody th { width: 35%; font-size: 13px; overflow-wrap: break-word; }
}
