/* Shared styles for Petsify legal pages (privacy, terms) */
@font-face {
  font-family: 'DynaPuff';
  src: url('assets/fonts/DynaPuff-Variable.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --s0:#0D0D0F; --s1:#08080A; --s2:#16181C; --s3:#1C1F25;
  --text-1:#fff; --text-2:rgba(255,255,255,0.62); --text-3:rgba(255,255,255,0.45);
  --line:rgba(255,255,255,0.10); --accent:#8F78FA; --accent-soft:#A593FB;
  --radius:18px; --max-w:760px;
  --bezel:cubic-bezier(0.32,0.72,0,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:var(--s0); color:var(--text-2);
  line-height:1.7; -webkit-font-smoothing:antialiased;
}
a{color:var(--accent-soft);text-decoration:none}
a:hover{text-decoration:underline}
.legal-nav{
  position:sticky; top:0; z-index:10;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px clamp(20px,5vw,48px);
  background:rgba(13,13,15,0.85);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.legal-brand{display:flex;align-items:center;gap:9px}
.legal-brand img{width:30px;height:30px;object-fit:contain}
.legal-brand span{font-family:'DynaPuff',sans-serif;font-size:18px;font-weight:600;color:var(--text-1)}
.legal-back{font-size:14px;font-weight:600;color:var(--text-2)}
.legal-back:hover{color:var(--text-1);text-decoration:none}
.legal-wrap{max-width:var(--max-w);margin:0 auto;padding:64px clamp(20px,5vw,48px) 100px}
.legal-eyebrow{
  font-size:11px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--accent-soft);margin-bottom:14px;display:block;
}
.legal-wrap h1{
  font-family:'DynaPuff',sans-serif;font-weight:600;
  font-size:clamp(32px,5vw,48px);line-height:1.1;letter-spacing:-0.02em;
  color:var(--text-1);margin-bottom:12px;
}
.legal-updated{font-size:14px;color:var(--text-3);margin-bottom:48px}
.legal-wrap h2{
  font-family:'DynaPuff',sans-serif;font-weight:600;
  font-size:22px;color:var(--text-1);margin:40px 0 14px;letter-spacing:-0.01em;
}
.legal-wrap h3{font-size:16px;font-weight:700;color:var(--text-1);margin:24px 0 8px}
.legal-wrap p{margin-bottom:16px;font-size:15.5px}
.legal-wrap ul{margin:0 0 16px 0;padding-left:22px}
.legal-wrap li{margin-bottom:8px;font-size:15.5px}
.legal-wrap strong{color:var(--text-1);font-weight:700}
.legal-intro{
  background:var(--s2);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 24px;margin-bottom:40px;font-size:15px;color:var(--text-2);
}
.legal-foot{
  border-top:1px solid var(--line);margin-top:56px;padding-top:28px;
  font-size:13px;color:var(--text-3);
}
