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

:root {
  --accent: #2A4FB3;
  --gold: #E7A824;
  --bg: #0d0d0d;
  --bg-card: #161616;
  --text: #f0f0f0;
  --text-muted: #888;
}

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

/* FOOTER */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--text); }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

/* PAGE HEADER (doc pages) */
.page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #1a1a1a;
}

.page-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.page-header__back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.page-header__back:hover { color: var(--text); }

/* DOC CONTENT (doc pages) */
.doc-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.doc-content h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.doc-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 10px;
}

.doc-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.doc-content ul {
  padding-left: 22px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.doc-content li { margin-bottom: 4px; }

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

.doc-content a:hover { text-decoration: underline; }

.doc-content hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #1a1a1a;
}

.doc-content .effective-date {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
