/* Shared styling for the three static pages — about, privacy and support —
   in all three languages.
 *
 * One stylesheet rather than a copy inside each of the nine documents. These
 * pages are plain HTML on purpose (they are submitted to Google and Apple, and
 * must render with JavaScript off), which made every style change a nine-file
 * edit waiting to drift.
 *
 * No webfont: same reasoning as the app (see src/styles.css) — Nunito has no
 * CJK coverage, so the Chinese pages fall through to the platform's own face.
 */
:root {
  color-scheme: light;
}

body {
  margin: 0;
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC",
    "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  color: #171f3a;
  background: #eef1fa;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

h1 {
  font-size: 34px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 20px;
  margin: 26px 0 8px;
}

h3 {
  font-size: 17px;
  margin: 22px 0 6px;
}

.updated {
  color: #67738f;
  margin: 0 0 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow:
    0 1px 2px rgba(40, 60, 110, 0.06),
    0 8px 24px rgba(40, 60, 110, 0.08);
  margin-bottom: 20px;
}

.card h2:first-of-type {
  margin-top: 0;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 10px;
}

a {
  color: #4f7cff;
}

header {
  text-align: center;
  margin-bottom: 28px;
}

.logo {
  font-size: 46px;
  line-height: 1;
}

.tagline {
  color: #67738f;
  margin: 6px 0 0;
}

.email {
  font-weight: 700;
  font-size: 19px;
}

.cta {
  display: inline-block;
  background: linear-gradient(135deg, #5b8bff, #6a5cf0);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 14px;
}

/* The language row. Plain links, not a control: these pages carry no script,
   and a link is also what a search engine follows to find the translations. */
.langs {
  text-align: center;
  margin: 0 0 22px;
  color: #67738f;
  font-size: 15px;
}

.langs a {
  margin: 0 4px;
}

.langs strong {
  margin: 0 4px;
  color: #171f3a;
}

/* Says which language is authoritative. Only on the translated policies. */
.translation-note {
  background: #f4f0fd;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 20px;
  color: #4a4166;
  font-size: 15px;
}

footer {
  text-align: center;
  color: #67738f;
  font-size: 15px;
  margin-top: 28px;
}
