/* Tickaboo — /guides/blur-childrens-faces-apps/
 *
 * Linked by hand from the page head: stitch only auto-links page CSS for
 * top-level slugs, and this route is nested (tools/blur-faces.html does the
 * same thing). Governed by design-guide/current.md and page-craft.md.
 *
 * Built 2 Sep 2026, the first Phase 4 guide.
 *
 * The shared .ill* parts live in components.css. What is added here are the
 * pieces only an illustration ABOUT photo tools needs: a photo tile, a
 * blurred head, a device shell, a server, and the two routes a photo can
 * take. If a second guide wants these, move them across too.
 */

/* ═══════════════════════════════════════════════════════════════════
   ILLUSTRATION PARTS, guides edition
   A child is never drawn with a face. The head IS the blur: concentric
   soft rings, which is both the honest depiction and the product.
   ═══════════════════════════════════════════════════════════════════ */
.ill__photo {
  fill: #EAF2E7;
  fill: color-mix(in srgb, var(--color-surface) 55%, var(--color-surface-tint));
  stroke: var(--color-border);
  stroke-width: 1.5;
}
.ill__blurhead {
  fill: #CDDAD3;
  fill: color-mix(in srgb, var(--color-primary) 26%, var(--color-surface-tint));
  stroke: none;
  /* The soft edge is the point: it reads as blurred rather than as a dot. */
  filter: blur(3px);
}
/* The one head that is NOT yet blurred, on the "uploaded" side of the
   diagram: it is the original leaving the building, so it stays crisp. */
.ill__blurhead--sharp {
  fill: #C7C3C0;
  fill: color-mix(in srgb, var(--color-muted) 42%, var(--color-surface-tint));
  filter: none;
}
.ill__body {
  fill: none;
  stroke: rgba(63,111,86,0.340); stroke: color-mix(in srgb, var(--color-primary) 34%, transparent);
  stroke-width: 7;
  stroke-linecap: round;
}

.ill__device {
  fill: var(--color-surface-tint);
  stroke: var(--color-primary);
  stroke-width: 2.2;
}
.ill__zone {
  fill: rgba(63,111,86,0.060); fill: color-mix(in srgb, var(--color-primary) 6%, transparent);
  stroke: rgba(63,111,86,0.400); stroke: color-mix(in srgb, var(--color-primary) 40%, transparent);
  stroke-width: 2;
}
/* The uploaded side's boundary is dashed and open: the photo crosses it. */
.ill__zone--open {
  fill: rgba(246,223,210,0.300); fill: color-mix(in srgb, var(--shape-orange) 30%, transparent);
  stroke: rgba(122,113,104,0.420); stroke: color-mix(in srgb, var(--color-muted) 42%, transparent);
  stroke-dasharray: 7 6;
}
/* The loop that says "it goes round and comes back, in here". */
.ill__loop {
  fill: none;
  stroke: rgba(63,111,86,0.450); stroke: color-mix(in srgb, var(--color-primary) 45%, transparent);
  stroke-width: 2.4;
  stroke-linecap: round;
}
.ill__arrow,
.ill__arrowhead {
  fill: none;
  stroke: var(--color-muted);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ill__server {
  fill: var(--color-surface-tint);
  stroke: var(--color-muted);
  stroke-width: 2;
}
.ill__rack { fill: rgba(122,113,104,0.160); fill: color-mix(in srgb, var(--color-muted) 16%, transparent); }
.ill__led { fill: var(--shape-orange); }
.ill__clock circle {
  fill: var(--color-surface-tint);
  stroke: var(--color-muted);
  stroke-width: 2;
}
.ill__clock path {
  fill: none;
  stroke: var(--color-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.g-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
}
.g-hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 940px) { .g-hero__inner { grid-template-columns: 1.08fr 1fr; } }

.g-crumb { margin: 0 0 0.9rem; font-size: 0.8125rem; color: var(--color-muted); }
.g-crumb a { color: var(--color-muted); text-decoration: underline; text-underline-offset: 3px; }
.g-crumb a:hover { color: var(--color-primary); }
.g-crumb span { margin: 0 0.4rem; }

.g-hero__copy h1 { margin-bottom: 1.1rem; font-size: clamp(2.1rem, 1.7rem + 2.1vw, 3.05rem); }
.g-hero__copy .lead { max-width: 52ch; margin-bottom: 1.8rem; }
.g-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.g-hero__visual { margin: 0; }
.g-hero__visual .ill { max-width: 520px; margin-inline: auto; }

/* The dated stamp spans the full grid: it qualifies the whole page, not
   just the column it happens to sit under. */
.g-hero__stamp {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.g-hero__floats .float-cluster--nw { top: 6%; left: -5%; }
.g-hero__floats .float-cluster--nw .float-shape:nth-child(1) { width: 110px; height: 110px; }
.g-hero__floats .float-cluster--nw .float-shape:nth-child(2) { width: 78px; height: 32px; top: 98px; left: 58px; }
.g-hero__floats > .float-shape--ring { width: 120px; height: 120px; top: 8%; right: 3%; }
@media (max-width: 939px) {
  .g-hero__inner { text-align: center; }
  .g-hero__copy .lead { margin-inline: auto; }
  .g-hero__actions { justify-content: center; }
  .g-hero__stamp { text-align: left; }
}
@media (max-width: 720px) {
  .g-hero__floats > .float-shape--ring,
  .g-hero__floats .float-cluster--nw .float-shape:nth-child(2) { display: none; }
  .g-hero__floats .float-cluster--nw { top: 1%; left: -13%; }
}

/* ═══════════════════════════════════════════════════════════════════
   THE TWO ROUTES — the page's signature moment
   ═══════════════════════════════════════════════════════════════════ */
.g-paths__title {
  text-align: center;
  max-width: 24ch;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.7rem);
}
.g-paths__title .word + .word:last-child { margin-left: -0.28em; }
.g-paths .section-lead { max-width: 62ch; margin-inline: auto; }

.paths { margin-top: clamp(2rem, 4vw, 3rem); }
.paths .ill--paths { width: 100%; max-width: 760px; margin-inline: auto; }
.paths__legend {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 760px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
}
@media (min-width: 720px) { .paths__legend { grid-template-columns: 1fr 1fr; } }
.paths__leg h3 { margin: 0 0 0.4rem; font-size: 1.0625rem; }
.paths__leg p { margin: 0; color: var(--color-muted); font-size: 0.9375rem; }

/* ═══════════════════════════════════════════════════════════════════
   QUICK PICKS — tint cards (§8 treatment 1), tints rotating
   ═══════════════════════════════════════════════════════════════════ */
.picks {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
  grid-template-columns: 1fr;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
@media (min-width: 700px) { .picks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .picks { grid-template-columns: repeat(4, 1fr); } }
.pick {
  padding: clamp(1.4rem, 2.6vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.pick:nth-child(2) { background: var(--color-paper); }
.pick:nth-child(3) { background: color-mix(in srgb, var(--color-primary) 9%, var(--color-surface-tint)); }
.pick:nth-child(4) { background: color-mix(in srgb, var(--color-surface) 30%, var(--color-paper)); }
.pick__when {
  /* The label sits above the tool name, so it needs real separation or the
     two read as one run-on heading. */
  margin: 0 0 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 10%, transparent);
  font-size: 0.75rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
}
.pick h3 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.pick p { margin: 0; color: var(--color-muted); font-size: 0.9375rem; }

/* ═══════════════════════════════════════════════════════════════════
   THE TABLE — white + hairline (§8 treatment 2), scrolls in its own box
   so the page body never scrolls sideways.
   ═══════════════════════════════════════════════════════════════════ */
.g-table .section-lead { max-width: 62ch; margin-inline: auto; }
.g-table__wrap {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-tint);
  -webkit-overflow-scrolling: touch;
}
.cmp { width: 100%; min-width: 780px; border-collapse: collapse; font-size: 0.875rem; }
.cmp th, .cmp td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.cmp thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: color-mix(in srgb, var(--color-paper) 55%, var(--color-surface-tint));
  white-space: nowrap;
}
.cmp tbody th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  white-space: nowrap;
}
.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td { color: var(--color-muted); }
/* Our own two rows are tinted, so nobody has to wonder which is the vendor
   talking. Making it obvious is the point, not hiding it. */
.cmp__us th, .cmp__us td { background: color-mix(in srgb, var(--color-surface) 34%, var(--color-surface-tint)); }
.cmp .ok { color: var(--color-dark); font-weight: 600; }
.cmp .no { color: var(--color-muted); }
.cmp .soon { color: var(--color-dark); font-weight: 600; }
.g-table__note {
  margin: 1.1rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  max-width: 68ch;
}

/* ═══════════════════════════════════════════════════════════════════
   THE GAP — this page's one dark value (page-craft §2)
   ═══════════════════════════════════════════════════════════════════ */
.gap-panel {
  /* Sage brush: the green underline disappears against the green drench. */
  --underline-brush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2.5 8.6 C 24 4.2, 55 2.6, 96 3.4 C 106 3.6, 114 4.2, 117.5 5.1 C 118.6 5.5, 118.3 6.6, 116.8 6.7 C 96 6.2, 66 6.4, 38 8.2 C 24 9.1, 12 10.2, 5 11 C 3.2 11.1, 1.8 10.2, 2 9.4 Z' fill='%23C5DCC8' fill-opacity='0.9'/%3E%3C/svg%3E");
  padding: clamp(2rem, 4.5vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
  color: var(--color-dark-ink);
}
@media (min-width: 940px) {
  .gap-panel { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
}
.gap-panel__copy { max-width: 62ch; }
.gap-panel__art { margin: 0; }
.gap-panel__art .ill { max-width: 300px; margin-inline: auto; }
@media (max-width: 939px) { .gap-panel__art { margin-top: 2rem; } }

/* The illustration sits ON the drench, so its parts need the light-on-dark
   versions rather than the paper-on-white ones from components.css. */
.ill--gap .ill__sheet--dark {
  fill: rgba(245,235,224,0.100); fill: color-mix(in srgb, var(--color-dark-ink) 10%, transparent);
  stroke: rgba(245,235,224,0.220); stroke: color-mix(in srgb, var(--color-dark-ink) 22%, transparent);
}
.ill--gap .ill__photo--dark {
  fill: rgba(245,235,224,0.080); fill: color-mix(in srgb, var(--color-dark-ink) 8%, transparent);
  stroke: rgba(245,235,224,0.180); stroke: color-mix(in srgb, var(--color-dark-ink) 18%, transparent);
}
.ill--gap .ill__blurhead { fill: rgba(197,220,200,0.620); fill: color-mix(in srgb, var(--color-accent-2) 62%, transparent); }
.ill--gap .ill__body--dark { stroke: rgba(197,220,200,0.400); stroke: color-mix(in srgb, var(--color-accent-2) 40%, transparent); }
.ill--gap .ill__rows rect {
  fill: rgba(245,235,224,0.080); fill: color-mix(in srgb, var(--color-dark-ink) 8%, transparent);
  stroke: rgba(245,235,224,0.160); stroke: color-mix(in srgb, var(--color-dark-ink) 16%, transparent);
  stroke-width: 1.2;
}
.ill--gap .ill__dot { fill: rgba(197,220,200,0.550); fill: color-mix(in srgb, var(--color-accent-2) 55%, transparent); }
.ill--gap .ill__line--dark { fill: rgba(245,235,224,0.300); fill: color-mix(in srgb, var(--color-dark-ink) 30%, transparent); }
/* Three different answers for three children in the same photo. That is the
   whole point of the section, so the pills carry real colour. */
.ill--gap .ill__pill--yes { fill: var(--color-accent-2); }
.ill--gap .ill__pill--part { fill: var(--shape-orange); }
.ill--gap .ill__pill--no { fill: rgba(245,235,224,0.260); fill: color-mix(in srgb, var(--color-dark-ink) 26%, transparent); }
.gap-panel h2 {
  color: var(--color-dark-ink);
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 1.65rem + 1.3vw, 2.5rem);
}
.gap-panel .accent--quicksand { color: var(--color-accent-2); }
.gap-panel p { color: color-mix(in srgb, var(--color-dark-ink) 82%, transparent); }
.gap-panel .chip-soon {
  background: color-mix(in srgb, var(--color-accent-2) 26%, transparent);
  color: var(--color-accent-2);
}
.gap-panel__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
/* .btn--ghost is WHITE-filled in components.css, which on this drench reads
   as a white pill with pale text. Same trap as /resources/. */
.gap-panel__ghost {
  background: transparent;
  color: var(--color-dark-ink);
  border-color: color-mix(in srgb, var(--color-dark-ink) 42%, transparent);
}
.gap-panel__ghost:hover { color: var(--color-dark); background: var(--color-dark-ink); border-color: var(--color-dark-ink); }
.gap-panel__ghost .btn__disc {
  background: transparent;
  color: var(--color-dark-ink);
  border-color: color-mix(in srgb, var(--color-dark-ink) 42%, transparent);
}
.gap-panel__ghost:hover .btn__disc { color: var(--color-dark); border-color: color-mix(in srgb, var(--color-dark) 34%, transparent); }

/* ═══════════════════════════════════════════════════════════════════
   METHOD — a quiet rail, the same shape as the /resources/ byline so the
   two read as the same kind of credibility block.
   ═══════════════════════════════════════════════════════════════════ */
.method {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: color-mix(in srgb, var(--color-surface-tint) 72%, transparent);
}
.method h2 { font-size: clamp(1.5rem, 1.35rem + 0.8vw, 1.9rem); margin-bottom: 1rem; }
.method__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.8rem; }
.method__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.method__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.7rem;
  height: 2px;
  border-radius: 1px;
  background: var(--color-primary);
}
.method__byline {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted);
}

@media (max-width: 560px) {
  .cmp { min-width: 700px; }
}

/* ═══════════════════════════════════════════════════════════════════
   THE VERDICT — the argument the table earns.
   Deliberately AFTER the table, not before it: a claim that follows the
   evidence reads as a conclusion, the same claim above it reads as an ad.
   ═══════════════════════════════════════════════════════════════════ */
.verdict {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--color-surface-tint);
  border: 1px solid var(--color-border);
}
.verdict h3 { margin: 0 0 0.8rem; font-size: 1.1875rem; max-width: 46ch; }
.verdict p { margin: 0 0 1rem; color: var(--color-muted); max-width: 68ch; }
.verdict__list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.85rem; }
.verdict__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 72ch;
}
.verdict__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-primary);
}
.verdict__list strong { color: var(--color-ink); }
/* The losses sit in the same block as the wins, on a tint rather than
   hidden further down the page. Burying them is what makes a roundup
   read as an ad; putting them here is what makes the wins land. */
.verdict__fair {
  margin: 0 !important;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: var(--color-paper);
  font-size: 0.9375rem;
}
