:root{
  --ink:#0C0D08; --paper:#FFFFFF; --wash:#F5F5F2;
  --rule:#E2E2DB; --rule-dark:#26271F;
  --muted:#6B6B64; --muted-dark:#8E8E85;
  --blue:#1E2FC4;
  --gut:clamp(22px,5vw,56px);

  /*
   * Three faces, three roles, all SIL OFL 1.1 and all self-hosted in
   * assets/fonts. Display for headings and controls, body for anything read as
   * prose, data for registrations, references, readings and timestamps.
   *
   * Only a generic sits behind the named family. Never -apple-system or
   * BlinkMacSystemFont: those always resolve on the platforms that have them,
   * so the intended face never renders and the page becomes a different
   * document on every operating system.
   */
  --font-display:'Archivo',sans-serif;
  --font-body:'Inter',sans-serif;
  --font-data:'IBM Plex Mono',monospace;

  /*
   * Six steps. Everything on both pages resolves to one of these; --t-lead is
   * the only fluid one, and h1, h2 and .lede carry their own clamp because
   * display type has to travel further than body type does.
   */
  --t-legal:10.5px;
  --t-micro:13px;
  --t-small:15px;
  --t-body:17px;
  --t-lead:clamp(17px,1.55vw,19px);
  --t-title:20px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--paper);color:var(--ink);font-size:var(--t-body);line-height:1.6;
  -webkit-font-smoothing:antialiased;font-feature-settings:"kern" 1;
}
a{color:inherit}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:2px}
.wrap{max-width:1180px;margin:0 auto;padding:0 var(--gut)}

/*
 * Negative tracking is a property of the size rather than of the face, so it
 * has to shrink as the type shrinks. -0.028em is right at 78px and closes the
 * counters at 38px. The bands sit at the ends of each clamp fluid range.
 */
h1,h2,h3{font-family:var(--font-display);font-weight:700}
h1{font-size:clamp(38px,6.4vw,78px);letter-spacing:-0.012em;line-height:1.12}
@media(min-width:600px){h1{letter-spacing:-0.020em;line-height:1.07}}
@media(min-width:1220px){h1{letter-spacing:-0.028em;line-height:1.02}}
/*
 * `.doc-title h1` rides on h2's values rather than restating them. A document
 * page's title is a label on a document, not a statement, so it takes the
 * smaller display step - but there is one set of numbers for that step, and a
 * second copy is how the two come to disagree.
 */
h2,.doc-title h1{font-size:clamp(29px,4.1vw,50px);letter-spacing:-0.014em;line-height:1.14}
@media(min-width:720px){h2,.doc-title h1{letter-spacing:-0.020em;line-height:1.08}}
@media(min-width:1220px){h2,.doc-title h1{letter-spacing:-0.026em;line-height:1.04}}
.doc-title h1{max-width:20ch}
.doc-title p{margin-top:18px;color:var(--muted);font-size:var(--t-lead);max-width:52ch}
h3{font-size:var(--t-title);letter-spacing:-0.012em;line-height:1.25}
p{text-wrap:pretty}
/*
 * Vertical only, and that is load-bearing rather than a style preference.
 *
 * .section and .hero are both applied alongside .wrap on the same element, they
 * both have the same specificity as it, and they both sit below it in this
 * file. Written as the `padding` shorthand they set padding-left and
 * padding-right to 0 and win, so every section on both pages was running edge
 * to edge with no gutter at all below 1180px. Keep the two axes in separate
 * properties: .wrap owns horizontal, these own vertical.
 */
.section{padding-top:clamp(64px,9vw,120px);padding-bottom:clamp(64px,9vw,120px)}
.section-head{max-width:52ch}
.section-head p{margin-top:18px;color:var(--muted);font-size:var(--t-lead)}

/* nav */
.nav{display:flex;align-items:center;justify-content:space-between;padding:26px var(--gut);max-width:1180px;margin:0 auto}
.mark{display:flex;align-items:center;gap:9px;font-family:var(--font-display);font-weight:700;font-size:var(--t-body);letter-spacing:-0.02em;text-decoration:none}
.mark svg{display:block}
.nav-right{display:flex;align-items:center;gap:30px}
.nav-right a{font-size:var(--t-small);color:var(--muted);text-decoration:none;font-weight:500}
.nav-right a:hover,.nav-right a[aria-current]{color:var(--ink)}
.nav-cta{font-family:var(--font-display);background:var(--ink);color:var(--paper)!important;padding:9px 17px;border-radius:4px;font-size:var(--t-small);font-weight:500;text-decoration:none}
@media(max-width:820px){.nav-hide{display:none}}

/* buttons + store badges */
.btn{display:inline-block;font-family:var(--font-display);padding:14px 25px;border-radius:4px;font-size:var(--t-small);font-weight:500;text-decoration:none;border:1px solid transparent}
.btn-solid{background:var(--ink);color:var(--paper)}
.btn-line{border-color:var(--rule);color:var(--ink)}
.btn-line:hover{border-color:var(--ink)}
/*
 * The pair shrinks together rather than wrapping. Two badges at their natural
 * 156px plus the 11px gap need 323px, and a 360px phone has 316px of content,
 * so flex-wrap put the second badge on its own line by 7px. That was an
 * accident, not a layout. nowrap with a shrinkable basis keeps them side by
 * side at every width and caps them at the natural size on a wide screen.
 */
.stores{display:flex;flex-wrap:nowrap;gap:11px;margin-top:34px}
.store{display:block;flex:0 1 156px;min-width:0;text-decoration:none;border-radius:7px;line-height:0}
.store svg{display:block;width:100%;height:auto}
.store[aria-disabled="true"]{opacity:.4;pointer-events:none}
.avail{margin-top:16px;font-size:var(--t-small);color:var(--muted)}
.avail b{font-weight:500;color:var(--ink)}

/* hero */
/* Vertical only, for the reason given above .section. */
.hero{padding-top:clamp(40px,6vw,76px);padding-bottom:clamp(56px,8vw,100px)}
.hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.92fr);gap:clamp(32px,5vw,72px);align-items:center}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr;gap:44px}}
/*
 * 11ch is a measure for a headline sharing a row with the diagram. Once the
 * grid collapses the headline has the whole column, and 11ch is about 209px of
 * a 316px phone, which turns four lines into six for nothing.
 */
.hero h1{max-width:11ch}
@media(max-width:900px){.hero h1{max-width:none}}
.hero-sub{margin-top:26px;font-size:var(--t-lead);color:var(--muted);max-width:44ch;line-height:1.6}

/* ring */
.ring-panel{background:var(--wash);border-radius:8px;padding:clamp(20px,3.4vw,38px)}
.ring-panel svg{width:100%;height:auto;display:block}
/*
 * The drawing is a 480-unit viewBox rendered at about 400px on a wide screen
 * and 276px on a 360px phone, so a scaled 1.5-unit stroke lands at 1.25 and
 * 0.86 device px and the phone gets a washed-out hairline. non-scaling-stroke
 * makes stroke-width a device measurement instead; the widths in the markup
 * are set to the weight the wide screen already had, so the phone gains and
 * the desktop holds where it was.
 */
.ring-panel [vector-effect]{vector-effect:non-scaling-stroke}
.node-c{transition:fill .32s ease,stroke .32s ease,r .32s ease}
.readout{display:flex;align-items:baseline;justify-content:space-between;gap:14px;margin-top:22px;padding-top:16px;border-top:1px solid var(--rule)}
.readout-pos{font-size:var(--t-small);font-weight:500}
.readout-count{font-family:var(--font-data);font-size:var(--t-micro);color:var(--muted);font-variant-numeric:tabular-nums}

/* records */
.records{margin-top:clamp(36px,5vw,60px);border-top:1px solid var(--rule)}
.rec{display:grid;grid-template-columns:minmax(0,26ch) minmax(0,1fr);gap:clamp(14px,3vw,48px);padding:26px 0;border-bottom:1px solid var(--rule)}
@media(max-width:680px){.rec{grid-template-columns:1fr;gap:7px;padding:22px 0}}
.rec p{color:var(--muted);font-size:var(--t-body);max-width:56ch}

/*
 * steps. The old 780px breakpoint caught iPad portrait at 768 and stacked
 * three short blocks that sit comfortably three across there.
 */
.steps{margin-top:clamp(36px,5vw,60px);display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(20px,3vw,40px)}
@media(max-width:600px){.steps{grid-template-columns:1fr;gap:0}}
.step{border-top:2px solid var(--ink);padding-top:20px}
@media(max-width:600px){.step{border-top:1px solid var(--rule);padding:22px 0}.step:first-child{border-top:2px solid var(--ink)}}
.step-n{font-family:var(--font-data);font-size:var(--t-micro);font-weight:500;color:var(--blue);font-variant-numeric:tabular-nums}
.step h3{margin:12px 0 9px}
.step p{color:var(--muted);font-size:var(--t-body)}

/* document */
.doc{background:var(--ink);color:var(--paper)}
.doc-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.86fr);gap:clamp(36px,5vw,80px);align-items:center}
@media(max-width:900px){.doc-grid{grid-template-columns:1fr;gap:44px}}
.doc p{color:var(--muted-dark);margin-top:20px;font-size:var(--t-lead);max-width:44ch}
.doc-list{margin-top:30px;list-style:none}
.doc-list li{padding:13px 0;border-top:1px solid var(--rule-dark);font-size:var(--t-body);display:flex;justify-content:space-between;gap:20px}
.doc-list li span:last-child{color:var(--muted-dark);text-align:right}
/* Label above value: the pair does not fit on one line in a phone column. */
@media(max-width:560px){
  .doc-list li{display:block}
  .doc-list li span:last-child{display:block;text-align:left;margin-top:4px}
}
.sheet{background:var(--paper);color:var(--ink);border-radius:5px;padding:clamp(22px,3vw,34px);box-shadow:0 40px 70px -30px rgba(0,0,0,.6)}
.sheet-top{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;padding-bottom:16px;border-bottom:1px solid var(--rule)}
/* A reference is read out over the phone, so it must never break mid-token. */
.sheet-ref{font-family:var(--font-data);font-size:var(--t-micro);color:var(--muted);font-variant-numeric:tabular-nums;white-space:nowrap}
/* Below this the title and the reference cannot share a line. The reference
   goes above, which is where a document header carries it anyway. */
@media(max-width:480px){
  .sheet-top{flex-direction:column-reverse;align-items:stretch;gap:10px}
}
.sheet h4{font-family:var(--font-display);font-size:var(--t-title);font-weight:700;letter-spacing:-.02em}
.sheet-veh{font-size:var(--t-micro);color:var(--muted);margin-top:4px}
.sheet-veh .reg{font-family:var(--font-data);color:var(--ink)}
.sheet-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin:16px 0}
.sheet-thumbs div{aspect-ratio:4/3;background:var(--wash);border-radius:3px}
/*
 * Four across is 63px wide on a phone, which reads as noise rather than as a
 * contact sheet. Two across at about 130px reads as a photograph frame, and
 * four of them is the depiction rather than eight illegible ones.
 */
@media(max-width:480px){
  .sheet-thumbs{grid-template-columns:repeat(2,1fr)}
  .sheet-thumbs div:nth-child(n+5){display:none}
}
.sheet-row{display:flex;justify-content:space-between;font-size:var(--t-micro);padding:8px 0;border-top:1px solid var(--rule);color:var(--muted)}
.sheet-row b{font-family:var(--font-data);font-weight:500;color:var(--ink);font-variant-numeric:tabular-nums}
.sheet-sigs{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px;padding-top:16px;border-top:1px solid var(--rule)}
.sheet-sig span{display:block;font-family:var(--font-data);font-size:var(--t-legal);color:var(--muted);margin-top:6px;line-height:1.4}
.sheet-sig svg{display:block;width:100%;height:34px}

/* close */
.close{background:var(--wash);text-align:center}
.close h2{max-width:16ch;margin:0 auto}
.close p{color:var(--muted);margin-top:18px;font-size:var(--t-lead)}
.close .stores{justify-content:center}

/* mission */
.lede{font-size:clamp(19px,2.2vw,24px);line-height:1.5;max-width:34ch;color:var(--muted);margin-top:28px}
.prose{max-width:62ch}
.prose p{margin-top:22px;font-size:var(--t-lead);line-height:1.68;color:var(--muted)}
.prose p.first{color:var(--ink)}
.principles{margin-top:clamp(36px,5vw,56px);border-top:1px solid var(--rule)}
.principle{display:grid;grid-template-columns:minmax(0,30ch) minmax(0,1fr);gap:clamp(14px,3vw,48px);padding:30px 0;border-bottom:1px solid var(--rule)}
@media(max-width:680px){.principle{grid-template-columns:1fr;gap:9px}}
.principle p{color:var(--muted);font-size:var(--t-body);max-width:58ch}
.facts{margin-top:34px;border-top:1px solid var(--rule);max-width:640px}
.facts div{display:flex;justify-content:space-between;gap:24px;padding:14px 0;border-bottom:1px solid var(--rule);font-size:var(--t-body)}
.facts span:first-child{color:var(--muted)}
.todo{color:var(--blue)}

/* document pages: help and privacy */

/* Present for keyboard users only. The two document pages are long. */
.skip{position:absolute;left:-9999px;top:0;background:var(--ink);color:var(--paper);padding:10px 16px;border-radius:0 0 4px 0;font-size:var(--t-small);text-decoration:none;z-index:10}
.skip:focus{left:0}

/*
 * The prose block already carries paragraphs. These are the parts a notice or a
 * policy needs and a marketing page does not: sub-headings, lists, and a way to
 * emphasise inside a muted paragraph without it disappearing.
 */
.prose h2{font-size:var(--t-title);margin-top:44px}
.prose h3{font-size:var(--t-body);margin-top:30px;letter-spacing:-0.006em}
.prose h2+p,.prose h3+p{margin-top:10px}
.prose ul{margin:14px 0 0 20px;color:var(--muted);font-size:var(--t-lead)}
/*
 * Ordered lists, added 15 September 2026 for the account-deletion page's three
 * steps. Same metrics as `ul` on purpose: the only difference between them here
 * is whether the marker is a number, and a numbered list that indents or sizes
 * differently from a bulleted one reads as a different kind of content.
 *
 * `ul` had been the only list style, so before this an `ol` fell back to the
 * browser default - smaller, differently indented, and in the body colour
 * rather than the muted one.
 */
.prose ol{margin:14px 0 0 20px;color:var(--muted);font-size:var(--t-lead)}
.prose li{margin-top:7px}

/* ---------------------------------------------------------------- legal --
 * The two legal documents: /terms/ and /privacy/.
 *
 * Added 15 September 2026, when the reviewed documents replaced the interim
 * page and the placeholder notice. `.prose` alone could not carry them: a
 * twenty-page contract needs a clause number a reader can scan down the left
 * edge, an anchor per clause so a citation resolves, and a contents list.
 *
 * **The two documents are numbered differently and that is deliberate.** The
 * Terms carry clause and sub-clause numbers, reconstructed from a single
 * three-level list and validated against the document's own cross-reference.
 * The Privacy Policy carries none: it uses thirteen independent lists, so a
 * displayed number can only be produced by composing across them, and the
 * reconstruction would publish two sections numbered 1. Duplicate section
 * numbers are worse than none. Its anchors are heading slugs, which also
 * cannot go stale if counsel renumbers.
 *
 * So `.cn` appears on every Terms clause and on no Privacy clause, and the
 * rules below have to look right both ways.
 */

/*
 * The effective-date block, under the h1 and inside `.doc-title`, so it
 * inherits that block's muted lead treatment rather than restating it.
 */
/*
 * Renamed from `.legal-effective` on 15 September 2026 with the wording it
 * styles. The site said "Effective 15 September 2026" while the app's Legal
 * screen said "Last updated" - one date, two words for it, across three
 * surfaces. The class went with the copy rather than being left naming a
 * sentence that no longer exists.
 */
.legal-updated{font-size:var(--t-body)}

/*
 * Contents. A plain list, not a card: it is navigation and the page beneath it
 * is the content, so anything that boxes it competes with the document.
 *
 * `column-count` rather than a grid, because the entries are one line each and
 * their number differs between the two documents - sixteen and eighteen today,
 * and whatever counsel sends next.
 */
.legal-toc{margin-top:40px;padding-top:26px;border-top:1px solid var(--rule)}
.legal-toc h2{font-size:var(--t-body);letter-spacing:0.02em;text-transform:uppercase;color:var(--muted)}
.legal-toc-list{list-style:none;margin:16px 0 0;padding:0;font-size:var(--t-body)}
@media(min-width:760px){.legal-toc-list{column-count:2;column-gap:40px}}
.legal-toc-list li{margin-top:8px;break-inside:avoid}
.legal-toc-list a{color:var(--ink);text-decoration:none;border-bottom:1px solid transparent}
.legal-toc-list a:hover,.legal-toc-list a:focus-visible{border-bottom-color:var(--ink)}
/* The number in the contents list sits inline, not hanging: the entries are
 * short and a hanging column here would pull the eye off the titles. */
.legal-toc-list .cn{color:var(--muted);margin-right:8px;font-variant-numeric:tabular-nums}

/*
 * Clause numbers hang in the left margin, so the numbers form a scannable
 * column and the text keeps a straight left edge. `padding-left` with a
 * negative-indent `.cn` rather than a list marker, because the numbers are
 * reconstructed values in the markup and must be selectable and citable text.
 *
 * `tabular-nums` so 5.8.3 and 12.4.1 occupy the same width and the column does
 * not ripple.
 */
.legal section{margin-top:38px}
.legal h2{margin-top:0}
.legal h2 .cn,.legal p .cn,.legal li .cn{
  display:inline-block;color:var(--muted);font-variant-numeric:tabular-nums;
}
.legal h2{padding-left:var(--cn-w);text-indent:calc(var(--cn-w) * -1)}
.legal h2 .cn{width:var(--cn-w)}
.legal>section>p{padding-left:var(--cn-w);text-indent:calc(var(--cn-w) * -1)}
.legal>section>p .cn{width:var(--cn-w)}
/*
 * Three levels of number need three widths, or "12.4.1" wraps under itself at
 * the narrowest viewport. One custom property, overridden per depth.
 */
.legal{--cn-w:2.9em}
.legal .legal-sub{--cn-w:3.9em}

/*
 * Sub-clauses. `list-style:none` because the number is real text in a `.cn`,
 * not a generated marker - a generated one would not be citable and would not
 * match the reconstruction.
 *
 * The Privacy Policy's lettered lists use the same container and DO carry their
 * marker in `.cn`, because a letter counts within one list and is reliable. Its
 * decimal sub-items carry no `.cn` at all, so the rule has to look right with
 * the span absent: that is why the indent lives on the `li` rather than on the
 * span.
 */
.legal .legal-sub{list-style:none;margin:12px 0 0;padding:0}
.legal .legal-sub li{
  margin-top:9px;padding-left:var(--cn-w);text-indent:calc(var(--cn-w) * -1);
}
.legal .legal-sub li .cn{width:var(--cn-w)}
.legal ul.legal-sub li:not(:has(.cn)){
  padding-left:20px;text-indent:0;list-style:disc;display:list-item;
}
/* A continuation paragraph: text that belongs to the clause above it and
 * carries no number of its own. Aligned with the clause text, not the number. */
.legal .legal-cont{padding-left:var(--cn-w)}

/*
 * The lawful-basis table. Three columns of prose, so it scrolls sideways on a
 * phone rather than crushing to unreadable widths - the alternative is
 * collapsing it to stacked blocks, which loses the row relationship, and in a
 * privacy notice "which lawful basis applies to which data" IS the meaning.
 */
.legal-tablewrap{margin-top:20px;overflow-x:auto;-webkit-overflow-scrolling:touch}
.legal-table{border-collapse:collapse;width:100%;min-width:640px;font-size:var(--t-body)}
.legal-table th,.legal-table td{
  border:1px solid var(--rule);padding:12px 14px;text-align:left;vertical-align:top;
}
.legal-table th{background:var(--wash);font-family:var(--font-display);font-weight:600}
.legal-table td{color:var(--muted)}
.legal-table p{margin:0}
.legal-table p+p{margin-top:7px}

/*
 * A clause arrived at by following a citation is highlighted, because landing
 * mid-document with nothing marked leaves a reader hunting for the thing they
 * clicked.
 */
.legal :target{background:var(--wash);outline:2px solid var(--rule);outline-offset:6px;border-radius:2px}
.prose b,.prose strong{color:var(--ink);font-weight:500}
.prose a{color:var(--ink);text-decoration-color:var(--rule);text-underline-offset:3px}
.prose a:hover{text-decoration-color:var(--ink)}

/*
 * A callout, used for the privacy notice's placeholder warning and for the
 * "there is a Send feedback screen in the app" note on help.
 *
 * The tone is carried by a left rule rather than a fill, the same decision as
 * the unfinished-handover card in the app: a filled block is the loudest thing
 * on a page of prose, and neither of these outranks the document it sits in.
 */
.callout{border-left:3px solid var(--rule);padding:2px 0 2px 18px;margin-top:28px;font-size:var(--t-body);color:var(--muted);max-width:62ch}
.callout b{color:var(--ink);font-weight:500}
.callout-warn{border-left-color:#A63A2C}

/* help: form beside the standing answers */
/*
 * The contact form's column, 15 September 2026.
 *
 * **This replaced `.split` and `.aside`, which are deleted rather than left
 * dead.** /help/ was the only page using either - checked across all six - so
 * once the "Before you write" aside went there was nothing for them to style.
 *
 * `.split` was a 1fr/.7fr grid and the form sat in the wider column, so the
 * width here is what the form already had rather than a new decision: 640px is
 * about that column at the 1180px breakpoint. Keeping the grid with one child
 * would have left an empty second column beside the form.
 */
.form-only{max-width:640px;margin-top:clamp(32px,4vw,52px)}

/* form */
.form{margin-top:28px;max-width:34rem}
.field{margin-bottom:22px}
.field label,.field legend{display:block;font-family:var(--font-body);font-size:var(--t-small);font-weight:500;margin-bottom:7px}
.hint{color:var(--muted);font-weight:400}
.input,.textarea{
  display:block;width:100%;font-family:var(--font-body);font-size:var(--t-body);color:var(--ink);
  background:var(--paper);border:1px solid var(--rule);border-radius:4px;padding:11px 13px;line-height:1.5;
}
.textarea{min-height:150px;resize:vertical}
.input:hover,.textarea:hover{border-color:var(--muted)}
.radios{display:flex;flex-direction:column;gap:9px}
.radios label{display:flex;align-items:center;gap:10px;font-weight:400;margin:0;font-size:var(--t-body)}
.radios input{width:17px;height:17px;accent-color:var(--blue);margin:0;flex:none}
/*
 * The honeypot. Off-screen rather than display:none, because some bots skip
 * anything a stylesheet has hidden outright and this one is meant to be filled.
 */
.trap{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form button[type="submit"]{
  font-family:var(--font-display);background:var(--ink);color:var(--paper);border:0;cursor:pointer;
  padding:14px 25px;border-radius:4px;font-size:var(--t-small);font-weight:500;
}
.form button[type="submit"]:disabled{opacity:.55;cursor:default}
.form__status{margin-top:14px;font-size:var(--t-small);color:var(--muted);min-height:1.4em}
.form__status[data-state="error"]{color:#A63A2C}
.form__status[data-state="ok"]{color:var(--ink)}

/* footer */
footer{border-top:1px solid var(--rule);padding:clamp(48px,6vw,72px) 0 40px}
.foot-cols{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:clamp(24px,4vw,48px)}
@media(max-width:820px){.foot-cols{grid-template-columns:1fr 1fr;gap:32px}}
@media(max-width:520px){.foot-cols{grid-template-columns:1fr}}
.foot-col h4{font-size:var(--t-micro);font-weight:500;color:var(--muted);margin-bottom:14px;letter-spacing:0}
.foot-col a{display:block;text-decoration:none;font-size:var(--t-small);padding:5px 0}
.foot-col a:hover{color:var(--blue)}
.foot-brand p{font-size:var(--t-small);color:var(--muted);margin-top:14px;max-width:30ch}
/*
 * The one place that keeps its size. 10.5px is small on purpose, and it is set
 * in the body face rather than the display one: at that size a larger x-height
 * and open apertures are the difference between read and squinted at.
 */
.foot-legal{margin-top:clamp(40px,5vw,64px);padding-top:20px;border-top:1px solid var(--rule);font-size:var(--t-legal);color:var(--muted);line-height:1.6;max-width:78ch;letter-spacing:0.005em}

@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
