/* Mobile first. Two rules override any aesthetic preference: touch targets
   stay >=48px, and body text stays >=16px so iOS never zooms the viewport
   when a textarea takes focus. The users are not technical. */

:root {
  --bg: #f2f5f8;
  --bg-tint: #e8eef4;
  --card: #ffffff;
  --line: #e3e9ef;
  --ink: #131b24;
  --ink-soft: #46545f;
  --mut: #74838f;
  --accent: #1f6feb;
  --accent-ink: #ffffff;
  --ok: #17795e;
  --ok-bg: #e6f4ee;
  --warn: #9a4b12;
  --warn-bg: #fdf1e5;
  --danger: #b3261e;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --pad: 16px;

  --sh-1: 0 1px 2px rgba(16, 30, 45, .06), 0 1px 3px rgba(16, 30, 45, .04);
  --sh-2: 0 2px 6px rgba(16, 30, 45, .07), 0 8px 24px rgba(16, 30, 45, .06);
  --sh-btn: 0 1px 2px rgba(31, 111, 235, .28), 0 6px 16px rgba(31, 111, 235, .22);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1319;
    --bg-tint: #131a22;
    --card: #171f28;
    --line: #263241;
    --ink: #e8eef4;
    --ink-soft: #b9c6d2;
    --mut: #8899a8;
    --accent: #4f93ff;
    --accent-ink: #06121f;
    --ok: #56c39a;
    --ok-bg: #122a23;
    --warn: #e0a072;
    --warn-bg: #2a1e14;
    --danger: #ef6b62;
    --sh-1: 0 1px 2px rgba(0, 0, 0, .4);
    --sh-2: 0 2px 8px rgba(0, 0, 0, .45), 0 12px 28px rgba(0, 0, 0, .35);
    --sh-btn: 0 2px 10px rgba(79, 147, 255, .3);
  }
}

/* The gradient lives on <body>, which stops at the content. During a
   momentum scroll the overscroll area shows <html> underneath — white by
   default, which flashed on every fast swipe in dark mode. Painting <html>
   too, and declaring the scheme so the browser's own chrome follows. */
html {
  background: var(--bg);
  color-scheme: light dark;
  overscroll-behavior-y: none;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* Any explicit `display` beats the hidden attribute's default, which silently
   un-hides elements the JS thinks it has hidden. Make hidden always win. */
[hidden] { display: none !important; }

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

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(120% 60% at 50% 0%, var(--bg-tint) 0%, var(--bg) 58%)
    no-repeat fixed;
  color: var(--ink);
  font: 16px/1.5 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", sans-serif;
  font-synthesis-weight: none;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.muted { color: var(--mut); }
.small { font-size: 13.5px; }

/* ---------------------------------------------------------------- header */

#bar {
  position: sticky; top: 0; z-index: 20;
  padding: calc(12px + env(safe-area-inset-top)) var(--pad) 12px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.bar-main { display: flex; align-items: center; gap: 12px; }
.bar-main > div:first-child { flex: 1; min-width: 0; }
#title {
  font-size: 19px; font-weight: 660; letter-spacing: -0.021em;
  line-height: 1.2;
}
#sub { font-size: 13.5px; margin-top: 2px; color: var(--mut); }

#albumState {
  margin-top: 8px; font-size: 13px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
#albumState button { min-height: 34px; padding: 0 12px; font-size: 13.5px; }
/* The header action is the loud one; it must not shrink under a long label. */
#publish { flex: 0 0 auto; }
#progress { margin-top: 12px; }
.track {
  height: 6px; border-radius: 99px; overflow: hidden;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}
.fill {
  height: 100%; width: 0; border-radius: 99px; background: var(--accent);
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}
#progressMsg { font-size: 13.5px; margin-top: 7px; color: var(--mut); }

/* Loud on purpose: simulation changes which cycle every screen refers to,
   and forgetting it is on would be genuinely confusing. */
#simBar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 12px calc(-1 * var(--pad)) -12px;
  padding: 10px var(--pad);
  background: var(--warn-bg); color: var(--warn);
  border-top: 1px solid color-mix(in srgb, var(--warn) 22%, transparent);
  font-size: 14px; font-weight: 500;
}
/* A standing condition ("the gazette is full"), so it stays on screen instead
   of flashing a toast on every render. */
#warnBar {
  display: block;
  margin: 12px calc(-1 * var(--pad)) -12px;
  padding: 10px var(--pad);
  background: color-mix(in srgb, var(--danger) 11%, var(--card));
  color: var(--danger);
  border-top: 1px solid color-mix(in srgb, var(--danger) 25%, transparent);
  font-size: 14px; font-weight: 550; line-height: 1.35;
}

#simBar button {
  min-height: 36px; padding: 0 13px; font-size: 14px; margin-left: auto;
  border-color: color-mix(in srgb, var(--warn) 32%, transparent);
  background: var(--card); color: var(--warn); box-shadow: none;
}

/* ---------------------------------------------------------------- layout */

main { padding: 20px var(--pad) 0; max-width: 660px; margin: 0 auto; }
/* The header is sticky, so anything scrolled to must leave room for it —
   otherwise scrollIntoView tucks the section title underneath. */
section { margin-bottom: 30px; scroll-margin-top: var(--stick, 96px); }

.sec {
  /* The running count on the right can outgrow 375px once it names a
     person; without wrapping it simply ran off the screen edge. */
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; color: var(--mut); margin: 0 0 12px; padding-left: 2px;
}
.pill {
  background: color-mix(in srgb, var(--mut) 15%, transparent);
  color: var(--ink-soft);
  border-radius: 99px; padding: 2px 9px;
  font-size: 12px; letter-spacing: 0; font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.pill.ok { background: var(--ok-bg); color: var(--ok); }
/* The album count is unknown until the section is opened; an empty grey
   blob next to the label reads as a broken badge. */
.pill:empty { display: none; }

/* --------------------------------------------------------- who filter */

/* Scrolls sideways rather than wrapping: with several contributors the row
   would otherwise push the first photo below the fold on a phone. */
#whoBar {
  display: flex; gap: 8px; margin-bottom: 18px;
  overflow-x: auto; scrollbar-width: none;
  padding: 2px 2px 4px;
}
#whoBar::-webkit-scrollbar { display: none; }
.who {
  display: inline-flex; align-items: center; gap: 7px;
  flex: 0 0 auto; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--ink); background: var(--card);
  border: 1px solid var(--line); border-radius: 99px;
  padding: 8px 12px 8px 14px;
}
.who:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 2px;
}
.who.on {
  background: var(--accent); border-color: transparent; color: var(--accent-ink);
}
.who.on .pill {
  background: color-mix(in srgb, var(--accent-ink) 22%, transparent);
  color: var(--accent-ink);
}
.tag.who { background: color-mix(in srgb, var(--accent) 13%, transparent); }
.who.wide { width: 100%; justify-content: space-between; }

/* ------------------------------------------------------------- pairing */

.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px; margin-bottom: 16px;
  box-shadow: var(--sh-1);
}
.panel p { margin: 0 0 12px; }
.panel p:last-child { margin-bottom: 0; }
/* The code is read off one screen and typed nowhere — but it is also read
   aloud down a phone line, so give it room and stop it wrapping. */
.code {
  display: inline-block; font: 700 26px/1 ui-monospace, SFMono-Regular, monospace;
  letter-spacing: .12em; white-space: nowrap;
  padding: 10px 16px; border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--ink);
}
.tagrow { display: flex; flex-wrap: wrap; gap: 6px; }
/* Numbered because the order genuinely matters: the code must be on the
   clipboard before you reach the address bar. */
.steps { margin: 12px 0 0; padding-left: 22px; }
.steps li { color: var(--ink-soft); font-size: 14px; margin-bottom: 7px;
            line-height: 1.45; }
.steps b { color: var(--ink); font-weight: 650; }
/* The code and its caption are two blocks, not a sentence with a box in the
   middle of it. */
#bulkOut { display: flex; flex-direction: column; gap: 8px; }
#bulkLink { width: 100%; font-family: ui-monospace, SFMono-Regular, monospace;
            font-size: 12px; }
/* Inside .sec, which shouts in uppercase — a running count should not. */
#todoProgress { text-transform: none; letter-spacing: 0; font-weight: 500;
                margin-left: auto; }
/* Information, not alarm: the family being quiet is normal, and the app is
   offering a way round it rather than reporting a fault. */
.note-old {
  background: var(--warn-bg); border-color: transparent;
  box-shadow: none;
}
.note-old p { color: var(--ink); font-size: 14.5px; margin: 10px 0 0; }
.note-old summary {
  color: var(--ink); font-size: 14.5px; font-weight: 600;
  cursor: pointer; list-style: none;
}
.note-old summary::-webkit-details-marker { display: none; }
/* On its own line: run inline, the link wrapped into the middle of the
   sentence and read as part of it. */
.note-old summary::after { content: 'Voir ce qui est proposé'; display: block;
  margin-top: 6px; font-weight: 500; color: var(--warn);
  text-decoration: underline; }
.note-old details[open] summary::after { content: 'Masquer'; }
.devrow {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.devrow .primary { flex: 0 0 auto; }
.code.small { font-size: 19px; padding: 7px 12px; }
/* Dragging needs a pointer and a bookmarks bar; a touch device has neither,
   so the instruction would only be one more thing to read past. */
@media (hover: none) and (pointer: coarse) { .desktop-only { display: none; } }
#paste { width: 100%; font-family: ui-monospace, SFMono-Regular, monospace;
         font-size: 12px; }

/* ------------------------------------------------------------- hero */

.hero { text-align: center; padding: 56px 20px 40px; }
.hero-emoji {
  font-size: 40px; line-height: 1;
  display: inline-grid; place-items: center;
  width: 84px; height: 84px; border-radius: 26px;
  background: var(--card); box-shadow: var(--sh-2); margin-bottom: 20px;
}
.hero h2 {
  font-size: 22px; font-weight: 660; letter-spacing: -0.02em; margin: 0 0 10px;
}
.hero p { margin: 0 auto 26px; max-width: 32ch; color: var(--mut); }

/* ---------------------------------------------------------------- cards */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--sh-1);
  animation: rise .26s cubic-bezier(.2, .7, .3, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
  .fill { transition: none; }
}

.ph {
  background: #0b0f14; display: flex; justify-content: center;
  border-bottom: 1px solid var(--line);
}
/* width/height attributes are set from the real pixel size so the browser
   reserves the right box before the image arrives — otherwise the feed
   reflows under the user's thumb as each photo loads. */
.ph img {
  width: 100%; height: auto; max-height: 46vh;
  object-fit: contain; display: block; cursor: zoom-in;
}

.meta {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px 0; font-size: 13px;
}
.tag {
  background: color-mix(in srgb, var(--mut) 13%, transparent);
  color: var(--ink-soft);
  border-radius: 7px; padding: 3px 9px; font-weight: 500;
}
.tag.warn { background: var(--warn-bg); color: var(--warn); }

/* Facts, in a sentence. Six pills side by side drew the eye to none of them;
   a line of plain text is read once and understood. */
.facts {
  display: block; color: var(--mut); font-size: 13.5px; line-height: 1.45;
}
.facts.hint { color: var(--warn); }

/* The single warning, on the photo rather than under it: an already-printed
   photo must not be something you can scroll past. */
.ph { position: relative; }
.badge.alert { background: color-mix(in srgb, #b3261e 82%, transparent); }
.row.doubtful::before { background: var(--danger); }
/* Beats `.row .txt span`, which paints every status green. */
.row .txt span.alert-text { color: var(--danger); font-weight: 650; }
.badge {
  position: absolute; left: 10px; top: 10px;
  background: color-mix(in srgb, #000 62%, transparent);
  color: #fff; font-size: 12.5px; font-weight: 650;
  padding: 5px 10px; border-radius: 99px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.tag.desc { background: var(--ok-bg); color: var(--ok); }

textarea.cap {
  display: block; width: calc(100% - 28px); margin: 12px 14px 0;
  font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 12px 13px; resize: vertical; min-height: 66px;
  background: color-mix(in srgb, var(--bg) 45%, var(--card));
  transition: border-color .15s, background .15s;
}
textarea.cap::placeholder { color: var(--mut); }
textarea.cap:focus {
  outline: none; border-color: var(--accent); background: var(--card);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent);
}
.caprow { padding: 6px 14px 0; min-height: 18px; text-align: right; }
.count { font-variant-numeric: tabular-nums; }
.count.bad { color: var(--danger); font-weight: 650; }

.actions { display: flex; gap: 10px; padding: 14px; }

/* --------------------------------------------------------------- buttons */

/* `a.primary` exists for one case: the bookmarklet, which must be a real
   anchor so it can be dragged to a bookmarks bar. A button cannot be. */
button, a.primary {
  font: inherit; font-weight: 550;
  border-radius: var(--r-md); cursor: pointer;
  min-height: 48px; padding: 0 17px;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  transition: transform .12s ease, box-shadow .15s, background .15s, opacity .15s;
}
a.primary {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
button:active { transform: scale(.975); }
button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
button:focus-visible, a.primary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 2px;
}
button.primary, a.primary {
  background: var(--accent); border-color: transparent; color: var(--accent-ink);
  font-weight: 640; box-shadow: var(--sh-btn);
  letter-spacing: -0.005em;
}
button.primary { flex: 1; }
button.ghost { color: var(--ink-soft); box-shadow: var(--sh-1); }
button.big, a.primary.big { min-height: 56px; padding: 0 30px; font-size: 17px; }
button.wide { width: 100%; }

/* -------------------------------------------------------------- shared */

.row {
  display: flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 11px 13px; margin-bottom: 10px;
  box-shadow: var(--sh-1);
  animation: rise .26s cubic-bezier(.2, .7, .3, 1) both;
}
.row::before {
  content: ""; flex: none; width: 4px; align-self: stretch;
  border-radius: 99px; background: var(--ok); margin: -1px 0;
}
.row img {
  width: 46px; height: 46px; object-fit: cover;
  border-radius: var(--r-sm); flex: none;
}
.row .txt { flex: 1; min-width: 0; font-size: 14.5px; }
.row .txt b { display: block; font-weight: 550; line-height: 1.35; }
.row .txt span { color: var(--ok); font-weight: 550; }
/* Square, quiet, and out of the caption's way. 36px keeps it a comfortable
   tap target even though the glyph is small — two of them now sit in the
   row, so every pixel they take is one the caption loses. */
.undo {
  flex: none; width: 36px; height: 36px; padding: 0;
  display: grid; place-items: center;
  font: 400 26px/1 system-ui, sans-serif;
  cursor: pointer; border-radius: 50%;
  color: var(--mut); background: transparent; border: none;
  box-shadow: none;
}
.undo:hover { color: var(--ink); background: color-mix(in srgb, var(--mut) 15%, transparent); }
.undo:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 1px;
}

/* ------------------------------------------------------------ excluded */

#out { margin-top: 14px; }
#out .card { opacity: .78; box-shadow: none; }
#out .card:focus-within { opacity: 1; }
/* Rejected photos are for skimming, not studying — keep them short so the
   list stays scannable. Tapping still opens the full-size view. */
#out .ph img { max-height: 24vh; }
#out textarea.cap { min-height: 48px; }
.reason {
  padding: 10px 14px 0; font-size: 13.5px; color: var(--warn);
  line-height: 1.4;
}

/* ------------------------------------------------------- rest of album */

#albumHint { margin: 12px 2px 14px; line-height: 1.45; }
#albumGrid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
}
.thumb {
  position: relative; display: block; padding: 0; border: none; min-height: 0;
  appearance: none; -webkit-appearance: none;
  aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-tint); box-shadow: var(--sh-1); cursor: pointer;
}
/* Absolute rather than height:100% — a button doesn't give its children a
   resolvable percentage height, so the image collapsed to nothing. */
.thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thumb .yr {
  position: absolute; left: 6px; bottom: 6px;
  background: rgba(8, 13, 19, .72); color: #fff;
  font-size: 11px; font-weight: 650; padding: 2px 7px; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.thumb.busy { opacity: .5; pointer-events: none; }
.thumb.busy::after {
  content: "…"; position: absolute; inset: 0; display: grid;
  place-items: center; font-size: 26px; color: #fff;
  background: rgba(8, 13, 19, .45);
}

/* -------------------------------------------------------------- settings */

.field {
  display: block; margin: 16px 0 4px;
  font-size: 14.5px; font-weight: 550; color: var(--ink-soft);
}
.field input {
  display: block; margin-top: 8px; font: inherit; padding: 11px 12px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--card); color: var(--ink); min-height: 48px; min-width: 150px;
}
.field input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent);
}
details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 4px 16px 14px; box-shadow: var(--sh-1);
}
details summary {
  cursor: pointer; color: var(--ink-soft); font-size: 14.5px;
  font-weight: 550; padding: 12px 0; list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::before { content: "⚙  "; opacity: .6; }
details[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 4px; }

/* ----------------------------------------------------------------- misc */

#toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(22px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, #0b1219 92%, transparent);
  color: #fff; padding: 13px 19px;
  border-radius: var(--r-md); font-size: 15px; line-height: 1.35;
  z-index: 60; max-width: min(92vw, 460px); text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .32);
  backdrop-filter: blur(8px);
  animation: rise .2s ease both;
}

dialog {
  border: none; border-radius: var(--r-lg); padding: 0;
  max-width: 96vw; background: var(--card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
dialog::backdrop { background: rgba(6, 10, 15, .72); backdrop-filter: blur(3px); }
dialog img { max-width: 96vw; max-height: 82vh; display: block; }
dialog form { padding: 12px; text-align: right; }

@media (min-width: 620px) {
  main { padding-top: 26px; }
  .ph img { max-height: 52vh; }
  #out .ph img { max-height: 30vh; }
}

/* Demo bar: label owns its own row, buttons sit together beneath it. At
   390px a label plus two buttons on one line shreds into three. */
#simBar { flex-wrap: wrap; row-gap: 8px; }
#simBar span { flex: 1 0 100%; font-weight: 600; }
#simBar button { margin-left: 0; white-space: nowrap; }
#simBar #simReset { margin-left: auto; }
.field.ck-row {
  display: flex; align-items: center; gap: 10px;
  font-weight: 550; cursor: pointer;
}
.field.ck-row input { width: 20px; height: 20px; min-width: 0; margin: 0; }

/* The gazette's arithmetic, shown as sums rather than prose: the recurring
   question was never "which photo?" but "why doesn't this add up to 28?". */
.tally-head { font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
              font-weight: 700; color: var(--mut); margin: 14px 0 6px; }
.tally-head:first-child { margin-top: 4px; }
.tally { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px;
         margin: 0; align-items: baseline; }
.tally dt { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums;
            font-size: 15px; }
.tally dd { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Already printed. No tick: a ✓ reads as "chosen" on a grid where tapping
   chooses. Desaturation makes them recede while scanning; the pill says
   which gazette, because the next question is always "how long ago?". */
/* Full colour, one label. Two date pills per tile — taken and printed — read
   as a contradiction, and greying every printed photo made two thirds of the
   grid unreadable to win a distinction the label already makes.

   A band across the bottom, not a pill: a pill on a 109px tile fits "juil"
   and nothing more, which reads as a word cut off rather than a month. Full
   width means the longest month still has room. */
.thumb .done {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; gap: 1px; padding: 10px 5px 5px;
  color: #fff; text-align: center; white-space: nowrap;
  background: linear-gradient(to top, rgba(8, 12, 18, .9),
                                      rgba(8, 12, 18, .64) 62%,
                                      rgba(8, 12, 18, 0));
}
.thumb .done b {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .82;
}
.thumb .done span { font-size: 11.5px; font-weight: 650; }
.ask { margin: 4px 0 2px; line-height: 1.45; }
.ask a { font-weight: 650; }
.tally-total {
  margin: 8px 0 2px; padding-top: 8px; font-size: 13px; color: var(--mut);
  border-top: 1px solid color-mix(in srgb, var(--mut) 25%, transparent);
}

/* Jump between the gazette and the rest of the album. They are a long scroll
   apart and going back and forth is the main gesture: pick one, go caption
   it, come back for another. */
.jump {
  position: fixed; right: 16px; z-index: 40;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; border: none; border-radius: 99px;
  background: var(--ink); color: var(--bg);
  font-size: 14px; font-weight: 650; letter-spacing: .01em;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28); cursor: pointer;
}
.jump:active { transform: translateY(1px); }
.jump .pill {
  background: color-mix(in srgb, var(--bg) 22%, transparent);
  color: inherit;
}
@media (prefers-reduced-motion: no-preference) {
  .jump { transition: opacity .15s ease; }
}

/* "Not yet" belongs in the same list as the names — it is one more answer to
   the same question — but it is not a name, so it does not look like one. */
.who.quiet {
  color: var(--mut); font-weight: 500;
  border-style: dashed;
}

/* A fact, not a choice. Famileo read this name from your own session, so the
   row looks decided and does nothing when pressed. */
.who.fixed { cursor: default; }
