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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #080808;
  color: #e8e8e8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 600px;
  padding: 2rem;
  text-align: center;
}

.wordmark {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 3.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #888;
  max-width: 440px;
  margin: 0 auto;
}

footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #444;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #aaa;
}
