:root {
  --bg: #fafaf9;
  --text: #1c1917;
  --muted: #78716c;
  --subtle: #a8a29e;
  --accent: #0ea5e9;
  --border: #e7e5e4;
  --max-w: 680px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared ───────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.section-label {
  font-size: 0.71875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--subtle);
  margin-bottom: 1.5rem;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  padding: 6rem 0 4rem;
}

.hero-name {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-role {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── About ────────────────────────────────────────── */

.about {
  padding: 3.5rem 0;
}

.about p {
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 580px;
  margin-bottom: 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ── Focus areas ──────────────────────────────────── */

.focus {
  padding: 3.5rem 0;
}

.focus-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.focus-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.focus-item:first-child {
  border-top: 1px solid var(--border);
}

.focus-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.focus-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 520px;
}

/* ── Footer ───────────────────────────────────────── */

.footer {
  padding: 3rem 0;
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  color: var(--subtle);
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 600px) {
  .hero {
    padding: 4rem 0 3rem;
  }
}
