:root {
  /* Tailwind zinc scale */
  --zinc-950: #09090b;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;

  --bg: var(--zinc-900);
  --text: var(--zinc-300);
  --text-muted: var(--zinc-400);
  --text-subtle: var(--zinc-500);
}

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

html {
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100dvh;
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(2.5rem, 6vw, 3.5rem);
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.name {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.role {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.tagline {
  margin: 0.85rem 0 0;
  max-width: 36em;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

.work {
  padding-top: 0.25rem;
  border-top: 1px solid var(--zinc-800);
}

.work-label {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.work-items {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.work-item {
  margin: 0;
}

.work-item-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.work-item-desc {
  margin: 0.4rem 0 0;
  max-width: 36em;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

.about {
  padding-top: 0.25rem;
  border-top: 1px solid var(--zinc-800);
}

.about-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.about-body {
  margin: 0;
  max-width: 36em;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

.pov {
  padding-top: 0.25rem;
  border-top: 1px solid var(--zinc-800);
}

.pov-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.pov-body {
  margin: 0;
  max-width: 36em;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

.find-me {
  padding-top: 0.25rem;
  border-top: 1px solid var(--zinc-800);
}

.find-me-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.find-me-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.find-me-list a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--zinc-700);
  padding-bottom: 0.05em;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.find-me-list a:hover {
  color: var(--text);
  border-bottom-color: var(--text-subtle);
}

.find-me-list a:focus-visible {
  outline: 2px solid var(--zinc-400);
  outline-offset: 3px;
  border-bottom-color: transparent;
}

.cta {
  padding-top: 0.25rem;
}

.cta-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--zinc-700);
  padding-bottom: 0.05em;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.cta-link:hover {
  color: var(--zinc-300);
  border-bottom-color: var(--text-subtle);
}

.cta-link:focus-visible {
  outline: 2px solid var(--zinc-400);
  outline-offset: 3px;
  border-bottom-color: transparent;
}
