/* CV — shared styling for standalone legal/info pages (accessibility
   statement, privacy policy). Static content, no scroll animation, so
   this reuses the main design tokens without any of the hero/motion
   machinery. */

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 243, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--border);
  padding-block: var(--sp-2);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-weight: 700;
  font-size: var(--step-sm);
}

.legal-brand img {
  height: 32px;
  width: auto;
}

.legal-back {
  font-size: var(--step-sm);
  font-weight: 600;
  color: var(--accent);
}

.legal-content {
  max-width: 46rem;
}

.legal-content h1 {
  font-size: var(--step-xl);
  margin-bottom: var(--sp-2);
}

.legal-content h2 {
  font-size: var(--step-lg);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}

.legal-content p {
  color: var(--ink-soft);
  margin-top: var(--sp-2);
}

.legal-content ul {
  margin-top: var(--sp-2);
  padding-inline-start: 1.4rem;
  list-style: disc;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.legal-content li {
  padding-inline-start: 0.3rem;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content code {
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  padding: 0.1em 0.4em;
  font-size: 0.9em;
  direction: ltr;
  display: inline-block;
}

.legal-updated {
  color: var(--ink-soft);
  font-size: var(--step-xs);
  margin-bottom: var(--sp-4);
}
