/* Base — Maevia legal pages (dark theme) */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f5f5f5;
  --text-muted: #b8b8b8;
  --text-dim: #7d7d7d;
  --green: #4ade80;
  --maevia: #c084fc;
  --maevia-light: #d4abff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--maevia); text-decoration: none; }
a:hover { color: var(--maevia-light); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px); z-index: 10;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.nav-logo .mark { color: var(--maevia); }
.nav-links, .nav-cta, .nav-toggle { display: none; }

.article { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.crumbs { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.article-head h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 5vw, 42px); font-weight: 700;
  line-height: 1.2; margin-bottom: 12px;
}
.article-body h2 {
  font-size: 22px; font-weight: 700; margin: 40px 0 14px;
}
.article-body h3 { font-size: 17px; font-weight: 600; margin: 26px 0 10px; }
.article-body p, .article-body li { color: var(--text-muted); margin-bottom: 12px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body strong { color: var(--text); }
.article-body code {
  font-family: "JetBrains Mono", monospace; font-size: 13px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 6px;
}

footer { border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-grid { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; }
.footer-brand { font-weight: 700; }
.footer-col { font-size: 14px; color: var(--text-dim); }
.footer-col a { display: block; color: var(--text-dim); margin-bottom: 6px; }
.footer-col a:hover { color: var(--maevia); }
.footer-bottom {
  max-width: 960px; margin: 32px auto 0; font-size: 12px; color: var(--text-dim);
}
