nav { font-family: monospace; font-size: 0.85em; padding: 12px 20px; }
nav a { color: inherit; text-decoration: none; }
nav a:hover { text-decoration: underline; }

body { margin: 0; font-family: monospace; background: white; }

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  color: #aaa;
}

.section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 0.8em;
  color: #aaa;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  height: 120px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  color: #999;
  opacity: 0;
  transform: translateY(30px);
}
