/* Shared legal-page styles for privacy.html and terms.html */
:root{
  --bg:#0a0a0a;
  --text:#f5f5f0;
  --text-dim:rgba(245,245,240,0.65);
  --text-faint:rgba(245,245,240,0.40);
  --green:#10b981;
  --border:rgba(245,245,240,0.08);
  --rule:rgba(245,245,240,0.06);
}
*,*::before,*::after{ box-sizing:border-box }
html,body{ margin:0; padding:0 }
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.wrap{
  max-width:720px;
  margin:0 auto;
  padding:32px 24px 96px;
}

.back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--text-dim);
  text-decoration:none;
  font-size:14px;
  padding:8px 0;
  margin-bottom:32px;
  transition:color .15s ease;
}
.back:hover{ color:var(--text); }
.back .arrow{ display:inline-block; transform:translateY(-1px); }

.eyebrow{
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--green);
  font-weight:600;
  margin:0 0 12px;
}

article h1{
  font-family:'Inter Tight','Inter',sans-serif;
  font-weight:700;
  font-size:clamp(32px,5vw,44px);
  letter-spacing:-0.025em;
  line-height:1.1;
  margin:0 0 8px;
  color:var(--text);
}

article .updated{
  color:var(--text-faint);
  font-size:13px;
  margin:0 0 40px;
}

article h2{
  font-family:'Inter Tight','Inter',sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:-0.01em;
  line-height:1.25;
  margin:48px 0 12px;
  color:var(--text);
}

article h3{
  font-family:'Inter','Inter Tight',sans-serif;
  font-weight:600;
  font-size:16px;
  margin:28px 0 8px;
  color:var(--text);
}

article p{
  margin:0 0 16px;
  color:var(--text-dim);
}

article ul, article ol{
  margin:0 0 16px;
  padding-left:22px;
  color:var(--text-dim);
}
article li{ margin:6px 0; }
article li::marker{ color:var(--text-faint); }

article a{
  color:var(--green);
  text-decoration:none;
  border-bottom:1px solid rgba(16,185,129,0.35);
}
article a:hover{ border-bottom-color:var(--green); }

article strong{ color:var(--text); font-weight:600; }
article hr{
  border:0;
  border-top:1px solid var(--rule);
  margin:48px 0;
}

footer.site-footer{
  max-width:720px;
  margin:0 auto;
  padding:24px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px 24px;
  font-size:13px;
  color:var(--text-faint);
}
footer.site-footer a{
  color:var(--text-dim);
  text-decoration:none;
}
footer.site-footer a:hover{ color:var(--text); }
footer.site-footer .sep{ user-select:none; }

@media (max-width:480px){
  .wrap{ padding:24px 20px 64px; }
  article h2{ margin-top:36px; }
}
