.wrap {
  width: 100%;
  max-width: 560px;
}
h1 { font-size: 20px; font-weight: 600; margin: 0 0 4px; }
.sub { color: var(--text-secondary); font-size: 14px; margin: 0 0 24px; }
.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tool {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color .12s;
}
.tool:hover { border-color: var(--accent); }
.icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.info { flex: 1; min-width: 0; }
.name { font-weight: 600; font-size: 15px; margin: 0; }
.desc { color: var(--text-secondary); font-size: 13px; margin: 2px 0 0; }
.arrow { color: var(--text-secondary); font-size: 16px; flex-shrink: 0; }
footer {
  margin-top: 32px;
  color: var(--text-secondary);
  font-size: 12px;
  text-align: center;
}
