/* Homepage specific styles */
main {
  margin: 30px 0;
}

ol#how-it-works {
  background: var(--code-bg);
  padding: 20px 20px 20px 40px;
  border-left: 3px solid var(--link-color);
  margin: 20px 0;
}

ul#use-cases li {
  margin: 10px 0;
}

/* Removed homepage list formatting; terminal-style home page is used instead */
.home-terminal {
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 0;
  font-family: ui-monospace, Menlo, Monaco, 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
}

.terminal-line {
  white-space: pre-wrap;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4ch;
  align-items: baseline;
}

.terminal-tag {
  font-weight: bold;
  color: var(--link-color);
}

.muted {
  color: var(--muted-color);
}

.prompt {
  color: var(--muted-color);
}

.cursor {
  display: inline-block;
  width: 1ch;
  animation: blink 1s step-end infinite;
  color: var(--link-color);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}

.terminal-output {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.terminal-output ul {
  margin: 10px 0 0 20px;
}

.terminal-output a {
  color: var(--link-color);
  text-decoration: underline;
}

.terminal-output code {
  background: rgba(0,0,0,0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.hidden {
  display: none;
}
