:root {
  --bg: #fbfbfa;
  --fg: #14140f;
  --muted: #8a8a80;
  --rule: #dededa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem clamp(1.5rem, 8vw, 7rem);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  max-width: 24rem;
}

h1 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 0;
}

.role {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 1.05rem;
}

.links a {
  color: var(--fg);
  text-decoration: none;
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  transition: opacity 0.18s ease;
}

.links a:hover::after { opacity: 1; }

@media (max-width: 480px) {
  .links { gap: 1.25rem; }
}
