/* Zeno legal pages — shared styles
 * Matches the in-app design tokens: warm off-white bg, accent green,
 * ink-on-bg type, generous mobile-first spacing.
 */

:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --ink: #0D0D0D;
  --muted: #8A8A8A;
  --subtle: #E8E6E1;
  --accent: #639922;
  --accent-soft: #E8F0DA;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

@media (max-width: 640px) {
  main {
    padding: 32px 20px 64px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  h1 {
    font-size: 26px;
  }
}

.last-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}

h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}

p {
  margin-bottom: 12px;
  color: var(--ink);
}

ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
  color: var(--ink);
}

strong {
  font-weight: 700;
  color: var(--ink);
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.callout {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
}

.divider {
  height: 1px;
  background: var(--subtle);
  margin: 48px 0 24px;
  border: none;
}

.footer {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 48px;
}

.footer a {
  color: var(--muted);
}

.warning {
  background: #FEF6E7;
  border-left: 3px solid #E8B84C;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
}
