/* legal-shared.css — styling for privacy.html and terms.html */
:root{
  --bg:#0f1117; --surface:#1c2028; --border:#2a2f3a;
  --accent:#3d9bff; --text:#f1f5f9; --muted:#8b95a8;
}
@media (prefers-color-scheme: light){
  :root{ --bg:#f0f4f8; --surface:#ffffff; --border:#d1d9e0;
         --accent:#0062cc; --text:#111827; --muted:#5b6575; }
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg); color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:17px; line-height:1.65;
  -webkit-text-size-adjust:100%;
}
.wrap{max-width:720px; margin:0 auto; padding:32px 20px 96px}
header.bar{
  border-bottom:1px solid var(--border); margin-bottom:40px; padding-bottom:20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.brand{font-size:24px; font-weight:700; letter-spacing:-.01em; text-decoration:none; color:var(--text)}
.brand .my{color:var(--accent)}
.back{font-size:15px; color:var(--accent); text-decoration:none; font-weight:500}
.back:hover{text-decoration:underline}
h1{font-size:34px; line-height:1.2; letter-spacing:-.02em; margin:0 0 8px}
.eff{color:var(--muted); font-size:15px; margin:0 0 36px}
h2{font-size:21px; line-height:1.3; letter-spacing:-.01em; margin:40px 0 12px}
h3{font-size:17px; margin:28px 0 8px}
p,li{color:var(--text)}
p{margin:0 0 16px}
ul{margin:0 0 16px; padding-left:22px}
li{margin:0 0 8px}
a{color:var(--accent)}
strong{font-weight:650}
.callout{
  background:var(--surface); border:1px solid var(--border);
  border-left:3px solid var(--accent); border-radius:10px;
  padding:16px 18px; margin:0 0 24px;
}
.callout p:last-child{margin-bottom:0}
.tldr{background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:20px 22px; margin:0 0 36px}
.tldr h2{margin-top:0; font-size:18px}
.tldr ul{margin-bottom:0}
footer.bar{
  border-top:1px solid var(--border); margin-top:56px; padding-top:20px;
  color:var(--muted); font-size:14px;
}
footer.bar a{margin-right:16px}
@media (max-width:600px){
  body{font-size:16px}
  h1{font-size:28px}
  .wrap{padding:24px 18px 72px}
}
