/* Matches the app's palette (Theme.swift) so the site and the product read as
   one thing. Deliberately plain — this page exists to be legible and to give
   TikTok a real terms and privacy URL, not to sell anything. */
:root {
  --ground: #08080a;
  --ink: #f2ede4;
  --bone: #ede6db;
  --on-bone: #14120f;
  --sage: #a3bdb2;
  --muted: rgba(242, 237, 228, 0.55);
  --rule: rgba(242, 237, 228, 0.12);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 17px/1.65 ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 34rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 6rem;
}

header { margin-bottom: 3rem; }

.mark {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2.5rem 0 0.6rem;
  letter-spacing: -0.005em;
}

p, li { color: rgba(242, 237, 228, 0.88); }
p { margin: 0 0 1rem; }

ul { padding-left: 1.1rem; margin: 0 0 1rem; }
li { margin-bottom: 0.45rem; }

.lede { font-size: 1.08rem; color: var(--muted); }

a { color: var(--sage); text-underline-offset: 3px; }

.updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--muted);
}

footer a { margin-right: 1.25rem; }

@media (max-width: 480px) {
  .wrap { padding: 3rem 1.25rem 4rem; }
  h1 { font-size: 1.6rem; }
}
