/* Static policy pages. Deliberately not the Flutter app: these must render
   for a payment-gateway reviewer or a customer with a slow connection without
   downloading the whole app bundle first. Self-contained, no web fonts, no
   external requests. */
:root {
  color-scheme: light dark;
  --bg: #ffffff; --fg: #1b1b1b; --muted: #5f5f5f; --rule: #e3e3e0;
  --link: #2246a8;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #131314; --fg: #e8e8e6; --muted: #a0a0a0; --rule: #2e2e30;
          --link: #9db4ee; }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 44rem; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
a { color: var(--link); }
h1 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 .25rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
p, li { margin: .6rem 0; }
ul { padding-left: 1.25rem; }
.back { margin: 0 0 1.5rem; font-size: .9rem; }
.updated { color: var(--muted); font-size: .875rem; margin: 0 0 2rem; }
footer {
  margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--rule);
  color: var(--muted); font-size: .85rem;
}
footer a { color: var(--muted); }
table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
th, td { text-align: left; padding: .5rem .6rem; border-bottom: 1px solid var(--rule); }
th { font-weight: 600; }
