:root {
  --bg: #FAF8F5;
  --text: #1A1A1A;
  --muted: #8A847D;
  --accent: #B44A2F;
  --rule: #D6D1CA;
}

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

body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

.card {
  max-width: 400px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.5s ease 0.1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bio {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.divider {
  width: 2rem;
  height: 1px;
  background: var(--rule);
  margin-bottom: 1.5rem;
}

.links {
  display: flex;
  gap: 1.2rem;
}

.links a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.links a:hover { opacity: 0.65; }
