/* Shared chrome for /privacy and /terms.
   These are plain static pages, not part of the SPA, so they carry the
   marketing site's tokens rather than the app's Tailwind build. */
:root{
  --yellow:#FFE600; --black:#0B0B0B; --ink:#141414;
  --paper:#F7F5EF; --muted:#6B6B63; --line:rgba(11,11,11,.12);
  --maxw:760px; --ease:cubic-bezier(.22,.61,.36,1);
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;
  background:var(--paper); color:var(--ink);
  -webkit-font-smoothing:antialiased; line-height:1.65;
  /* Column layout so the footer sits at the bottom of the viewport on short
     pages instead of floating mid-screen under a run of empty paper. */
  min-height:100vh; display:flex; flex-direction:column;
}
.topbar{flex-shrink:0}
.topbar{background:var(--black);padding:20px 24px}
.topbar .wrap{max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px}
.topbar img{height:26px;width:auto;display:block}
.topbar a.back{color:#C9C7BE;text-decoration:none;font-size:.9rem}
.topbar a.back:hover{color:#fff}
main{max-width:var(--maxw);width:100%;margin:0 auto;padding:clamp(40px,7vw,72px) 24px 40px;flex:1;display:flex;flex-direction:column}
main>*{width:100%}
h1{font-family:'Playfair Display',Georgia,serif;font-weight:800;letter-spacing:-.02em;
   font-size:clamp(2.1rem,5.4vw,3.1rem);line-height:1.06;margin-bottom:10px}
.updated{color:var(--muted);font-size:.9rem;margin-bottom:40px}
h2{font-family:'Playfair Display',Georgia,serif;font-weight:700;letter-spacing:-.015em;
   font-size:clamp(1.3rem,2.8vw,1.6rem);margin:40px 0 12px;line-height:1.2}
h3{font-size:1rem;font-weight:700;margin:24px 0 8px}
p,li{color:#2A2A28;font-size:1rem}
p{margin-bottom:14px}
ul{margin:0 0 16px 22px}
li{margin-bottom:8px}
a{color:#8A6D00}
a:hover{text-decoration:underline}
strong{font-weight:650;color:var(--ink)}
.lede{font-size:1.1rem;color:#3A3A36;border-left:3px solid var(--yellow);padding-left:18px;margin-bottom:32px}
table{width:100%;border-collapse:collapse;margin:8px 0 20px;font-size:.94rem}
th,td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line);vertical-align:top}
th{font-weight:650;background:rgba(11,11,11,.03)}
/* margin-top:auto absorbs free space on short pages, pinning the foot down;
   the h2/p margins above provide the gap when content is long. */
.foot{border-top:1px solid var(--line);margin-top:auto;padding-top:24px;color:var(--muted);font-size:.9rem}
main>*:nth-last-child(2){margin-bottom:40px}
.foot a{color:#8A6D00}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
