/* Shared styling for Novo's public legal pages. Matches the app/CMS design tokens
   (accent #d32f71, dark-first) but stands alone — these pages must render with no
   build step, no framework and no external requests. */
:root {
  --bg: #0a0a10; --surface: #14141f; --border: #262636;
  --text: #eef0f6; --text2: #b6b9c9; --text3: #7b7f93;
  --accent: #d32f71; --accent2: #ec6198;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #f3f5f9; --surface: #fff; --border: #dde1ea;
          --text: #191c27; --text2: #454b5b; --text3: #6b7280; }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0 20px 80px;
}
.wrap { max-width: 760px; margin: 0 auto; }
header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.mark {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, #d32f71, #240567);
  display: grid; place-items: center; font-size: 20px;
}
.brand span { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
h1 { font-size: 30px; line-height: 1.25; margin: 0 0 10px; letter-spacing: -0.02em; }
h2 { font-size: 19px; margin: 40px 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 16px; margin: 26px 0 8px; color: var(--text2); }
p, li { color: var(--text2); }
li { margin-bottom: 7px; }
a { color: var(--accent2); }
.meta { color: var(--text3); font-size: 14px; margin: 0; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 24px 0;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card p:first-child { margin-top: 0; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text); font-weight: 600; white-space: nowrap; }
td { color: var(--text2); }
code { background: var(--surface); border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px; font-size: 14px; }
footer { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text3); font-size: 14px; }
footer a { margin-right: 18px; }
.btn {
  display: inline-block; background: linear-gradient(135deg, #d32f71, #240567);
  color: #fff; text-decoration: none; padding: 13px 26px; border-radius: 10px;
  font-weight: 600; margin-top: 8px;
}
