/* ── Header (index-specific) ── */
header { justify-content: space-between; }

/* ── Layout ── */
body {
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  font-family: 'IBM Plex Sans', sans-serif;
  opacity: 0;
  transition: background 300ms ease, color 300ms ease;
}
body.loaded { opacity: 1; transition: opacity 300ms ease, background 300ms ease, color 300ms ease; }

main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.content {
  max-width: 480px;
  width: 100%;
}

.bio {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Links: Numbered Mono ── */
.links { display: flex; flex-direction: column; gap: 0; }
.links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 300;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 150ms;
}
.links a:first-child { border-top: 1px solid color-mix(in srgb, var(--fg) 15%, transparent); }
.links a { border-bottom: 1px solid color-mix(in srgb, var(--fg) 15%, transparent); }
.links a .num { color: var(--fg2); font-size: 12px; }
.links a:hover { color: var(--fg); }
.links a .arrow { margin-left: auto; color: var(--fg2); transition: transform 150ms; }
.links a:hover .arrow { transform: translateX(3px); }
