/* Shared styles for the privacy + terms pages. Matches the landing palette. */
:root {
  --bg: #EFF3EF; --surface: #FFFFFF; --ink: #18201A; --ink-soft: #66716A;
  --green: #1FA75A; --green-deep: #157A40; --line: #DFE7E0;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); }
body {
  font-family: 'Inter', system-ui, sans-serif; color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: var(--green-deep); }
a:hover { color: var(--green); }

.legal-nav {
  border-bottom: 1px solid var(--line); background: rgba(239,243,239,0.9);
  position: sticky; top: 0; backdrop-filter: blur(8px);
}
.legal-nav-inner {
  max-width: 760px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; text-decoration: none;
}
.brand-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--ink); text-decoration: none; }
.legal-nav .back { margin-left: auto; font-size: 14px; font-weight: 600; text-decoration: none; }

main { max-width: 760px; margin: 0 auto; padding: 40px 24px 90px; }
h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 34px; margin: 0 0 4px; }
h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; margin: 34px 0 6px; }
h3 { font-size: 16px; margin: 22px 0 4px; }
p, li { font-size: 15.5px; color: var(--ink); }
.muted { color: var(--ink-soft); font-size: 14px; }
ul { padding-left: 20px; }
li { margin: 5px 0; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 20px; margin: 18px 0;
}
.footer { border-top: 1px solid var(--line); }
.footer-inner {
  max-width: 760px; margin: 0 auto; padding: 24px; font-size: 13px; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
}
.footer-inner a { text-decoration: none; font-weight: 600; }
