/* Shared styles for the legal/content pages (privacy, terms).
   Matches the homepage design language: bright, Instrument Sans, clean. */
:root{
  --bg:#FCFCFB; --panel:#FFFFFF; --text:#1D1D1F; --muted:#6E6E73;
  --line:#EAEAE7; --accent:#C8553D;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);
  font-family:'Instrument Sans',-apple-system,system-ui,sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased}
.wrap{max-width:720px;margin:0 auto;padding:0 28px}

/* Nav */
.nav{border-bottom:1px solid var(--line)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:8px;font-weight:700;font-size:15px;
  letter-spacing:-.01em;color:var(--text);text-decoration:none}
.brand-icon{width:24px;height:24px;display:block;flex:none}
.nav-back{font-family:'Geist Mono',monospace;font-size:12px;color:var(--muted);
  text-decoration:none;letter-spacing:.03em}
.nav-back:hover{color:var(--text)}

/* Prose */
.prose{padding:52px 0 8px}
.prose h1{font-size:clamp(30px,5vw,44px);font-weight:700;letter-spacing:-.025em;line-height:1.1;margin-bottom:8px}
.prose .updated{font-family:'Geist Mono',monospace;font-size:12.5px;color:var(--muted);
  letter-spacing:.03em;margin-bottom:34px}
.prose h2{font-size:18px;font-weight:600;margin:34px 0 8px;letter-spacing:-.01em}
.prose p{font-size:16px;color:#3a3a3c;margin-bottom:14px}
.prose a{color:var(--accent);text-decoration:none}
.prose a:hover{text-decoration:underline}
.prose strong{color:var(--text);font-weight:600}
.prose em{color:var(--muted);font-style:italic}

/* Footer */
footer{border-top:1px solid var(--line);margin-top:52px;padding:24px 0 44px}
.footer-wrap{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-left{display:flex;flex-direction:column;gap:3px}
.footer-brand{font-size:12.5px;color:var(--muted)}
.footer-by a{font-size:12.5px;color:var(--muted);text-decoration:none}
.footer-by a:hover{color:var(--text)}
.footer-links{font-size:12.5px;color:var(--muted)}
.footer-links a{color:var(--muted);text-decoration:none}
.footer-links a:hover{color:var(--text)}
