/* Shared styling for Ownly's legal documents.
   These are deliberately standalone pages rather than panels inside the app:
   a legal document needs a stable, linkable URL and must render even if the
   application fails to boot. */
:root{
  --bg:#ffffff;
  --surface:#f6faf8;
  --border:#dcece2;
  --text:#12211b;
  --text-soft:#4a5c54;
  --text-faint:#7b8b83;
  --green-600:#189a5c;
  --green-700:#167a4c;
  --green-950:#08281e;
}
*{box-sizing:border-box;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:15px;
  line-height:1.65;
}
.legal-head{
  border-bottom:1px solid var(--border);
  padding:18px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  position:sticky;top:0;background:var(--bg);z-index:5;
}
.legal-brand{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-weight:700;font-size:17px;color:var(--green-950);
  display:flex;align-items:center;gap:8px;text-decoration:none;
}
.legal-brand .dot{width:9px;height:9px;border-radius:50%;background:var(--green-600);}
.legal-back{
  font-size:13.5px;font-weight:600;color:var(--green-700);
  text-decoration:none;padding:8px 14px;border:1px solid var(--border);
  border-radius:10px;background:var(--surface);
}
.legal-back:hover{border-color:var(--green-600);}
.legal-wrap{max-width:760px;margin:0 auto;padding:36px 24px 80px;}
h1{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:32px;line-height:1.15;letter-spacing:-0.02em;
  color:var(--green-950);margin:0 0 6px;
}
.legal-dates{
  font-size:13px;color:var(--text-faint);margin:0 0 28px;
  padding-bottom:20px;border-bottom:1px solid var(--border);
}
.legal-dates strong{color:var(--text-soft);font-weight:600;}
h2{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:18px;margin:34px 0 10px;color:var(--green-950);
}
p{margin:0 0 13px;color:var(--text-soft);}
ul{margin:0 0 14px;padding-left:22px;color:var(--text-soft);}
li{margin-bottom:6px;}
a{color:var(--green-700);}
strong{color:var(--text);}
.legal-note{
  background:var(--surface);border:1px solid var(--border);
  border-radius:12px;padding:14px 16px;margin:28px 0 0;
  font-size:13.5px;color:var(--text-soft);
}
.legal-foot{
  margin-top:40px;padding-top:20px;border-top:1px solid var(--border);
  font-size:13px;color:var(--text-faint);
}
@media (max-width:600px){
  .legal-wrap{padding:26px 18px 60px;}
  h1{font-size:26px;}
}
