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

:root {
  --bg: #18181b;
  --text: #e4e4e7;
  --muted: #c4c4ca;
  --border: #3f3f46;
  --hover-bg: #27272a;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.name {
  margin-bottom: 0.5rem;
  font-size: 1.73rem;
  font-weight: 500;
  letter-spacing: 0;
}

.status {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.69rem;
  font-weight: 400;
}

.bio {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.section {
  margin-bottom: 1.75rem;
}

.section-label {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.body-copy {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
  color: var(--muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.69rem;
}

.projects {
  display: flex;
  flex-direction: column;
}

.project {
  display: block;
  margin: 0 -0.75rem;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
}

.project:hover {
  background: var(--hover-bg);
}

.project-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.project h2 {
  color: var(--text);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.83rem;
  font-weight: 400;
}

.project span {
  flex-shrink: 0;
  color: var(--muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.69rem;
}

.project p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.5;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.69rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social a:hover {
  color: var(--text);
}

.social a:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

.social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 520px) {
  .container {
    padding: 2rem 1.25rem;
  }

  .project-header {
    display: block;
  }

  .project span {
    display: block;
    margin-top: 0.2rem;
  }

  .social {
    gap: 1rem;
  }
}
