/* Voices of Deliverance Backup — OAuth compliance site.
   Self-contained: no build step, no framework, no dependency on the main
   Voices of Deliverance application. */

:root {
  --bg: #ffffff;
  --surface: #f5f5f4;
  --border: #d6d3d1;
  --text: #1c1917;
  --muted: #44403c;
  --accent: #7a5a12;
  --accent-hover: #5c4310;
  --focus: #1d4ed8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14120f;
    --surface: #1f1c18;
    --border: #423c34;
    --text: #f5f0e8;
    --muted: #cdc4b6;
    --accent: #e8c77a;
    --accent-hover: #f2d799;
    --focus: #93c5fd;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 2rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.page {
  max-width: 44rem;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
}

h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.0625rem;
  color: var(--muted);
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas,
    "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.35em;
  word-break: break-word;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

nav.pagelinks {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

nav.pagelinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

nav.pagelinks li {
  margin: 0;
}

footer.colophon {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--muted);
}

footer.colophon p {
  margin-bottom: 0.5rem;
}

.effective-date {
  font-weight: 600;
  color: var(--text);
}
