/* Pairlooms legal + support pages.
   Dark, matching the app's wine palette, so a link out of the app does not
   feel like leaving it. Self-contained: no fonts, no CDNs, no trackers —
   a privacy policy that loads third-party resources is a bad look. */
:root {
  --bg: #0C0510;
  --surface: #180A20;
  --text: #F6EEF2;
  --muted: #B39FAC;
  --accent: #FF1F6E;
  --border: rgba(255, 184, 210, 0.12);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0 20px 96px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.01em;
}
.wrap { max-width: 680px; margin: 0 auto; }
header { padding: 56px 0 8px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
h1 { font-size: 34px; line-height: 1.15; margin: 20px 0 8px; letter-spacing: -0.02em; }
.lede { color: var(--muted); margin: 0 0 40px; font-size: 17px; }
h2 { font-size: 20px; margin: 40px 0 10px; letter-spacing: -0.01em; }
p, li { color: #E4D7DE; }
a { color: var(--accent); }
ul { padding-left: 20px; }
li { margin: 6px 0; }
.card {
  background: var(--surface); border-radius: 20px; padding: 24px;
  margin: 24px 0;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.muted { color: var(--muted); font-size: 14px; }
footer {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 14px;
}
footer a { margin-right: 16px; }
