.workflow-steps {
  margin: 32px 0;
}
.workflow-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-content {
  flex: 1;
}
.step-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.step-arrow {
  text-align: center;
  color: var(--line);
  font-size: 20px;
  margin: 4px 0 4px 18px;
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin: 32px 0;
}
.tool-item {
  background: var(--paper);
  padding: 20px;
}
.tool-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.tool-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
}
.code-block {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--ink);
  color: #e8e4dc;
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
  line-height: 1.8;
  overflow-x: auto;
}
.code-block .comment { color: #888; }
.code-block .tag { color: #c8a060; }
.code-block .tool { color: #7ab8f5; }
.code-block .str { color: #98c379; }
.code-block .key { color: #e06c75; }
.notification-demo {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 24px 0;
  overflow: hidden;
}
.notification-header {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.notification-body {
  background: #f5f3ef;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
}
.notification-body .xml-tag { color: var(--accent); }
.notification-body .xml-content { color: var(--ink); }
