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

body {
  background: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

/* Splash page */
.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.splash h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.splash .tagline {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.splash nav {
  display: flex;
  gap: 2rem;
}

.splash nav a {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* Content pages */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page nav {
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.page h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.page section {
  margin-bottom: 2.5rem;
}

.page section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 1rem;
}

.page section p,
.page section ul {
  color: #ccc;
}

.page section ul {
  list-style: none;
  padding: 0;
}

.page section ul li {
  margin-bottom: 0.75rem;
}
