/* PrintFinder public site — legal + support pages required by App Store Connect.
   Self-contained, no build step, no external requests (fonts/CDNs) so it loads
   instantly and can't leak visitor data to third parties. */
:root {
  --bg: #0d0f14;
  --surface: #171b23;
  --line: #2a3140;
  --text: #eceef4;
  --dim: #8b93a7;
  --accent: #58a6ff;
  --accent-deep: #2f6fd0;
  --radius: 16px;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f2f4f8; --surface: #ffffff; --line: #d9dfe9;
    --text: #16202e; --dim: #5b6780; --accent: #2f6fd0; --accent-deep: #2058ad;
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
  padding: 0 20px 64px;
}
.wrap { max-width: 720px; margin: 0 auto; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 26px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 34px;
}
.brand {
  font-size: 21px; font-weight: 800; letter-spacing: -.02em;
  text-decoration: none; color: var(--text);
}
.brand span { color: var(--accent); }
nav.site { display: flex; gap: 18px; flex-wrap: wrap; }
nav.site a { color: var(--dim); text-decoration: none; font-size: 14.5px; font-weight: 600; }
nav.site a:hover, nav.site a[aria-current="page"] { color: var(--accent); }

h1 { font-size: 30px; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 10px; }
h2 { font-size: 19px; margin: 30px 0 8px; letter-spacing: -.01em; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, ul, ol { margin-bottom: 14px; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 6px; }
a { color: var(--accent); }
strong { font-weight: 700; }
.updated { color: var(--dim); font-size: 14px; margin-bottom: 26px; }
.lead { font-size: 17.5px; color: var(--text); margin-bottom: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; margin: 22px 0;
}
.card h2, .card h3 { margin-top: 0; }
.muted { color: var(--dim); font-size: 14.5px; }
.cta {
  display: inline-block; background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff; text-decoration: none; font-weight: 700;
  padding: 13px 24px; border-radius: 999px; margin-top: 6px;
}
.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin: 24px 0; }
.grid .card { margin: 0; }
footer.site {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 14px;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between;
}
footer.site a { color: var(--dim); text-decoration: none; }
footer.site a:hover { color: var(--accent); }
table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--dim); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
