/* Shared theme for product legal documents (/legal/<product>/<doc>).
   Deliberately plain and separate from the main site's design. */
:root{
  --bg:#ffffff; --fg:#1d1d1f; --muted:#6e6e73; --link:#0066cc; --rule:#e5e5e7;
}
@media (prefers-color-scheme: dark){
  :root{ --bg:#161617; --fg:#e8e8ed; --muted:#98989d; --link:#6cb4ff; --rule:#2d2d30; }
}
*{ box-sizing:border-box }
body{
  margin:0 auto; padding:48px 24px 64px; max-width:640px;
  background:var(--bg); color:var(--fg);
  font:16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
header{ margin-bottom:2.5rem }
.product{
  margin:0; font-size:13px; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--muted);
}
h1{ margin:0.3rem 0 0.2rem; font-size:28px; letter-spacing:-0.01em }
.date{ margin:0; color:var(--muted); font-size:14px }
h2{ font-size:17px; margin:2rem 0 0.5rem }
p{ margin:0 0 0.9rem }
ul{ padding-left:1.3rem; margin:0 0 1rem }
li{ margin-bottom:0.5rem }
a{ color:var(--link); text-decoration:none }
a:hover{ text-decoration:underline }
footer{
  margin-top:3.5rem; padding-top:1.5rem;
  border-top:1px solid var(--rule); color:var(--muted); font-size:14px;
}
footer a{ color:inherit; text-decoration:underline }
