/* Financrs policy & support pages — financrs.com */
:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #1a1d21;
  --muted: #6b7280;
  --border: #e5e7eb;
  --brand: #007ba5;
  --accent: #eef7fb;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101418;
    --surface: #181d23;
    --text: #eceff3;
    --muted: #9aa5b1;
    --border: #2b333d;
    --brand: #4fa8d8;
    --accent: #16242c;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

header.site {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

header.site .inner,
main,
footer.site .inner {
  max-width: 760px;
  margin: 0 auto;
}

header.site a.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff; font-size: 15px; font-weight: 800;
}

main { padding: 40px 24px 64px; }

h1 { font-size: 30px; line-height: 1.25; margin: 0 0 6px; letter-spacing: -0.02em; }
h2 { font-size: 20px; margin: 36px 0 10px; letter-spacing: -0.01em; }
h3 { font-size: 16px; margin: 24px 0 8px; }
p, li { color: var(--text); }
.muted { color: var(--muted); }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }

a { color: var(--brand); }

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--brand);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
}

table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-weight: 600; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.table-wrap { overflow-x: auto; }

footer.site {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
  color: var(--muted);
  font-size: 14px;
}
footer.site a { color: var(--muted); margin-right: 16px; }

.faq { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: 10px 0 0; }

code {
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 14px;
}
