/* Watima — white, warm, for parents.
   The product argument is "screen time without the screen", so the page is the
   opposite of a device UI: paper-white, generous, a soft serif doing the
   talking. The device's own three state colours (green listening, amber
   thinking, blue speaking) are the entire accent system — darkened from the
   panel values, which were tuned for a black display and fail contrast here. */

:root{
  --paper:#FFFFFF;
  /* ONE tint, and tinted bands never touch. Two near-white tints measured
     1.00:1 against each other — identical in value, differing only in hue,
     which is invisible at a soft boundary. The parent section is the dark band
     instead: it puts the tonal peak where the argument peaks, gives the three
     device colours a black ground where they finally read as lit states rather
     than pastel dots, and echoes the product itself. */
  --wash:#F7F8F6;
  --ink:#14171C;
  --body:#4E5762;
  --muted:#666F7A;         /* was #6E7883 — 4.49:1 failed AA by a hair */
  --line:#E5E8E4;

  --rest:#8A939D;          /* the ring at idle */
  --listen:#0F9D6E;        /* device green, darkened for white */
  --think:#C9791A;
  --speak:#3E63D8;         /* was #3059D6 — 5.96:1 made blue outweigh its siblings */
  /* Darker tier for small text, so the family holds together at body sizes. */
  --listen-ink:#0A7F59; --think-ink:#9C5D10; --speak-ink:#2F53C4;
  --danger:#C4402F;

  --wrap:1120px; --r:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font:400 17px/1.65 Figtree,system-ui,sans-serif;-webkit-font-smoothing:antialiased;
}
.serif{font-family:Fraunces,Georgia,serif;font-optical-sizing:auto}
.mono{font-family:"IBM Plex Mono",ui-monospace,monospace}
img{max-width:100%;display:block}
[hidden]{display:none!important}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 26px}
.narrow{max-width:680px}

/* ---------- nav ---------- */
.nav{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.9);backdrop-filter:blur(10px);border-bottom:1px solid transparent}
.nav.stuck{border-bottom-color:var(--line)}
/* Inverted while the dark band passes beneath it. */
.nav.on-ink{background:rgba(20,23,28,.88);border-bottom-color:rgba(255,255,255,.12)}
.nav.on-ink .mark{color:#fff}
.nav.on-ink .lnk{color:#9AA3AD}
.nav.on-ink .lnk:hover{color:#fff}
.nav.on-ink .btn{background:#fff;color:var(--ink)}
.nav-in{display:flex;align-items:center;justify-content:space-between;height:70px}
.mark{display:flex;align-items:center;gap:10px;font-family:Fraunces,serif;font-weight:600;font-size:22px;letter-spacing:-.02em;color:var(--ink);text-decoration:none}
/* The mark is the device: dark disc, lit ring, point of light at the centre.
   Drawn in CSS rather than as an <img> so it inherits the nav's inversion over
   the dark band without needing a second asset. */
.mark i{width:17px;height:17px;border-radius:50%;background:#0A0B0D;
  border:2.5px solid var(--listen);display:grid;place-items:center}
.mark i::after{content:"";width:5px;height:5px;border-radius:50%;background:var(--listen)}
.nav-right{display:flex;align-items:center;gap:22px}

a{color:inherit}
.lnk{background:none;border:0;padding:0;color:var(--muted);font:500 15px Figtree,sans-serif;cursor:pointer;text-decoration:none}
.lnk:hover{color:var(--ink)}
.btn{display:inline-block;border:0;border-radius:999px;padding:13px 24px;cursor:pointer;
  font:600 15px Figtree,sans-serif;background:var(--ink);color:#fff;text-decoration:none;white-space:nowrap}
.btn:hover{background:#000}
.btn:disabled{opacity:.4;cursor:default}
.btn.ghost{background:transparent;color:var(--ink);box-shadow:inset 0 0 0 1.5px var(--line)}
/* The conversion action is now a single button rather than a field plus a
   button, so it has to carry the weight the whole form used to. */
.btn-lg{padding:16px 30px;font-size:16.5px}
.btn.ghost:hover{background:transparent;box-shadow:inset 0 0 0 1.5px var(--ink)}
.btn.wide{width:100%;border-radius:14px}
:focus-visible{outline:2.5px solid var(--listen);outline-offset:2px;border-radius:6px}

/* ---------- hero ---------- */
/* Full-bleed. The photograph carries the left half as open window light, so the
   overlay only has to lift it the last little bit rather than mask a busy
   image — a heavy scrim would flatten exactly the airiness the picture is for. */
.hero{position:relative;display:grid;align-items:center;overflow:hidden;
  min-height:clamp(480px,72vh,660px);background:#F7F4EF}
.hero-media{position:absolute;inset:0;background:#F7F4EF url(/hero.jpg) 78% center/cover no-repeat}
/* Scrim reaches further right than it used to: between 881 and 1100px the sub
   was running past it onto the boy's face. The cause was two different measures
   in one column — .sub carried max-width:46ch (575px) which beat
   .hero-copy > * (496px) on equal specificity. Both are 34rem now. */
.hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(96deg,
  rgba(255,255,255,.95) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.72) 52%,
  rgba(255,255,255,.28) 66%, rgba(255,255,255,0) 78%)}
.hero-copy{position:relative;z-index:1;width:100%;padding-top:36px;padding-bottom:36px}
.hero-copy > *{max-width:34rem}
.kicker{display:inline-flex;align-items:center;gap:9px;font:600 13px Figtree,sans-serif;
  color:var(--listen);background:rgba(15,157,110,.08);padding:7px 14px;border-radius:999px;margin-bottom:22px}
.kicker i{width:8px;height:8px;border-radius:50%;background:var(--listen)}
h1.big{font-family:Fraunces,serif;font-size:clamp(42px,5.6vw,64px);line-height:1.03;
  letter-spacing:-.03em;font-weight:500;margin:0 0 22px}
h1.big em{font-style:italic;color:var(--listen)}
/* Age stated once, right under the headline. Both reviewers flagged it as
   missing, and it is the first thing a parent needs in order to self-select. */
.agerange{margin:0 0 18px;font:600 14px Figtree,sans-serif;letter-spacing:.03em;
  color:var(--listen-ink);display:flex;align-items:center;gap:9px}
.agerange::before{content:"";width:22px;height:2px;border-radius:1px;background:var(--listen)}
.sub{font-size:19px;color:var(--body);margin:0 0 32px}

/* The hero art. Replace /hero.jpg with a photograph of a child using the
   device and this whole block becomes the photo — see the fallback note in
   index.html. */
/* Square, not 4:5 — a portrait crop stood a long way taller than the headline
   block next to it and pulled the row out of balance. */
.art{position:relative;border-radius:26px;overflow:hidden;aspect-ratio:1/1;background:#FBF3E9;
  max-height:520px;box-shadow:0 24px 60px -28px rgba(60,42,24,.42)}
.art img{width:100%;height:100%;object-fit:cover}

/* the device, rendered — lives in the "how it works" section, running the
   real interaction so the three colours mean something before you own one */
.demo{margin:0;display:grid;place-items:center;gap:22px;align-self:center;--c:var(--rest)}
.disc{position:relative;width:min(300px,72vw);aspect-ratio:1;border-radius:50%;
  background:radial-gradient(65% 65% at 34% 26%,#26282E 0%,#0A0B0D 62%);
  display:grid;place-items:center;
  box-shadow:0 22px 48px -16px rgba(28,20,10,.4), inset 0 2px 5px rgba(255,255,255,.16), 0 0 0 7px #DCD5CA}
/* The spoken line sits under the device, tinted by whoever is talking:
   green while the child asks, blue while it answers. */
.demo figcaption{font-size:16.5px;line-height:1.5;text-align:center;max-width:30ch;
  min-height:3em;color:var(--c);transition:color .5s}
.demo figcaption.quiet{color:var(--muted)}
.disc .ring{width:54%;aspect-ratio:1;border-radius:50%;border:3px solid var(--c);display:grid;place-items:center;transition:border-color .5s}
.disc .dot{width:26%;aspect-ratio:1;border-radius:50%;background:var(--c);transition:width .5s cubic-bezier(.4,0,.2,1),background-color .5s}
.disc[data-s="listen"] .dot{width:34%}
.disc[data-s="think"] .dot{width:38%}
.disc[data-s="speak"] .dot{width:60%}
.disc .cap{position:absolute;bottom:18%;font:700 11px Figtree,sans-serif;letter-spacing:.17em;color:var(--c);transition:color .5s}

/* ---------- sections ---------- */
section{padding:96px 0}
section.wash{background:var(--wash)}

/* The dark band. Only one section gets it, and nothing tinted sits beside it. */
section.ink{background:var(--ink);color:#B6BCC3}
section.ink h2,section.ink .checks li b{color:#fff}
section.ink .eyebrow{color:#8A939D}
section.ink .sec-head .lead{color:#B6BCC3}
section.ink .sec-head .lead strong{color:#fff}
section.ink .checks li{border-top-color:rgba(255,255,255,.14);color:#B6BCC3}
section.ink .checks .tick{background:rgba(18,179,127,.18)}
section.ink .checks .tick::after{border-color:#3DD9A4}
section.ink em{color:#3DD9A4}
.eyebrow{font:700 12px Figtree,sans-serif;letter-spacing:.2em;color:var(--muted);margin:0 0 16px}
h2{font-family:Fraunces,serif;font-size:clamp(31px,3.8vw,44px);line-height:1.12;
  letter-spacing:-.025em;font-weight:500;margin:0 0 20px}
h2 em{font-style:italic;color:var(--listen)}
p.body{color:var(--body);max-width:58ch;margin:0 0 18px;font-size:18px}
p.body strong{color:var(--ink);font-weight:600}
.lead{font-size:21px;line-height:1.55}

/* One section-header pattern everywhere, so every section starts the same way
   and the eye learns where to look. */
.sec-head{max-width:640px;margin:0 0 48px}
.sec-head.wide{max-width:760px}
.sec-head h2{margin:0 0 18px}
.sec-head .lead{margin:0;font-size:21px;line-height:1.55;color:var(--body)}
.sec-head .lead strong{color:var(--ink);font-weight:600}

/* The problem, argued as a pair rather than three paragraphs — the contrast is
   the point, so it should be visible before it is read. */
.contrast{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.c-box{background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:32px}
.c-box.lit{border-color:rgba(15,157,110,.35);box-shadow:0 0 0 1px rgba(15,157,110,.12)}
.c-tag{font:700 11.5px Figtree,sans-serif;letter-spacing:.19em;color:var(--muted);margin:0 0 14px}
.c-box.lit .c-tag{color:var(--listen)}
.c-lead{font-family:Fraunces,serif;font-size:23px;line-height:1.28;letter-spacing:-.015em;
  font-weight:500;margin:0 0 14px}
.c-box p:last-child{margin:0;color:var(--body);font-size:16px;line-height:1.6}

.two{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.two.hw{grid-template-columns:1.05fr .95fr;align-items:center}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:32px}
section.wash .card,section.sand .card{background:var(--paper)}
.card .k{width:40px;height:40px;border-radius:50%;border:3.5px solid var(--c);display:grid;place-items:center;margin-bottom:18px}
.card .k b{width:13px;height:13px;border-radius:50%;background:var(--c);display:block}
.card h3{margin:0 0 8px;font-size:19px;font-weight:600;letter-spacing:-.01em}
.card p{margin:0;color:var(--body);font-size:16px;line-height:1.6}
/* Full-width row under the three: the age card carries a safety claim and needs
   the room to say which half of it ships in the first run. */
.card.wide{grid-column:1/-1}
/* Stacked full-width, not side-by-side. The card's icon and title sit on the
   left, so a right-hand column had nothing above it and the top-right corner was
   permanently empty — which is what read as "not aligned". Stacking kills the
   hole and gives each claim the full measure; the rule between them keeps the
   two from blurring into one block. */
.pair > div + div{margin-top:22px;padding-top:22px;border-top:1px solid var(--line)}
.sub-h{margin:0 0 8px;font-size:16px;font-weight:600;color:var(--ink);
  display:flex;flex-wrap:wrap;align-items:center;gap:9px}
.card.wide p{max-width:none}

/* Evidence band. Numbers big enough to be the thing you read, the claim in body
   text under them, and the citation visible rather than tucked in a tooltip. */
.stats{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.stats.three{grid-template-columns:repeat(3,1fr);gap:30px}
/* 5h 33m is longer than a bare number, so the three headline figures need to
   shrink a step to stay on one line together. */
.stats.three .stat-n{font-size:52px}
@media(max-width:900px){.stats.three{grid-template-columns:1fr;gap:32px}}
.stat{border-top:2px solid var(--listen);padding-top:20px}
.stat-n{font-family:Fraunces,serif;font-size:64px;line-height:.95;letter-spacing:-.035em;
  font-weight:500;margin:0;color:var(--ink)}
.stat-l{font:600 15px Figtree,sans-serif;letter-spacing:.02em;color:var(--listen-ink);
  margin:8px 0 12px}
.stat-d{margin:0;color:var(--body);font-size:16.5px;line-height:1.6}
/* Full width of the stats grid above it. Capped at 88ch it stopped two-thirds
   of the way across and read as an orphaned column rather than a footnote to
   both columns - which is what it is. */
.stat-src{margin:30px 0 0;font-size:13.5px;line-height:1.65;color:var(--muted);max-width:none}
.stat-src a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.stat-src a:hover{color:var(--ink)}
.stat-src cite{font-style:italic}
@media(max-width:760px){.stats{grid-template-columns:1fr;gap:32px}.stat-n{font-size:54px}}

.steps{list-style:none;padding:0;margin:34px 0 0}
.steps li{display:grid;grid-template-columns:56px 1fr;gap:22px;padding:26px 0;border-top:1px solid var(--line)}
.steps li:last-child{border-bottom:1px solid var(--line)}
.steps .n{font-family:Fraunces,serif;font-size:34px;color:var(--c);line-height:.9;font-weight:500}
.steps h3{margin:0 0 5px;font-size:19.5px;font-weight:600;letter-spacing:-.01em}
.steps p{margin:0;color:var(--body);font-size:16px}

/* The strongest claim on the page. It previously had a rule above AND below,
   with the first .checks border 72px later — three full-width hairlines inside
   190px, so the claim was fenced and then the fence repeated. It was also
   46px against an h2 of 44px, i.e. typographically indistinguishable from a
   section heading; the rules were compensating for type that wasn't doing its
   job. Bigger type, and a short accent mark, which reads as a marker rather
   than a fence. */
.pull{font-family:Fraunces,serif;font-size:clamp(38px,5vw,60px);line-height:1.08;
  font-weight:500;letter-spacing:-.03em;margin:0 0 64px;padding:34px 0 0;
  position:relative;max-width:16ch;color:#fff}
.pull::before{content:"";position:absolute;top:0;left:0;width:56px;height:3px;
  border-radius:2px;background:var(--listen)}
.pull span{display:block;margin-top:20px;font-family:Figtree,sans-serif;font-size:18px;
  line-height:1.6;font-weight:400;letter-spacing:0;color:#B6BCC3;max-width:46ch}

/* Two columns of controls — five stacked rows read as a list of terms; in two
   columns they read as a set of things you can do. */
.checks{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:4px 42px}
.checks li{display:grid;grid-template-columns:24px 1fr;gap:15px;padding:18px 0;
  border-top:1px solid var(--line);font-size:16px;color:var(--body);line-height:1.55}
.checks li b{display:block;color:var(--ink);font-weight:600;font-size:18px;margin-bottom:3px}
.checks .tick{width:21px;height:21px;border-radius:50%;background:rgba(15,157,110,.13);display:grid;place-items:center;margin-top:4px}
.checks .tick::after{content:"";width:6px;height:10px;border:solid var(--listen);border-width:0 2.2px 2.2px 0;transform:rotate(42deg) translate(-1px,-1px)}

/* the labelled technical drawing */
/* Was a white box with a #E5E8E4 border on a white section — 1.24:1, so it had
   no visible edge at all. The tint gives it one without drawing a line. */
.diagram{margin:0;background:var(--wash);border:0;border-radius:var(--r);padding:26px 26px 20px}
.diagram img{width:100%;border-radius:6px}
.diagram figcaption{margin-top:18px;padding-top:16px;border-top:1px solid var(--line);
  font-size:15px;line-height:1.55;color:var(--muted)}

/* ---------- pricing ---------- */
.plans{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.plan{background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:32px}
.plan.lit{border-color:rgba(15,157,110,.4);box-shadow:0 0 0 1px rgba(15,157,110,.14)}
.plan-tag{font:700 11.5px Figtree,sans-serif;letter-spacing:.19em;color:var(--muted);margin:0 0 18px}
.plan.lit .plan-tag{color:var(--listen-ink)}
.price{font-family:Fraunces,serif;font-size:46px;line-height:1;letter-spacing:-.03em;
  font-weight:500;margin:0 0 24px;display:flex;align-items:baseline;gap:10px;
  /* Three parts now (struck list price, real price, unit) — without this the
     pre-order row overflows the card on narrow phones. */
  flex-wrap:wrap}
.price span{font-family:Figtree,sans-serif;font-size:16px;font-weight:500;
  letter-spacing:0;color:var(--muted)}
.plan ul{list-style:none;padding:0;margin:0}
.plan li{position:relative;padding:11px 0 11px 26px;border-top:1px solid var(--line);
  font-size:16px;line-height:1.55;color:var(--body)}
.plan li::before{content:"";position:absolute;left:0;top:19px;width:7px;height:7px;
  border-radius:50%;background:var(--line)}
.plan.lit li::before{background:var(--listen)}
.plan-note{margin-top:28px;background:var(--paper);border:1px solid var(--line);
  border-radius:var(--r);padding:30px 32px}
.plan-note h3{margin:0 0 12px;font-size:19px;font-weight:600;letter-spacing:-.01em}
.plan-note p{margin:0 0 14px;color:var(--body);font-size:16.5px;line-height:1.62;max-width:74ch}
.plan-note p:last-child{margin:0}
.reasons{list-style:none;padding:0;margin:0 0 18px}
.reasons li{position:relative;padding:14px 0 14px 22px;border-top:1px solid var(--line);
  font-size:16.5px;line-height:1.6;color:var(--body);max-width:74ch}
.reasons li::before{content:"";position:absolute;left:0;top:23px;width:7px;height:7px;
  border-radius:50%;background:var(--think)}
.reasons b{color:var(--ink);font-weight:600}
.plan-note strong{color:var(--ink);font-weight:600}
/* One column of 74ch prose left a quarter of this card empty; narrowing the card
   instead broke its alignment with the plans grid above. Two columns solves both:
   the card keeps the grid's full width, and the text fills it at ~46ch a column,
   which is a better measure than 74ch anyway. Heading spans both. */
@media(min-width:900px){
  .plan-note{column-count:2;column-gap:48px}
  .plan-note h3{column-span:all;margin-bottom:18px}
  .plan-note p{max-width:none}
  /* A bordered list item split down the middle of a column break looks broken. */
  .plan-note p,.reasons li{break-inside:avoid}
  .reasons{max-width:none}
}

/* Pre-order price: the struck list price sits smaller and lighter than the real
   one, so the eye lands on what they pay, not on what they don't. */
.price s{color:var(--muted);text-decoration-thickness:2px;font-size:.62em;font-weight:400}
.save{font:600 14px Figtree,sans-serif;color:var(--listen-ink);margin:-14px 0 22px;
  background:#EAF7F1;border:1px solid #BFE5D5;border-radius:999px;padding:6px 13px;display:inline-block}
.plan li b{color:var(--ink);font-weight:600}
/* The asterisk is a real link to the note, not decoration — the claim it
   qualifies is the one a parent is most likely to feel misled by later. */
.ast{color:var(--think-ink);text-decoration:none;font-weight:700;padding-left:1px}
.ast:hover,.ast:focus-visible{text-decoration:underline}
/* Full width of the plans grid it annotates — capped at 74ch it stopped a third
   of the way across and read as an orphaned column. */
#tokens-note{max-width:none;margin-top:22px}
#tokens-note:target{background:#FFF7EC;border-radius:10px;padding:10px 13px;margin-left:-13px}

@media(max-width:880px){.plans{grid-template-columns:1fr}}

/* hardware table — hairlines and a mono column, because these are measurements */
.spec{margin:0;font-size:16px}
.spec > div{display:grid;grid-template-columns:120px 1fr;gap:18px;padding:14px 0;border-bottom:1px solid var(--line)}
.spec > div:first-child{border-top:1px solid var(--line)}
.spec dt{color:var(--muted);font-weight:600;font-size:13.5px;letter-spacing:.02em;padding-top:2px}
.spec dd{margin:0;color:var(--ink)}
@media(max-width:560px){.spec > div{grid-template-columns:1fr;gap:2px}}

/* ---------- forms ---------- */
label{display:block;font-size:13.5px;color:var(--muted);margin:18px 0 7px;font-weight:600}
input{width:100%;padding:14px 16px;border-radius:13px;border:1.5px solid var(--line);
  background:var(--paper);color:var(--ink);font:400 16.5px Figtree,sans-serif}
input::placeholder{color:#8A939D}
input:focus-visible{outline:2.5px solid var(--listen);outline-offset:1px;border-color:transparent}
input.code{font-family:"IBM Plex Mono",monospace;font-size:31px;letter-spacing:.26em;text-align:center;padding:17px 8px}
.inline{display:flex;gap:11px;max-width:470px}
.inline input{flex:1}
@media(max-width:520px){.inline{flex-direction:column}}
.fineprint{font-size:14px;color:var(--muted);margin-top:12px}

/* Three facts under the hero form, so the recording objection is answered
   before a visitor has to scroll for it. */
/* ---------- legal pages ---------- */
/* Narrow measure and generous spacing: these are the two documents on the site
   somebody actually has to read end to end, so they get prose typography rather
   than marketing typography. */
.legal{padding:64px 0 40px}
.legal h1{font-family:Fraunces,serif;font-size:clamp(34px,4.4vw,46px);line-height:1.08;
  letter-spacing:-.03em;font-weight:500;margin:0 0 14px}
.legal h2{font-size:22px;font-weight:600;letter-spacing:-.01em;margin:44px 0 12px}
.legal h3{font-size:17.5px;font-weight:600;margin:26px 0 8px}
.legal p{color:var(--body);font-size:17px;line-height:1.7;margin:0 0 16px}
.legal .lead{font-size:19px;color:var(--body);margin:22px 0 8px}
.legal-date{font-size:14.5px;color:var(--muted);margin:0 0 8px}
.legal a{color:var(--listen-ink);text-decoration:underline;text-underline-offset:2px}
.legal .reasons li{font-size:17px}
.legal-note{margin-top:48px;padding:20px 22px;background:var(--wash);
  border:1px solid var(--line);border-radius:var(--r);font-size:15.5px}

.foot p{margin:0 0 14px;max-width:56ch;line-height:1.6}
.foot-note{font-size:13.5px;color:var(--muted);margin:0}
/* Separated from the privacy note above it — this is an ownership line, not more
   fine print, and running them together reads as one paragraph. */
.copyright{font-size:13.5px;color:var(--muted);margin:22px 0 0;padding-top:18px;
  border-top:1px solid var(--line)}

.note{margin-top:14px;font-size:15px;padding:12px 15px;border-radius:12px;display:none}
.note.err{display:block;background:#FDF0EE;border:1px solid #F3CFC9;color:#9C3325}
.note.ok{display:block;background:#EAF7F1;border:1px solid #BFE5D5;color:#0B7B56}

/* ---------- app ---------- */
.tabs{display:flex;gap:5px;background:var(--wash);padding:5px;border-radius:14px;margin:0 0 30px}
.tabs button{flex:1;padding:11px;border:0;border-radius:10px;background:none;color:var(--muted);font:600 15px Figtree,sans-serif;cursor:pointer}
.tabs button[aria-selected="true"]{background:var(--paper);color:var(--ink);box-shadow:0 1px 3px rgba(20,23,28,.08)}

.dev{background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:24px;margin-bottom:16px}
.dev-top{display:flex;gap:18px;align-items:center}
.mini{width:62px;height:62px;flex:0 0 62px;border-radius:50%;border:3px solid var(--c);display:grid;place-items:center;background:#0A0B0D}
.mini b{width:19px;height:19px;border-radius:50%;background:var(--c);display:block}
.dev[data-busy="1"] .mini b{animation:breathe 1.1s ease-in-out infinite}
@keyframes breathe{0%,100%{transform:scale(1)}50%{transform:scale(1.3)}}
.dev-name{font-weight:700;font-size:19.5px;letter-spacing:-.015em}
.dev-id{font-size:12.5px;color:#767F8A;margin-top:2px}
.dev-mem{font-size:15px;color:var(--c);margin-top:6px;font-weight:600}
.seg{display:flex;gap:5px;margin-top:20px;background:var(--wash);padding:5px;border-radius:12px}
.seg button{flex:1;padding:10px 4px;border:0;border-radius:9px;background:none;color:var(--muted);font:600 13.5px Figtree,sans-serif;cursor:pointer}
.seg button[aria-pressed="true"]{background:var(--paper);color:var(--ink);box-shadow:0 1px 3px rgba(20,23,28,.08)}
.acct{position:relative}
.acct-btn::after{content:"";display:inline-block;margin-left:7px;vertical-align:middle;
  border:4px solid transparent;border-top-color:currentColor;transform:translateY(2px)}
.acct-menu{position:absolute;right:0;top:calc(100% + 10px);min-width:230px;z-index:60;
  background:var(--paper);border:1px solid var(--line);border-radius:12px;padding:6px;
  box-shadow:0 12px 30px rgba(20,23,28,.13)}
.acct-email{padding:11px 12px 12px;font-size:13.5px;color:var(--muted);
  border-bottom:1px solid var(--line);overflow-wrap:anywhere}
.acct-item{display:block;width:100%;text-align:left;margin-top:5px;padding:10px 12px;border:0;
  border-radius:8px;background:none;color:var(--ink);font:600 14.5px Figtree,sans-serif;cursor:pointer}
.acct-item:hover{background:var(--wash)}

.set{margin-top:22px}
.set > b{display:block;font-size:15.5px;letter-spacing:-.01em}
.set .why{display:block;margin:5px 0 12px;font-size:13.5px;color:var(--muted);line-height:1.5}
.set .seg{margin-top:0}
.set .dev-mem{margin-top:11px}
.set .age{margin-top:0}
.set .len{flex:1 1 100%;font-size:13.5px;color:var(--muted)}
.aside{margin:16px 0 0;font-size:13.5px;color:var(--muted)}
.aside a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.aside a:hover{color:var(--ink)}
.age{display:flex;align-items:center;gap:11px;margin-top:16px;flex-wrap:wrap}
.age label{font:600 14.5px Figtree,sans-serif;color:var(--ink)}
.age select{border:1px solid var(--line);border-radius:10px;padding:8px 11px;background:var(--paper);
  color:var(--ink);font:600 14px Figtree,sans-serif;cursor:pointer}
.age select:focus-visible{outline:2px solid var(--c);outline-offset:2px}
.age .why{flex:1 1 100%;font-size:13.5px;color:var(--muted);line-height:1.45}
.acts{display:flex;flex-wrap:wrap;gap:20px;margin-top:18px;padding-top:16px;border-top:1px solid var(--line)}
.act{background:none;border:0;padding:0;color:var(--muted);font:600 14.5px Figtree,sans-serif;cursor:pointer}
.act:hover{color:var(--ink)}
.act.danger:hover{color:var(--danger)}

.empty{border:1.5px dashed var(--line);border-radius:var(--r);padding:42px 28px;text-align:center;color:var(--body)}
.empty h3{color:var(--ink);font-size:20px;font-weight:600;margin:0 0 6px}
.empty p{margin:0 0 4px}

.turn{border-left:2px solid var(--line);padding:0 0 22px 18px;margin-left:3px}
.turn .q{font-weight:600}
.turn .a{color:var(--body);margin-top:4px}
.turn .t{font-size:12px;color:#9AA4AE;margin-top:6px}
.daysep{font:700 11.5px Figtree,sans-serif;letter-spacing:.17em;color:var(--muted);margin:30px 0 15px}

footer{border-top:1px solid var(--line);padding:44px 0;color:var(--muted);font-size:14.5px}

@media(max-width:880px){
  /* Overlaying a headline on a narrow crop would put type across the child's
     face, so below this width the photo becomes a band and the copy sits under
     it. The focal point shifts right to keep him in frame. */
  .hero{display:block;min-height:0}
  .hero-media{position:relative;height:clamp(230px,42vw,320px);background-position:72% center}
  .hero-media::after{display:none}
  .hero-copy{padding-top:34px;padding-bottom:10px}
  .hero-copy > *{max-width:none}
  .two,.two.hw,.grid3,.contrast,.checks{grid-template-columns:1fr;gap:22px}
  .checks{gap:0}
  .sec-head{margin-bottom:32px}
  .pull{margin-bottom:36px;padding:28px 0}
  section{padding:64px 0}
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}html{scroll-behavior:auto}}
