.tools {
  --accent: #1f6feb;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  background: #f7f8fa;
  min-height: 100vh;
}

.tools .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.tools header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tools .brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.tools .brand span {
  color: var(--accent);
}

.tools nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.tools nav a {
  text-decoration: none;
  opacity: 0.65;
}

.tools nav a:hover {
  opacity: 1;
}

.tools h1 {
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.tools .lede {
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: #555;
  margin: 0 0 2rem;
  max-width: 60ch;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.tool {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  padding: 1.25rem;
}

.tool .title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool .badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.tool .row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #eef1f4;
  font-size: 0.85rem;
}

.tool .row:last-child {
  border-bottom: none;
}

.tool .row .v {
  color: var(--accent);
}

.content-rail h2 {
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.content-rail ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.4rem;
}

.content-rail li {
  font-size: 0.85rem;
  color: #444;
}
