@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

:root {
  --ink: #0a0a0a;
  --white: #ffffff;
  --gray: #6b7280;
  --border: #e5e5e5;
  --accent: #dc2626;
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--white);
  color: var(--ink);
}

main {
  max-width: 45rem;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 3rem;
}

blockquote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

nav {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 0.125rem;
}

a:hover {
  color: var(--gray);
}

footer {
  margin-top: 3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
