@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #0d0d10;
  --bg-raised: #16161a;
  --text: #f2f1ee;
  --text-muted: #9a9a9f;
  --accent: #c8102e;
  --border: #2a2a30;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --content-width: 640px;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.hero {
  margin-bottom: 56px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  color: var(--accent);
}

.tagline {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: 10px;
}

.section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin: 0 0 16px;
}

.section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
}

.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px;
  margin: -16px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

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

.project-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
}

.project-name--muted {
  color: var(--text-muted);
}

.project-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
