/* Shared Brand Poster theme for content/legal pages */
:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --grad: linear-gradient(120deg, #6d5efc 0%, #4f46e5 55%, #7c3aed 100%);
  --accent: #4f46e5;
  --text: #1f2430;
  --muted: #6b7280;
  --heading: #111827;
  --border: #e6e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.glow { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.glow::before, .glow::after { content: ""; position: absolute; border-radius: 50%; filter: blur(120px); opacity: .18; }
.glow::before { width: 480px; height: 480px; background: #7c5cff; top: -180px; left: -140px; }
.glow::after  { width: 440px; height: 440px; background: #4f46e5; bottom: -200px; right: -140px; }

.page { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; padding: 0 24px 80px; }

nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; color: var(--heading); }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.nav-cta { background: var(--grad); color: #ffffff; font-weight: 700; padding: 9px 18px; border-radius: 999px; font-size: 14px; }
.nav-cta:hover { text-decoration: none; opacity: .92; }

h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; letter-spacing: -1px; margin: 32px 0 6px; text-align: center; color: var(--heading); }
h1 .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.updated { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px clamp(20px, 4vw, 40px);
  box-shadow: 0 10px 40px rgba(31, 36, 48, .05);
  color: #333a49;
  font-size: 16px;
}
.content h3 { font-size: 19px; margin: 28px 0 10px; color: var(--heading); }
.content b { color: var(--heading); }
.content p { margin: 10px 0; }
.content ol, .content ul { margin: 10px 0 10px 24px; }
.content li { margin: 6px 0; }
.content a { font-weight: 600; }

footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 30px 0; margin-top: 40px; color: var(--muted); font-size: 14px; text-align: center; }
footer a { color: var(--muted); margin: 0 12px; }
footer a:hover { color: var(--heading); }
