:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 720px;
  padding: 48px 20px;
  margin: 0 auto;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
}

.tool-list {
  margin-bottom: 3rem;
}

.tool {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.tool:hover {
  background: #fafafa;
}

.tool.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-name {
  font-weight: 600;
}

.tool-desc {
  color: var(--muted);
  margin-top: 0.25rem;
}

.tool-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Status badges */

.badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.badge-experimental {
  background: #fafafa;
}

.badge-active {
  background: #f6f6f6;
}

.badge-stable {
  background: #f2f2f2;
}

.badge-planned {
  background: #ffffff;
  border-style: dashed;
}

.badge-archived {
  opacity: 0.6;
}

.footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
