/* Buzz legal pages (terms + privacy). Long-form content style — left-
   aligned reading column, generous line-height, dark warm-slate palette
   matching the in-app theme so the handoff feels native. */

:root {
  --bg: #0E0E10;
  --surface: #15151A;
  --surface-2: #1D1D24;
  --border: #26262E;
  --text: #F2EBDF;
  --text-muted: #9A9388;
  --text-dim: #5C564E;
  --accent: #5B8FE0;
  --accent-glow: rgba(91, 143, 224, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

/* Top bar — brand on left, sibling-page link on right */
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-decoration: none;
}

.head-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}
.head-link:hover { color: var(--accent); }

h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0 0 4px;
}

.meta {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 24px;
}

.banner {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 36px 0 12px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text);
}

p {
  margin: 0 0 14px;
  color: var(--text);
}

ul {
  padding-left: 22px;
  margin: 0 0 14px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

strong { color: var(--text); }

em { color: var(--text-muted); font-style: italic; }

.foot {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.foot a {
  color: var(--text-muted);
  margin: 0 4px;
}
.foot a:first-child { margin-left: 0; }
.foot a:hover { color: var(--accent); }
