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

:root {
  --bg: #0d0d0d;
  --text: #e0e0e0;
  --accent: #00ff88;
  --muted: #6b6b6b;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.6;
}

main {
  max-width: 42rem;
  width: 100%;
}

h1 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

h1::before {
  content: '> ';
  opacity: 0.6;
}

.mission {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.contact {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.contact-label {
  color: var(--muted);
  margin-right: 0.5rem;
}