/* These pages asked for Manrope and never loaded it, so every one of them —
   about, privacy, terms, refund — rendered in system-ui while the app itself
   runs Manrope and Bricolage Grotesque. Anyone following a footer link left the
   brand and landed on what looked like a different company's document. The
   fonts are the same two the app uses (see FONTS in packages/core/src/theme.js);
   the <link rel="preconnect"> in each page's head makes the fetch cheap. */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0; background: #101418; color: #F2EFE6;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.7; padding: 0 20px 80px;
}
.wrap { max-width: 760px; margin: 0 auto; }
header {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 0; border-bottom: 1px solid #2E3945; margin-bottom: 28px;
}
.logo {
  width: 40px; height: 40px; border-radius: 11px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.32);
}
/* the display face the app sets every heading and the wordmark in */
.brand, h1, h2 { font-family: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif; letter-spacing: -0.02em; }
.brand { font-weight: 800; font-size: 22px; }
.brand span { color: #E8B341; }
a { color: #5AA7E8; }
a:hover { color: #8CC4F0; }
/* the pages are keyboard-navigable documents of links; make the ring obvious */
a:focus-visible, .back:focus-visible { outline: 2px solid #E8B341; outline-offset: 3px; border-radius: 3px; }
h1 { font-size: 30px; font-weight: 800; margin: 10px 0 4px; text-wrap: balance; }
h2 { font-size: 20px; font-weight: 800; margin: 30px 0 8px; color: #E8B341; text-wrap: balance; }
.muted { color: #8C97A3; font-size: 14px; }
.note {
  background: #1A2129; border: 1px solid #2E3945; border-radius: 12px;
  padding: 14px 16px; font-size: 14px; color: #8C97A3; margin: 20px 0;
}
.back { display: inline-block; margin-top: 30px; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; }
