/* VOUCH legal pages — shared with index.html (Cobalt Sky V2) */
@font-face {
  font-family: 'BC Civitas';
  src: url('fonts/BCCivitasTEST-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BC Civitas';
  src: url('fonts/BCCivitasTEST-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BC Civitas';
  src: url('fonts/BCCivitasTEST-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BC Civitas';
  src: url('fonts/BCCivitasTEST-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cobalt: #0047AB;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #E5E7EB;
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --font: 'BC Civitas', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }

.legal-strip {
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

.legal-strip a { font-weight: 600; margin: 0 0.35rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1rem;
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-wordmark {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.back-link {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 600;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.content > * + * { margin-top: 1.5rem; }

.effective {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

.callout {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}

.callout-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 0.375rem;
}

.callout p { font-size: 0.875rem; line-height: 1.55; }

.section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.125rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.section h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section p,
.section li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.section p + p { margin-top: 0.5rem; }

.section ul {
  margin-top: 0.375rem;
  padding-left: 1.25rem;
}

.section li + li { margin-top: 0.25rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
}

.site-footer a { font-weight: 600; margin: 0 0.5rem; }
