/* passingthrough.app — one stylesheet for all three pages.
   The palette is the app's own, pulled from the design system, not
   approximated: postcard cream #E8DCC7, ink #2C2C24, faded #6E5F49,
   green #4C8C6E, paper-edge border #C9B99C. The postcard is cream in
   both themes, like real paper — so is this site (color-scheme pinned).
   Georgia is the app's message serif; headers echo the app's uppercase
   letter-spaced labels with their green left rule. No JavaScript, no
   loaded fonts, no analytics — it is true that this site tracks nobody. */

:root {
  color-scheme: light;
  --cream: #E8DCC7;
  --ink: #2C2C24;
  --faded: #6E5F49;
  --green: #4C8C6E;
  --edge: #C9B99C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  padding: 2.25rem 1.25rem 3rem;
}

main {
  max-width: 34rem;
  margin: 0 auto;
}

/* The masthead: the app's name, then its one-line self-description in the
   postcard message voice. */
h1 {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.tagline {
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0.75rem 0 2rem;
}

/* Section labels, the app's monthHeader made web: small caps-ish sans,
   letter-spaced, green rule on the left. */
h2 {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border-left: 3px solid var(--green);
  padding-left: 0.625rem;
  margin: 2.5rem 0 1rem;
}

p { margin: 0 0 1rem; }

/* Lead-in emphasis: the bolded first phrase of an item, ink not green —
   the sentence carries it. */
strong { font-weight: 700; }

ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.375rem; }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

/* Item blocks on the support and privacy pages: a bold claim, then its
   explanation, separated by breathing room rather than boxes. */
.item { margin-bottom: 1.125rem; }
.item p { margin-bottom: 0.25rem; }

/* The screenshots-to-come slot keeps its aspect ready but renders nothing
   until images exist — see the marked placeholder in index.html. */
figure.shots { margin: 2rem 0; }
figure.shots img {
  max-width: 100%;
  border: 1px solid var(--edge);
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1px solid var(--edge);
  margin: 2.5rem 0 1.5rem;
}

footer {
  font-size: 0.9375rem;
  color: var(--faded);
}
footer a { color: var(--faded); }
footer a:hover { color: var(--ink); }

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

@media (min-width: 40rem) {
  body { padding-top: 4rem; font-size: 1.125rem; }
  .tagline { font-size: 1.75rem; }
}
