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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

nav {
  border-bottom: 1px solid #222;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

nav .logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.effective-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 48px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #bbb;
}

ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #bbb;
}

a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #fff;
}

/* Index page */
.hero {
  text-align: center;
  padding: 120px 24px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 20px;
  font-style: italic;
  color: #666;
  margin-bottom: 48px;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.hero-links a {
  color: #888;
  font-size: 15px;
}

.footer {
  text-align: center;
  padding: 40px 24px;
  color: #444;
  font-size: 13px;
  border-top: 1px solid #1a1a1a;
  margin-top: 60px;
}
