:root {
  --bg: #0b0b0b;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 16vh 32px;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.statement {
  margin: 12vh 0;
}

.statement p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.statement .muted {
  color: var(--muted);
}

.about {
  margin-bottom: 12vh;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

footer p {
  cursor: pointer;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--fg);
}
