:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #7a7a7a;
  --accent: #111111;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 8vh 6vw;
}

.name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 3rem;
  text-transform: uppercase;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: link-counter;
}

.links li {
  counter-increment: link-counter;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.55rem 0;
  border-top: 1px solid #eaeaea;
}

.links li:last-child {
  border-bottom: 1px solid #eaeaea;
}

.links li::before {
  content: "(" counter(link-counter, decimal-leading-zero) ")";
  color: var(--muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
}

.links a:hover,
.links a:focus-visible {
  opacity: 0.55;
}

.links a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .wrap {
    padding: 10vh 7vw;
  }
  .name {
    margin-bottom: 2.25rem;
  }
}
