/* Shared shell for the Plainly legal pages. Deliberately plain: these are documents, not a
   marketing site, and they must stay readable when a store reviewer opens them on a phone. */
:root {
  --bg: #101312;
  --surface: #171b19;
  --text: #e8ece9;
  --soft: #9aa5a0;
  --accent: #cbf24e;
  --line: #252b28;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
header { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text); }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--accent); }
.brand strong { font-size: 1.05rem; letter-spacing: .01em; }
h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 .4rem; }
h2 { font-size: 1.15rem; margin: 2.5rem 0 .75rem; }
h3 { font-size: 1rem; margin: 1.75rem 0 .5rem; color: var(--accent); }
.meta { color: var(--soft); font-size: .9rem; margin: 0; }
a { color: var(--accent); }
p, li { color: var(--text); }
ul { padding-left: 1.15rem; }
li { margin: .35rem 0; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .93rem; }
th, td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--soft); font-weight: 600; }
.callout {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  padding: 1rem 1.1rem; border-radius: 6px; margin: 1.5rem 0;
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
footer { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--soft); font-size: .9rem; }
footer a { margin-right: 1rem; }
.scroll { overflow-x: auto; }
