/* ══════════════════════════════════════════════════════════════
   Aiden — Shared Brand Stylesheet
   Used by: partners/ (brand-guide.html, brief.html)
   Copy at: legal/brand.css (legal pages)
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Royal — Primary Brand (Purple, H:278°) */
  --fathom-dark:  #2C1640;   /* Royal Dark   — brand-10 */
  --fathom:       #592E72;   /* Royal        — brand-20 */
  --fathom-light: #7B42A0;   /* Royal Light  — brand-30 */
  --brand-40:     #9757BC;
  --brand-50:     #B078CE;
  --brand-60:     #C896E1;   /* Use on dark backgrounds */
  --brand-70:     #D6AFEA;
  --brand-80:     #E5CEEF;
  --brand-90:     #EEE2F7;

  /* Sage — Secondary Accent (muted earthy green, low saturation) */
  --sage-dark:    #4E6152;
  --sage:         #728774;
  --sage-light:   #A0B3A2;
  --sage-wash:    #E9F2E3;   /* Athena Care brand value */

  /* Warm Neutrals — carried from snglst, unchanged */
  --slate-dark:   #191919;
  --slate:        #262625;
  --slate-light:  #40403E;
  --cloud-dark:   #666663;
  --cloud:        #91918D;
  --cloud-light:  #BFBFBA;
  --ivory-dark:   #E5E4DF;
  --ivory:        #F0F0EB;
  --ivory-light:  #FAFAF7;

  --success:      #256A2E;
  --warning:      #BD9520;
  --danger:       #9E2424;

  --heading:   'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:     'IBM Plex Serif', Georgia, serif;
  --sans:      'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:      'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  --condensed: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-dark);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a { color: var(--fathom-light); text-decoration: none; }
a:hover { color: var(--fathom-dark); }

/* snglst logo icon — nudge down so mic base sits on text baseline */
.fa-snglst-logo { vertical-align: -0.15em; }

code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--ivory-dark);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ── Page Structure ─────────────────────────────────────────── */
.page { max-width: 960px; margin: 0 auto; padding: 60px 40px 100px; }

/* ── Cover ──────────────────────────────────────────────────── */
.cover {
  background: var(--fathom-dark);
  padding: 80px 40px;
  border-radius: 12px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.cover::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(21,70,94,0.3) 100%);
  pointer-events: none;
}
.cover-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.cover-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.cover h1 {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.cover .edition {
  font-family: var(--condensed);
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-60);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ── Section Headings ───────────────────────────────────────── */
.section {
  margin-bottom: 80px;
  page-break-inside: avoid;
}
.section-number {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-40);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fathom-dark);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--slate-light);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.divider {
  height: 1px;
  background: var(--ivory-dark);
  margin-bottom: 80px;
}

/* ── Subsection ─────────────────────────────────────────────── */
.subsection-label {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-40);
  margin-bottom: 16px;
  margin-top: 48px;
}
.subsection-label:first-child { margin-top: 0; }

/* ── Logo Section ───────────────────────────────────────────── */
.logo-display {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.logo-display svg { width: 100%; max-width: 360px; height: auto; }
.logo-display.dark-bg {
  background: var(--fathom-dark);
  border-color: transparent;
}
.logo-display.dark-bg svg path { fill: var(--ivory-light); }
.logo-display.dark-bg svg path:nth-child(7),
.logo-display.dark-bg svg path:nth-child(8) { fill: var(--brand-60); }
.logo-display.dark-bg svg rect { fill: var(--fathom-dark); }

.logo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.logo-note {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}
.logo-note strong { color: var(--slate-dark); font-weight: 600; }

.logo-anatomy {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 24px;
  margin-top: 24px;
}
.logo-anatomy dt {
  font-family: var(--condensed);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-light);
}
.logo-anatomy dd {
  font-size: 0.875rem;
  color: var(--cloud-dark);
}

/* ── Color Swatches ─────────────────────────────────────────── */
.palette-group { margin-bottom: 40px; }
.palette-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.swatch {
  flex: 1;
  border-radius: 10px;
  padding: 16px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: transform 0.15s ease;
}
.swatch:hover { transform: translateY(-2px); }
.swatch .name {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.swatch .hex {
  font-family: var(--mono);
  font-size: 0.6875rem;
  opacity: 0.7;
  margin-top: 2px;
}
.swatch .token {
  font-family: var(--mono);
  font-size: 0.625rem;
  opacity: 0.5;
  margin-top: 1px;
}
.swatch.on-light .name,
.swatch.on-light .hex,
.swatch.on-light .token { color: var(--ivory-light); }
.swatch.on-dark .name,
.swatch.on-dark .hex,
.swatch.on-dark .token { color: var(--slate-dark); }

.swatch-hero {
  min-height: 160px;
  border-radius: 12px;
  padding: 24px;
}
.swatch-hero .name { font-size: 1rem; }
.swatch-hero .hex { font-size: 0.8125rem; }

.semantic-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.semantic-swatch {
  border-radius: 10px;
  padding: 14px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.semantic-swatch .name {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.semantic-swatch .hex {
  font-family: var(--mono);
  font-size: 0.625rem;
  opacity: 0.65;
}

/* ── Typography Section ─────────────────────────────────────── */
.type-specimen {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 24px;
}
.type-specimen-label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cloud);
  margin-bottom: 16px;
}
.type-specimen .sample-serif {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--fathom-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.type-specimen .sample-sans {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 600px;
}
.type-specimen .sample-mono {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--fathom-light);
  background: var(--ivory);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
  line-height: 1.6;
}
.type-specimen .sample-condensed {
  font-family: var(--condensed);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cloud);
  margin-top: 16px;
}

.type-face-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.type-face-card {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 32px;
}
.type-face-card .face-name {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cloud);
  margin-bottom: 12px;
}
.type-face-card .face-sample {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--slate-dark);
}
.type-face-card .face-role {
  font-family: var(--condensed);
  font-size: 0.75rem;
  color: var(--fathom-light);
  background: var(--brand-90);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.type-face-card .face-weights {
  font-size: 0.8125rem;
  color: var(--cloud-dark);
  line-height: 1.6;
}
.type-face-card .face-weights span {
  display: inline-block;
  margin-right: 12px;
  white-space: nowrap;
}

.scale-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.scale-table th {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cloud);
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.scale-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-dark);
  vertical-align: baseline;
}
.scale-table .token-col {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--fathom-light);
  width: 160px;
}
.scale-table .size-col {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cloud-dark);
  width: 100px;
}
.scale-table .sample-col {
  font-family: var(--serif);
  color: var(--slate-dark);
  letter-spacing: -0.2px;
}

/* ── Voice Section ──────────────────────────────────────────── */
.voice-card {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 16px;
}
.voice-card h4 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fathom-dark);
  margin-bottom: 8px;
}
.voice-card p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.voice-trait {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 28px;
}
.voice-trait h4 {
  font-family: var(--heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fathom-dark);
  margin-bottom: 6px;
}
.voice-trait p {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.6;
}

.example-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.example-box {
  border-radius: 12px;
  padding: 24px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.example-box.do {
  background: #F4FAF5;
  border: 1px solid #B5E4BB;
}
.example-box.dont {
  background: #FDF4F4;
  border: 1px solid #F1B5B5;
}
.example-box .label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}
.example-box.do .label { color: var(--success); }
.example-box.dont .label { color: var(--danger); }
.example-box .text {
  color: var(--slate-light);
  font-style: italic;
}
.example-context {
  font-family: var(--condensed);
  font-size: 0.75rem;
  color: var(--cloud);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  margin-top: 32px;
}

/* ── Values Section ─────────────────────────────────────────── */
.values-list { margin-bottom: 40px; }
.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.value-item:last-child { border-bottom: none; }
.value-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--brand-60);
  line-height: 1;
}
.value-item h4 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fathom-dark);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.7;
  max-width: 600px;
  text-wrap: pretty;
}

/* ── Never List ─────────────────────────────────────────────── */
.never-list {
  columns: 2;
  column-gap: 32px;
  margin-bottom: 40px;
}
.never-item {
  font-size: 0.875rem;
  color: var(--slate-light);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  break-inside: avoid;
  line-height: 1.5;
}
.never-item::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
  font-size: 1rem;
}

/* ── Clear Space Visual ───────────────────────────────────── */
.clearspace-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  margin: 16px 0 24px;
}
.clearspace-box {
  border: 2px dashed var(--brand-60);
  padding: 24px;
  position: relative;
}
.clearspace-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--brand-60);
  letter-spacing: 0.5px;
}
.clearspace-label.top { top: -18px; left: 50%; transform: translateX(-50%); }
.clearspace-label.right { right: -50px; top: 50%; transform: translateY(-50%); }
.clearspace-inner {
  width: 200px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--fathom-dark);
  letter-spacing: -0.5px;
  text-align: center;
}

/* ── Co-branding ─────────────────────────────────────────── */
.cobrand-demo {
  display: flex; align-items: center; gap: 24px;
  padding: 32px 40px;
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  margin: 16px 0 24px;
}
.cobrand-divider {
  width: 1px; height: 40px;
  background: var(--cloud-light);
}
.cobrand-partner {
  font-family: var(--condensed);
  font-size: 0.8125rem;
  color: var(--cloud);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cobrand-snglst,
.cobrand-primary {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--fathom-dark);
  letter-spacing: -0.5px;
}

/* ── Accessibility ───────────────────────────────────────── */
.contrast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}
.contrast-pair {
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 500;
}
.contrast-pair .ratio {
  font-family: var(--mono);
  font-size: 0.6875rem;
  margin-top: 6px;
  opacity: 0.7;
}
.contrast-pair .verdict {
  font-family: var(--condensed);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.pass { color: var(--success); }
.a11y-rule {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 0.875rem;
}
.a11y-rule:last-child { border-bottom: none; }
.a11y-rule dt {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cloud);
  padding-top: 2px;
}
.a11y-rule dd {
  color: var(--slate-light);
  line-height: 1.6;
}

/* ── Imagery Section ────────────────────────────────────────── */
.imagery-guidelines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.imagery-card {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 24px;
}

.imagery-card p {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.7;
}

.imagery-card-header {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.imagery-card-header.do { color: var(--success); }
.imagery-card-header.dont { color: var(--danger); }

/* ── Guide Intro ────────────────────────────────────────────── */
.guide-intro {
  margin: 60px auto 80px;
  max-width: 640px;
  padding: 0 20px;
}

.guide-intro .welcome {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--fathom-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.guide-intro p {
  font-size: 0.9375rem;
  color: var(--cloud-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.guide-intro p:last-child { margin-bottom: 0; }

.guide-intro a {
  color: var(--fathom-light);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-80);
  transition: border-color 0.2s ease;
}
.guide-intro a:hover { border-color: var(--fathom-light); }

/* ── Footer (shared) ────────────────────────────────────────── */
.guide-footer,
.brief-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--ivory-dark);
  margin-top: 80px;
}
.guide-footer p,
.brief-footer p {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cloud);
}
.brief-footer a {
  color: var(--fathom-light);
  border-bottom: 1px solid var(--brand-80);
}
.brief-footer a:hover { border-color: var(--fathom-light); }

.footer-icon {
  font-size: 0.875rem;
  margin-right: 3px;
  color: var(--fathom);
}
.brief-disclaimer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-dark);
  font-family: var(--sans);
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--cloud-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Table of Contents (Floating) ───────────────────────────── */
nav.toc {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  max-width: 160px;
  font-family: var(--condensed);
  font-size: 0.6875rem;
  line-height: 1.8;
  color: var(--cloud);
  border-left: 2px solid var(--ivory-dark);
  padding-left: 12px;
  z-index: 100;
}

nav.toc a {
  display: block;
  color: var(--cloud);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav.toc a:hover {
  color: var(--slate-dark);
}

nav.toc a.active {
  color: var(--brand-60);
  border-left: 2px solid var(--brand-60);
  margin-left: -14px;
  padding-left: 12px;
  font-weight: 600;
}

nav.toc a .toc-label { display: inline; }
nav.toc a .toc-num   { display: none; }

.toc-print {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 0;
  background: none;
  border: none;
  border-top: 1px solid var(--ivory-dark);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cloud);
  width: 100%;
  text-align: left;
}
.toc-print:hover {
  color: var(--slate-dark);
}
.toc-print-icon {
  font-size: 0.875rem;
  line-height: 1;
}


/* ══════════════════════════════════════════════════════════════
   Brief-specific styles
   ══════════════════════════════════════════════════════════════ */

/* ── Stat Cards ─────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.stat-grid--trio {
  grid-template-columns: repeat(3, 1fr);
}
.stat-card {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* ── Status Badge ───────────────────────────────────────────── */
.status-badge {
  margin-top: auto;
  padding-top: 12px;
}
.status-badge span {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-alpha    span { background: var(--success);    color: #fff; }
.status-dev      span { background: var(--fathom);     color: var(--brand-80); }
.status-planning span { background: var(--ivory-dark); color: var(--cloud-dark); border: 1px solid var(--cloud-light); }
.stat-card .stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--fathom-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cloud);
}

/* ── Projection Table ───────────────────────────────────────── */
.projection-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 40px;
}
.projection-table th {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cloud);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 2px solid var(--ivory-dark);
}
.projection-table th.num { text-align: right; }
.projection-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 0.875rem;
  color: var(--slate-light);
}
.projection-table td:first-child {
  font-weight: 500;
  color: var(--slate-dark);
}
.projection-table .highlight td {
  color: var(--fathom-dark);
  font-weight: 500;
  background: var(--brand-90);
}
.projection-table .num {
  font-family: var(--mono);
  font-size: 0.8125rem;
  text-align: right;
}
.projection-table tbody tr:last-child td { border-bottom: none; }
.model-live-output table tr:last-child td { border-bottom: none; }

/* Expandable detail rows in projection tables */
.expandable-row {
  cursor: pointer;
}
.expandable-row td:first-child {
  position: relative;
}
.expand-hint {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--cloud);
  margin-left: 4px;
  transition: transform 0.15s ease;
}
.expandable-row.open .expand-hint {
  transform: rotate(45deg);
}
.detail-row {
  display: none;
}
.detail-row.visible {
  display: table-row;
}
.detail-row td {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  border-bottom: none !important;
  font-size: 0.75rem !important;
  color: var(--cloud) !important;
}
.detail-label {
  padding-left: 28px !important;
  font-weight: 400 !important;
  color: var(--cloud) !important;
}

/* Paired-column variant (Base | Opt per year) */
.projection-table--paired th.year-group {
  text-align: center;
  border-bottom: 1px solid var(--ivory-dark);
  padding-bottom: 6px;
}
.projection-table--paired th.scenario-label {
  font-size: 0.625rem;
  letter-spacing: 0.8px;
  padding-top: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ivory-dark);
}
.projection-table--paired th.scenario-opt,
.projection-table--paired td.opt {
  color: var(--fathom);
  border-right: 1px solid var(--ivory-dark);
}
.projection-table--paired td.opt:last-child {
  border-right: none;
}
.projection-table--paired td {
  padding: 10px 8px;
  font-size: 0.8125rem;
}
.projection-table--paired td:first-child {
  padding-left: 16px;
  padding-right: 12px;
  white-space: nowrap;
}
.projection-table--paired .num {
  font-size: 0.75rem;
}

/* ── Competitor Details (collapsed) ─────────────────────────── */
.competitor-details {
  margin-top: 32px;
}
.competitor-details summary {
  font-family: var(--condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cloud);
  cursor: pointer;
  padding: 12px 0;
  border-top: 1px solid var(--ivory-dark);
  list-style: none;
}
.competitor-details summary::-webkit-details-marker { display: none; }
.competitor-details summary::before {
  content: "+ ";
  font-family: var(--mono);
  font-weight: 500;
  color: var(--fathom);
}
.competitor-details[open] summary::before {
  content: "– ";
}
.table-note {
  font-size: 0.6875rem;
  color: var(--cloud);
  font-weight: 400;
}
.source-notes {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-dark);
}
.source-notes p {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--cloud);
  line-height: 1.6;
  margin: 4px 0;
}
.source-notes sup {
  color: var(--slate-light);
  font-weight: 600;
}

.pull-quotes-grid {
  margin-top: 16px;
}
.pull-quotes-grid .pull-quote {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: none;
  border-left: none;
  padding-left: 0;
  margin: 0;
}
.pull-quotes-grid .pull-quote:last-child {
  border-bottom: none;
}
.pq-platform {
  grid-row: 1 / -1;
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-light);
  padding-top: 2px;
}
.pq-text {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.6;
}
.pq-source {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--cloud);
  margin-top: 4px;
}
.pq-synthesis {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  align-items: start;
  margin-top: 8px;
  padding-top: 18px;
  border-bottom: none;
  border-top: 2px solid var(--brand-60);
}
.pq-synthesis .pq-platform {
  color: var(--brand-60);
  font-weight: 600;
}
.pq-synthesis .pq-text {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  color: var(--fathom-dark);
}
.pq-synthesis .pq-source {
  color: var(--cloud);
  font-style: italic;
}

/* ── Pull Quote ─────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--fathom-dark);
  line-height: 1.5;
  border-left: 3px solid var(--brand-60);
  padding-left: 24px;
  margin: 40px 0;
  max-width: 640px;
}

/* ── Competitor Cards ───────────────────────────────────────── */
.competitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 40px;
}
.competitor-card {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 24px;
}
.competitor-card .comp-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fathom-dark);
  margin-bottom: 4px;
}
.competitor-card .comp-price {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cloud);
  margin-bottom: 12px;
}
.competitor-card .comp-issue {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.6;
}

/* ── Phase Timeline ─────────────────────────────────────────── */
.timeline {
  margin: 24px 0 40px;
  padding-left: 24px;
  border-left: 2px solid var(--ivory-dark);
}
.timeline-phase {
  padding: 0 0 32px 24px;
  position: relative;
}
.timeline-phase:last-child { padding-bottom: 0; }
.timeline-phase::before {
  content: '';
  position: absolute;
  left: -29px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand-60);
  border: 2px solid var(--ivory);
}
.timeline-phase .phase-label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-60);
  margin-bottom: 4px;
}
.timeline-phase h4 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fathom-dark);
  margin-bottom: 6px;
}
.timeline-phase p {
  font-size: 0.875rem;
  color: var(--cloud-dark);
  line-height: 1.6;
}

/* ── Brief Intro ────────────────────────────────────────────── */
.brief-intro {
  margin: 60px 0 80px;
  max-width: 640px;
  padding: 0;
}
.brief-intro p {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.brief-intro p:last-child { margin-bottom: 0; }


/* ══════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  nav.toc {
    width: auto;
    padding-left: 0;
    border-left: none;
    left: 8px;
  }
  nav.toc a .toc-label { display: none; }
  nav.toc a .toc-num   { display: inline; }
  nav.toc a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 2px;
    font-size: 0.625rem;
    letter-spacing: 0;
  }
  nav.toc a:hover {
    background: var(--ivory-dark);
  }
  nav.toc a.active {
    background: var(--brand-90);
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .toc-print {
    justify-content: center;
    border-top: none;
    margin-top: 6px;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 4px;
  }
  .toc-print:hover { background: var(--ivory-dark); }
  .toc-print-label { display: none; }
}

@media (max-width: 900px) {
  .imagery-guidelines {
    grid-template-columns: 1fr;
  }
  .competitor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page { padding: 24px 20px 60px; }
  .cover { padding: 40px 32px; }
  .cover-logo { height: 44px; }
  .logo-row,
  .type-face-grid,
  .voice-grid,
  .example-pair { grid-template-columns: 1fr; }
  .palette-row { flex-wrap: wrap; }
  .palette-row .swatch { min-width: calc(50% - 4px); }
  .never-list { columns: 1; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .pull-quotes-grid .pull-quote {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .pq-platform { padding-top: 0; }
  .terms-sheet dl { grid-template-columns: 1fr; }
  .terms-sheet dt { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 480px) {
  nav.toc { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid--trio { grid-template-columns: 1fr; }
}

/* ── Investor Addendum ─────────────────────────────────────── */
/* Hidden by default; shown when body has .show-investor */
.investor-addendum { display: none; }
.investor-toc-link { display: none !important; }

body.show-investor .investor-addendum { display: block; }
body.show-investor .investor-toc-link { display: flex !important; }

/* In investor mode: hide partner section 11 and its TOC link */
body.show-investor #sec-ask,
body.show-investor #divider-before-ask,
body.show-investor a[href="#sec-ask"] { display: none !important; }

.investor-rule {
  max-width: 120px;
  height: 2px;
  background: var(--brand-50);
  margin: 48px auto 40px;
  border-radius: 1px;
}

/* Terms Sheet (collapsible) */
.terms-sheet { margin-top: 32px; }
.terms-sheet summary {
  font-family: var(--condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cloud);
  cursor: pointer;
  padding: 12px 0;
  border-top: 1px solid var(--ivory-dark);
  list-style: none;
}
.terms-sheet summary::-webkit-details-marker { display: none; }
.terms-sheet summary::before {
  content: "+ ";
  font-family: var(--mono);
  font-weight: 500;
  color: var(--fathom);
}
.terms-sheet[open] summary::before {
  content: "\2013  ";
}
.terms-sheet dl {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}
.terms-sheet dt {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--slate-light);
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.terms-sheet dd {
  font-size: 0.8125rem;
  color: var(--cloud-dark);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.terms-sheet dl > dt:last-of-type,
.terms-sheet dl > dd:last-of-type {
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════
   Print
   ══════════════════════════════════════════════════════════════ */

@media print {
  /* Page setup */
  @page {
    margin: 1.5cm 2cm;
    size: A4;
  }

  /* White background, black text */
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Remove fixed/floating UI */
  nav.toc { display: none !important; }

  /* Layout: full width, no padding */
  .page {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* Cover: light treatment */
  .cover {
    background: #0A2938 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-radius: 0;
    padding: 40px;
    margin-bottom: 40px;
    page-break-after: avoid;
  }

  /* Section breaks */
  .section {
    margin-bottom: 40px;
    page-break-inside: avoid;
  }
  .divider {
    display: none;
  }

  /* Tighten vertical rhythm for print */
  .section-intro { margin-bottom: 24px; }
  .subsection-label { margin-top: 28px; margin-bottom: 10px; break-after: avoid; }
  .logo-note { break-inside: avoid; }
  .values-list { margin-bottom: 24px; }
  .value-item { padding: 14px 0; gap: 12px; }
  .pull-quote { margin: 20px 0; padding: 14px 24px; break-inside: avoid; }
  table { break-inside: avoid; }

  /* Typography: ensure dark text */
  .section-number { color: #999; }
  .section-title { color: #000; }
  .section-intro { color: #333; }
  .logo-note { color: #333; }
  .subsection-label { color: #555; }

  /* Stat cards: bordered instead of background */
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .stat-card {
    background: #fff;
    border: 1px solid #ccc;
  }
  .stat-card .stat-value { color: #000; }
  .stat-card .stat-label { color: #555; }

  /* Tables */
  .projection-table th {
    color: #555;
    border-bottom-color: #999;
  }
  .projection-table td {
    color: #333;
    border-bottom-color: #ddd;
  }
  .projection-table td:first-child { color: #000; }
  .projection-table .highlight td {
    background: #f0f0f0 !important;
    color: #000;
  }
  .projection-table .num { color: #333; }

  /* Expandable rows: show all detail rows */
  .detail-row { display: table-row !important; }
  .expand-hint { display: none !important; }
  .detail-row td { color: #666 !important; }
  .detail-label { color: #666 !important; }

  /* Pull quotes */
  .pull-quote {
    border-left-color: #999;
  }
  .pq-text { color: #000; }
  .pq-platform { color: #666; }

  /* Links: show URLs */
  a { color: #000; }
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
    font-family: var(--mono);
  }
  /* But not nav/internal links */
  nav a[href]:after,
  .toc-link:after,
  a[href^="#"]:after { content: none; }

  /* Details: force open, show summary as heading */
  details { display: block; }
  details > summary {
    display: block;
    list-style: none;
    cursor: default;
    color: #555;
  }
  details > summary::-webkit-details-marker { display: none; }
  details > summary::before { content: none !important; }
  details > *:not(summary) { display: block; }

  /* Footer */
  .brief-footer {
    border-top-color: #ccc;
  }
  .brief-footer p { color: #666; }
  .footer-icon { color: #333; }

  /* Explicit page breaks */
  .print-break { page-break-after: always; }
  .print-break-before { page-break-before: always; }

  /* Investor addendum: print only if visible */
  .investor-addendum { display: none !important; }
  body.show-investor .investor-addendum {
    display: block !important;
    page-break-before: always;
  }
  body.show-investor #sec-ask,
  body.show-investor #divider-before-ask,
  body.show-investor a[href="#sec-ask"] { display: none !important; }
  .investor-rule {
    display: none;
  }
  /* Terms sheet: force open in print */
  .terms-sheet dl { grid-template-columns: 140px 1fr; }
  .terms-sheet dt { color: #333; padding: 7px 12px 7px 0; }
  .terms-sheet dd { color: #444; padding: 7px 0; line-height: 1.5; }

  /* No box-shadows */
  * { box-shadow: none !important; }
}

/* ── Live Assumptions Panel ──────────────────────────────────────────── */

.assumptions-panel {
  border: 1px solid var(--brand-80);
  border-radius: 12px;
  background: var(--brand-90);
  margin: 24px 0 8px;
  overflow: hidden;
}

.assumptions-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.assumptions-panel summary::-webkit-details-marker { display: none; }

.assumptions-panel-title {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fathom);
}
.assumptions-panel-hint { display: none; }
.assumptions-panel summary::-webkit-details-marker { display: none; }
.assumptions-panel summary::before {
  content: "+ ";
  font-family: var(--mono);
  font-weight: 500;
  color: var(--fathom);
}
.assumptions-panel[open] summary::before {
  content: "– ";
}

.assumptions-body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--brand-80);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.assumption-group {
  padding-top: 20px;
}

.assumption-group-label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-40);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brand-80);
}

.assumption-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.assumption-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.3;
}

.assumption-label .badge {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}
.assumption-label .badge-p {
  background: #FEF3C7;
  color: #92400E;
}
.assumption-label .badge-a {
  background: var(--brand-90);
  color: var(--fathom-light);
  border: 1px solid var(--brand-80);
}
.assumption-label .badge-c {
  background: #F0FDF4;
  color: #166534;
}

.assumption-input-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.assumption-input {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--fathom-dark);
  background: var(--ivory-light);
  border: 1px solid var(--brand-80);
  border-radius: 6px;
  padding: 4px 8px;
  width: 80px;
  text-align: right;
}
.assumption-input:focus {
  outline: none;
  border-color: var(--fathom-light);
  background: #fff;
}

.assumption-input.wide { width: 100px; }
.assumption-input.narrow { width: 60px; }

select.assumption-input {
  width: auto;
  padding-right: 4px;
  cursor: pointer;
}

.reset-btn {
  background: none;
  border: 1px solid var(--brand-80);
  border-radius: 5px;
  color: var(--brand-40);
  font-size: 0.8125rem;
  line-height: 1;
  padding: 3px 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.reset-btn:hover {
  background: var(--fathom);
  border-color: var(--fathom);
  color: #fff;
}

/* Live output */
.model-live-output {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-80);
}

.model-live-output .output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.model-live-output .output-label {
  font-family: var(--condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-40);
  margin-bottom: 12px;
}

.model-live-output table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.model-live-output td {
  padding: 6px 0;
  border-bottom: 1px solid var(--brand-80);
  color: var(--slate-light);
}
.model-live-output td:first-child {
  color: var(--slate-dark);
  font-weight: 500;
}
.model-live-output td:last-child {
  font-family: var(--mono);
  text-align: right;
  color: var(--fathom-dark);
  font-weight: 600;
}
.model-live-output tr:last-child td { border-bottom: none; }
.model-live-output .highlight-row td { color: var(--fathom-dark); }
.model-live-output .exit-gain { color: var(--success) !important; }

/* ── Legal Pages ──────────────────────────────────────────── */
/* Used by: terms.html, privacy.html, community-guidelines.html, copyright.html */

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

.legal-page h1 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fathom-dark);
  margin-bottom: 8px;
}

.legal-page .effective-date {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--cloud);
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--fathom);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ivory-dark);
}

.legal-page h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--slate-light);
  line-height: 1.7;
}

.legal-page ul, .legal-page ol {
  margin: 0 0 16px 24px;
  color: var(--slate-light);
  line-height: 1.7;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page strong {
  color: var(--slate-dark);
  font-weight: 600;
}

.legal-page a {
  color: var(--brand-40);
  text-decoration: underline;
  text-decoration-color: var(--brand-80);
  text-underline-offset: 2px;
}
.legal-page a:hover {
  text-decoration-color: var(--brand-40);
}

.legal-page .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--fathom-dark);
}

.legal-page .legal-nav a {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cloud-dark);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--ivory-dark);
  border-radius: 4px;
  transition: all 0.15s;
}

.legal-page .legal-nav a:hover {
  color: var(--fathom);
  border-color: var(--brand-80);
  background: var(--brand-90);
}

.legal-page .legal-nav a.active {
  color: var(--fathom-dark);
  border-color: var(--fathom-dark);
  background: var(--brand-90);
  font-weight: 500;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.875rem;
}

.legal-page th {
  font-family: var(--condensed);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--cloud-dark);
  text-align: left;
  padding: 8px 12px;
  border-bottom: 2px solid var(--ivory-dark);
}

.legal-page td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--slate-light);
  vertical-align: top;
}

.legal-page .callout {
  background: var(--brand-90);
  border-left: 3px solid var(--brand-40);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}

.legal-page .callout p {
  margin-bottom: 0;
  color: var(--fathom-dark);
}

.legal-page .contact-block {
  background: var(--ivory-light);
  border: 1px solid var(--ivory-dark);
  padding: 20px 24px;
  border-radius: 6px;
  margin: 24px 0;
}

.legal-page .contact-block p {
  margin-bottom: 4px;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .legal-page { padding: 32px 20px 60px; }
  .legal-page h1 { font-size: 1.625rem; }
  .legal-page h2 { font-size: 1.1875rem; }
  .legal-page .legal-nav { gap: 6px; }
  .legal-page .legal-nav a { font-size: 0.6875rem; padding: 3px 8px; }
}
