/* Upkeep — static site styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1C1917;
  --text: #F5F0E8;
  --text-secondary: #A8A29E;
  --primary: #DB7B2B;
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

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

h1 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

h3 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

a {
  color: var(--primary);
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 12px;
}

li {
  margin-bottom: 6px;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
}

.effective-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.nav-links a {
  color: var(--primary);
  font-weight: 500;
}

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.875rem;
}
