/* Shared styles for static legal/blog pages — kept minimal and brand-aligned */
:root {
  --bg: #ffffff;
  --fg: #0b0b1a;
  --muted: #5b6072;
  --border: #e6e7ee;
  --primary: #4f46e5;
  --primary-2: #7c3aed;
  --card: #f7f7fb;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-header .inner { display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--fg); }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.nav-cta:hover { text-decoration: none; opacity: .92; }
main { padding: 48px 0 64px; }
h1 { font-size: 36px; line-height: 1.15; margin: 0 0 24px; font-weight: 800; }
h2 { font-size: 22px; margin: 32px 0 12px; font-weight: 700; color: var(--fg); }
h3 { font-size: 18px; margin: 24px 0 10px; font-weight: 700; }
p, li { color: #2b2f3a; }
.muted { color: var(--muted); }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }
.section { margin-bottom: 28px; }
.back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.callout { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }
.cta-box { margin: 32px 0; padding: 24px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(124,58,237,.08));
  border: 1px solid rgba(79,70,229,.2); text-align: center; }
.cta-btn { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important; font-weight: 600; padding: 12px 24px; border-radius: 999px; }
.cta-btn:hover { text-decoration: none; opacity: .92; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 999px; background: rgba(79,70,229,.12); color: var(--primary); margin-bottom: 12px; }
.lead { font-size: 18px; color: var(--muted); }
.site-footer { background: #0b0b1a; color: rgba(255,255,255,.7); padding: 48px 0; margin-top: 64px; }
.site-footer .grid { display: grid; gap: 32px; grid-template-columns: 2fr 1fr 1fr; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #fff; }
.site-footer .copy { max-width: 1100px; margin: 32px auto 0; padding: 24px 20px 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) {
  h1 { font-size: 28px; }
  .site-footer .grid { grid-template-columns: 1fr; }
}
