:root {
  --bg: #faf6f0;
  --text: #18181b;
  --muted: #71717a;
  --violet: #7c3aed;
  --border: rgba(24, 24, 27, 0.08);
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
}

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

.legal-nav a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

h1 { font-size: 2rem; margin-bottom: 8px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
h2 { font-size: 1.1rem; margin-top: 28px; }
a { color: var(--violet); }
footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
