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

:root {
  --bg: #0b0b0b;
  --text: #e0ddd5;
  --dim: #5a5750;
  --accent: #c8ff73;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Main */
h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--text);
}

/* Projects */
.projects {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  width: 100%;
}

.project-link {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  color: var(--text);
  text-decoration: none;
  padding: 1rem 0;
  border-top: 1px solid #1f1f1f;
  display: block;
  transition: color 0.2s, padding-left 0.3s;
}

.project-link:last-child {
  border-bottom: 1px solid #1f1f1f;
}

a.project-link:hover {
  color: var(--accent);
  padding-left: 0.75rem;
}

.project-link.muted {
  color: var(--dim);
  font-style: italic;
}

/* Email */
.email {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.email:hover {
  color: var(--accent);
}

/* Footer */
footer {
  margin-top: auto;
  padding-top: 4rem;
}

footer {
  width: 100%;
}

footer p {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
  .page {
    padding: 2rem 1.5rem;
  }

  header {
    margin-bottom: 3rem;
  }

  h1 {
    margin-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
