:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --text: #111827;
  --text-soft: #4b5563;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --primary: #111111;
  --primary-hover: #000000;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 940px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
  color: var(--text);
  line-height: 1.7;
}

/* Page */
.legal-page {
  min
