:root {
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --background: #ffffff;
  --border: #d2d2d7;
  --accent: #0071e3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --background: #000000;
    --border: #424245;
    --accent: #2997ff;
  }
}

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

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Landing page styles */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.landing h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.landing .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.landing .status {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.landing footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.landing footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.landing footer a:hover {
  color: var(--accent);
}

/* Legal page styles */
.legal {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.legal header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal header a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal header a:hover {
  text-decoration: underline;
}

.legal h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal li {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal strong {
  font-weight: 600;
}

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

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

.legal footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
