@charset "UTF-8";
/* The family's site — one stylesheet, no framework, and since 2026-08-28 the same design
   system the apps are drawn in (`common/gpm-design-system`): slate ink, one cyan accent,
   Geist and Geist Mono, and hairlines where the old version put shadows.

   It used to be Statlet's own stylesheet, extracted: white ground, grey borders and a blue
   #2F6DF6 accent that matched nothing the apps had. A site and an app that carry the same
   name should not be two designs, so the tokens below are the system's semantic aliases,
   transcribed. The names the pages already used — `--muted`, `--surface`, `--accent-soft` —
   are kept as aliases so no app's own CSS had to change.

   Every app's site compiles this file, so a change here is a change to ten sites. */
:root {
  /* ---- The system's slate ink and cyan accent (tokens/colors.css) ---- */
  --ink-900: #0F172A;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-200: #E2E8F0;
  --ink-150: #E9EEF4;
  --ink-100: #F1F5F9;
  --ink-50: #F8FAFC;
  --cyan-800: #155E75;
  --cyan-700: #0E7490;
  --cyan-600: #0891B2;
  --cyan-100: #CFFAFE;
  --cyan-50: #ECFEFF;
  --bg: var(--ink-50); /* paper, not white: the apps' own ground */
  --surface: #ffffff;
  --surface-2: var(--ink-50);
  --border: var(--ink-150);
  --border-strong: var(--ink-200);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-subtle: var(--ink-400);
  --accent: var(--cyan-700);
  --accent-soft: var(--cyan-50);
  --accent-soft-border: var(--cyan-100);
  --link: var(--cyan-800);
  --logo-cursor: var(--cyan-600);
  /* The name the pages have always used for secondary text. */
  --muted: var(--text-muted);
  /* ---- Type (tokens/typography.css) ---- */
  --font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', 'Roboto Mono', monospace;
  --ls-tight: -0.022em;
  --ls-snug: -0.012em;
  --ls-label: 0.08em;
  /* ---- Shape ---- */
  --radius-md: 10px;
  --radius-lg: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #020617; /* ink-950 */
    --surface: #111B2E;
    --surface-2: #1A2740;
    --border: #283449;
    --border-strong: #3A4862;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --text-subtle: #64748B;
    --accent: #22D3EE; /* cyan-400: cyan-700 is unreadable on ink */
    --accent-soft: rgba(34, 211, 238, 0.14);
    --accent-soft-border: rgba(34, 211, 238, 0.30);
    --link: #67E8F9;
    --logo-cursor: #22D3EE;
    --muted: var(--text-muted);
  }
  /* On a dark page a black shadow is invisible and a dark ring is worse than nothing: the
     icon's own disc already separates itself, so what it needs here is the opposite — a
     faint light rim to soften the edge rather than a shadow to lift it. */
  .brand-mark {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  .hero .mark {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

/* ---------------------------------------------------------------- header */
.site-header {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

/* The wordmark, in the family's voice: mono, tight, with the cyan cursor the apps draw after
   the name. Sans-bold was the old site's own idea and matched nothing the app shows. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: var(--ls-snug);
  color: var(--text);
  text-decoration: none;
}

.brand-name::after {
  content: "_";
  color: var(--logo-cursor);
}

.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  /* Round, with the faintest lift. The icon's own background is white, so on this page's
     near-white it has no edge at all and reads as a floating gradient pill — the disc has
     to be drawn by the shadow, because the artwork does not draw it. The hairline ring is
     what keeps it visible where a shadow alone would not survive, which is any screen a
     little brighter than the one it was designed on. */
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.site-header nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--accent);
}

/* ------------------------------------------------------------- typography */
/* The system's heading ramp: 36 / 28 / 22, tight tracking, one family doing all of it. */
h1 {
  font-size: 2.125rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: var(--ls-tight);
  font-weight: 700;
}

h2 {
  font-size: 1.625rem;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: var(--ls-snug);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  margin: 1.75rem 0 0.5rem;
  letter-spacing: var(--ls-snug);
  font-weight: 600;
}

p, ul, ol {
  margin: 0 0 1rem;
}

ul, ol {
  padding-left: 1.4rem;
}

li {
  margin-bottom: 0.35rem;
}

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

strong {
  font-weight: 600;
}

/* A date the app is reporting rather than a sentence: mono, uppercase, quiet — the system's
   own label voice, and the same thing the apps draw above a panel. */
.updated {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

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

code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.1em 0.35em;
  font-size: 0.9em;
  font-family: var(--font-mono);
}

/* ------------------------------------------------------------ components */
.hero {
  text-align: center;
  /* The bottom padding grew with the badges: they used to be the header's problem, and the
     hero ended on a paragraph of muted text that could sit close to the body copy. Two
     pieces of store artwork cannot — at 0.5rem they read as belonging to the paragraph
     under them rather than to the icon above. */
  padding: 1rem 0 1.75rem;
}

.hero .mark {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  display: block;
  /* Same reasoning as .brand-mark, one size up: a larger disc needs a softer, wider
     shadow or it looks stuck on rather than resting. */
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.hero h1 {
  margin-top: 0.75rem;
}

/* Closer to the badges than .lead's own 2rem, which was spacing away from body text. */
.hero .lead {
  margin-bottom: 1.25rem;
}

/* The store badges. They carry their own padding and their own idea of a baseline, so they
   are sized by height and left alone otherwise: both stores' guidelines ask for the artwork
   unmodified, and "unmodified" includes not squashing it to fit a row.

   Under the hero's caption rather than in the header, since 2026-08-23. The header is where
   a visitor looks for pages, and two pieces of store artwork sitting there put an advert on
   every page of the site — the legal ones included. Under the icon they read as what they
   are: the way to get the thing the page is describing.

   Centred explicitly: .hero centres its text, and a flex row does not inherit that. */
.stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stores img {
  height: 3rem;
  width: auto;
  display: block;
}

/* No narrow-screen rule any more. There used to be one, shrinking the badges below 30rem so
   the header did not grow a third row — a header problem, and the header no longer has them.
   Both badges are 646x250, so at 3rem the pair is 272px wide including the gap: one centred
   row down to a 320px phone, with 8px to spare. That is also what caps the size — 3.25rem
   would be 294px and would wrap on the narrowest screens. Measured, because the rule this
   replaces was written for a layout that has since changed underneath it. */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.cards li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  margin: 0;
}

.cards strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cards span {
  color: var(--muted);
  font-size: 0.95rem;
}

.note {
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  margin: 1.5rem 0;
}

.note p:last-child {
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--muted);
}

/* Tables must scroll inside themselves rather than push the page sideways. */
.table-wrap {
  overflow-x: auto;
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0 0 0.4rem;
}

.site-footer .small {
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

/* Placeholder lines on a page that fills itself in: the supporters list while it loads, and
   what it says when it cannot. Grey rather than red — a credits list that failed to load is
   not an error the reader can do anything about. */
.muted {
  color: var(--muted);
}

/*# sourceMappingURL=style.css.map */