:root {
  --background: #000000;
  --text: #f5f5f5;
  --muted: #bdbdbd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "VT323", "IBM Plex Mono", "Courier New", monospace;
  color: var(--text);
  background: var(--background);
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  text-align: center;
}

body > * {
  width: min(720px, calc(100% - 2rem));
}

.site-header,
.content,
.site-footer {
  display: grid;
  align-content: center;
  justify-items: center;
}

.site-header {
  padding-top: 3rem;
  gap: 0.75rem;
}

.header-image {
  display: block;
  width: min(100%, 18rem);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.content {
  gap: 1.5rem;
  padding: 3rem 0;
}

.site-footer {
  padding-bottom: 3rem;
}

.brand {
  color: var(--text);
  font-family: "Press Start 2P", "VT323", monospace;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.6;
  text-decoration: none;
}

.eyebrow,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08em;
}

.content h1 {
  margin: 0;
  font-family: "Press Start 2P", "VT323", monospace;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.5;
}

.manifesto {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Mono", "Source Code Pro", "Courier New", monospace;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  letter-spacing: 0;
  max-width: 58ch;
  text-align: left;
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 2.25rem;
  }

  .content {
    padding: 2rem 0;
    gap: 1.25rem;
  }

  .site-footer {
    padding-bottom: 2.25rem;
  }
}