/*
    Shared by the privacy, terms, support and deletion pages.

    Kept separate from the landing page's inline styles on purpose: these four
    exist mostly to satisfy Google and Apple, they will be edited under time
    pressure, and none of that should risk the page that actually sells the
    product.
*/
:root {
  --sun-light: #FCE4B4;
  --deep: #0C3C6C;
  --teal: #3C9CB4;
  --accent: #5C9B7E;
  --paper: #FDF9F1;
  --quiet: #5b7290;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--deep);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

header {
  background: linear-gradient(180deg, var(--sun-light) 0%, #F7D9A8 100%);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

header img { width: 64px; height: 64px; display: block; margin: 0 auto 0.75rem; }

header .wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

header a { color: var(--deep); text-decoration: none; }

main { max-width: 42rem; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin: 2.75rem 0 0.75rem;
  line-height: 1.35;
}

p, li { font-size: 1.04rem; }
p { margin: 0 0 1.1rem; }
ul { padding-left: 1.2rem; margin: 0 0 1.2rem; }
li { margin-bottom: 0.55rem; }

a { color: var(--teal); }

.updated { color: var(--quiet); font-size: 0.95rem; margin-bottom: 2.5rem; }

/* Where something matters more than the paragraph around it. */
.note {
  background: #fff;
  border-left: 2px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1.15rem 1.35rem;
  margin: 1.75rem 0;
}
.note p:last-child { margin-bottom: 0; }

footer {
  background: var(--deep);
  color: #cfe0f0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.92rem;
}
footer a { color: #9fc6e8; }
footer nav { margin-bottom: 0.85rem; }
footer nav a { margin: 0 0.6rem; }

@media (prefers-color-scheme: dark) {
  :root { --paper: #0a2440; --deep: #e8f0f8; --quiet: #9db6cf; }
  body { background: var(--paper); color: var(--deep); }
  header { background: linear-gradient(180deg, #16406F 0%, #0C3C6C 100%); }
  header .wordmark, header a { color: #fff; }
  .note { background: rgba(255, 255, 255, 0.05); }
}
