*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafaf8;
  --text: #1a1a18;
  --muted: #888880;
  --line: #e8e8e4;
  --hover: #f2f2ee;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111110;
    --text: #e8e8e4;
    --muted: #666660;
    --line: #2a2a28;
    --hover: #1c1c1a;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 4rem 1.5rem;
}

main {
  max-width: 480px;
  margin: 0 auto;
}

/* Profile */
.profile {
  margin-bottom: 3.5rem;
}

.name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.handles {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.bio {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Tools */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.tool-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.tool-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
}

.tool-link:hover {
  background: var(--hover);
}

.tool-name {
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 100px;
  color: var(--text);
}

.tool-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.tool-link--muted .tool-name {
  color: var(--muted);
}

.tool-link--muted .tool-desc {
  color: var(--muted);
  opacity: 0.7;
}
