/* Shared by terms.html, privacy-policy.html and refunds.html.
   Three static pages that must look like one document — when the styling
   lived inside each file they had already started to drift. */
:root {
  --bg: #0b0b12;
  --panel: #14141d;
  --text: #e6e6ea;
  --muted: #9b9ba6;
  --accent: #8a7cff;
  --border: #232333;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
header { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 32px; }
h1 { font-size: 32px; letter-spacing: -0.02em; margin: 0 0 8px; }
.effective { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
h2 { font-size: 20px; margin: 40px 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 16px; margin: 24px 0 8px; color: var(--muted); font-weight: 600; }
p, li { color: #d0d0d8; font-size: 15px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }
.callout {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
}
.callout strong { color: var(--text); }

/* Entity identity — the block a payments reviewer looks for first. */
.entity { margin: 0; }
.entity dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 12px;
}
.entity dd { margin: 2px 0 0; font-size: 15px; }

/* Wide on a phone is the usual failure for a fee table. */
.tablewrap { overflow-x: auto; margin: 18px 0; }
table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }

nav.legalnav { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
nav.legalnav a { margin-right: 16px; }

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
