:root {
  --bg: #0a0a0f;
  --fg: #e8e8e8;
  --fg-dim: #888;
  --accent: #7c9eb2;
  --accent-hover: #a3c4d9;
  --font-mono: 'SF Mono', 'Monaco', 'Menlo', monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

header {
  margin-bottom: 4rem;
}

h1 {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--fg-dim);
  font-style: italic;
}

main section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fg-dim);
}

ul li strong {
  color: var(--accent);
}

.values ul li {
  margin-bottom: 1rem;
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
}

.quiet {
  color: var(--fg-dim);
  font-size: 0.9rem;
}

em {
  font-style: italic;
  color: var(--accent);
}

/* Subtle animation on load */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

header, main section, footer {
  animation: fade-in 0.6s ease-out both;
}

main section:nth-child(1) { animation-delay: 0.1s; }
main section:nth-child(2) { animation-delay: 0.2s; }
main section:nth-child(3) { animation-delay: 0.3s; }
footer { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  body {
    font-size: 16px;
  }
}
