:root {
  --bg: #0f1115;
  --panel: #151822;
  --text: #e6e8ee;
  --muted: #a1a7b3;
  --accent: #4da3ff;
  --border: #23283b;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.tagline {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

p {
  margin-bottom: 1rem;
}

ul {
  margin: 0.75rem 0 1.5rem 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

.mission {
  font-weight: 500;
  color: #dce6ff;
}

.links h2 {
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-grid a {
  display: block;
  text-align: center;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  background: #111418;
}

.social-grid a:hover {
  border-color: var(--accent);
  color: white;
  background: #182033;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}
