/* ── Header ───────────────────────────────────── */
.header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a1a2e;
}
.header__name {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.header__role {
  font-size: 0.82rem;
  font-weight: 500;
  color: #4a5568;
  margin-top: 3px;
}
.header__meta {
  font-size: 0.72rem;
  color: #718096;
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.header__meta span::before {
  content: '';
  display: inline-block;
  width: 3px; height: 3px;
  background: #a0aec0;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
}
.header__meta span:first-child::before { display: none; }
.header__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
  justify-content: flex-end;
}
.header__link {
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.header__link:hover { color: #1a1a2e; }
.header__link svg { width: 12px; height: 12px; flex-shrink: 0; }
