/* ═══════════════════════════════════════════════════════════════
   Designshippers — journal
   Two widths only: text sits on the measure, every image breaks
   out to the same wider column. Everything below the "post blocks"
   divider is a block the editor will emit — keep that list closed.
   ═══════════════════════════════════════════════════════════════ */

:root{
  --ink:#161615; --paper:#f6f5f8; --mute:#6e6e6a; --faint:#a3a39d;
  --wash:#efeef2; --line:rgba(22,22,21,.1);
  --live:#FF4A00;
  --r-lg:22px; --r-md:14px; --r-sm:10px;
  --max:1080px; --measure:660px;
  --gut:24px;
  --ease:cubic-bezier(.32,.72,0,1);
}

@font-face{
  font-family:"Geist";
  src:url("../fonts/Geist.woff2") format("woff2");
  font-weight:100 900;
  font-display:swap;
}

*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  color:var(--ink); background:var(--paper);
  font-size:17px; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
::selection{background:var(--ink);color:#fff}
img{max-width:100%;display:block}
a{color:inherit}
:focus-visible{outline:2px solid var(--ink);outline-offset:3px;border-radius:8px}

.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--gut)}

/* ── reading progress: the only chrome that moves ───────────── */
.progress{
  position:fixed; inset:0 auto auto 0; z-index:80;
  height:2px; width:100%;
  background:var(--live);
  transform:scaleX(0); transform-origin:0 50%;
  will-change:transform;
}

/* ── site header, matched to index.html ─────────────────────── */
.topmark{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:26px 24px 0;
}
.brandmark{height:32px;width:auto;display:block}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background:var(--ink); color:#fff; border-radius:999px;
  padding:10px 19px; font-size:.9375rem; font-weight:500; letter-spacing:-.01em;
  text-decoration:none; white-space:nowrap; transition:opacity .2s ease;
}
.btn:hover{opacity:.85}

/* ── the hover language, borrowed from the metal ──────────────
   The site polishes things on hover: .metal__sheen sweeps a blurred
   specular band across the chrome, .shot__glow tracks a glow over the
   product shots. Text gets the same treatment rather than an underline
   — a silver core with iridescent fringes travelling through the
   letterforms, on the same one-shot 1.15s curve the buttons use. */
/* Positions are tuned so the band sits exactly one hair off the left
   edge at rest — no dead lead-in before anything shows. It clears the
   right edge at 72% and holds, which is the same shape .metal__sheen
   uses, so the crossing takes the same ~830ms the buttons do. */
@keyframes text-sheen{
  0%        {background-position:102% 0, 0 0}
  72%, 100% {background-position:-2% 0, 0 0}
}
.tlink,.row__title{
  background-image:
    linear-gradient(100deg,
      transparent 38%,
      rgba(120,140,255,.75) 44%,
      rgba(178,182,196,.98) 48%,
      rgba(214,150,255,.80) 52%,
      rgba(255,160,105,.65) 56%,
      transparent 62%),
    linear-gradient(var(--tint), var(--tint));
  background-repeat:no-repeat;
  background-size:260% 100%, 100% 100%;
  background-position:102% 0, 0 0;
  color:var(--tint);
}
@supports (-webkit-background-clip:text){
  .tlink,.row__title{-webkit-background-clip:text;background-clip:text;color:transparent}
}

.topnav{display:flex;align-items:center;gap:26px}
.tlink{
  --tint:var(--mute);
  font-size:.9375rem; font-weight:500; letter-spacing:-.01em;
  text-decoration:none; white-space:nowrap;
}
/* the section you're in simply sits at full ink; the others stay quiet */
.tlink.is-active{--tint:var(--ink)}
.tlink:hover,.tlink:focus-visible{animation:text-sheen 1.15s cubic-bezier(.4,0,.3,1)}

/* ── masthead: title and dek, nothing else ─────────────────── */
.masthead{
  max-width:var(--measure); margin:0 auto;
  padding:clamp(56px,8vw,96px) var(--gut) clamp(28px,4vw,40px);
  text-align:center;
}
.masthead h1{
  font-family:"Geist",-apple-system,sans-serif;
  font-weight:420;
  font-size:clamp(2.35rem,6.4vw,3.9rem);
  line-height:1.04; letter-spacing:-.035em;
  color:#101114; text-wrap:balance;
}
.dek{
  margin-top:20px;
  font-size:clamp(1.1rem,1.9vw,1.3rem); line-height:1.5; letter-spacing:-.015em;
  color:var(--mute); text-wrap:pretty;
}

/* ═══ post blocks — the editor's output vocabulary ═══════════ */

.post{
  display:grid;
  grid-template-columns:
    minmax(var(--gut),1fr)
    [wide-start] minmax(0,calc((var(--max) - var(--measure)) / 2))
    [text-start] min(var(--measure), 100% - var(--gut) * 2) [text-end]
    minmax(0,calc((var(--max) - var(--measure)) / 2)) [wide-end]
    minmax(var(--gut),1fr);
  padding-bottom:clamp(56px,7vw,88px);
}
.post > *{grid-column:text}
.post > :first-child{margin-top:0}

/* paragraphs ------------------------------------------------- */
.post p{
  font-size:1.1875rem; line-height:1.72; letter-spacing:-.011em;
  margin-top:1.45em; text-wrap:pretty;
}
.post p.lede{font-size:1.3125rem;line-height:1.62;color:#2b2b28}

/* headings --------------------------------------------------- */
.post h2{
  font-family:"Geist",-apple-system,sans-serif;
  font-weight:450; font-size:clamp(1.55rem,3vw,2rem);
  line-height:1.15; letter-spacing:-.032em; color:#101114;
  margin-top:2.1em; margin-bottom:-.35em; text-wrap:balance;
}
.post h3{
  font-weight:600; font-size:1.1875rem;
  line-height:1.3; letter-spacing:-.02em;
  margin-top:2em; margin-bottom:-.5em;
}

/* inline ----------------------------------------------------- */
.post a:not(.btn){
  text-decoration:underline;
  text-decoration-color:rgba(22,22,21,.28);
  text-underline-offset:.18em; text-decoration-thickness:1px;
  transition:text-decoration-color .2s ease;
}
.post a:not(.btn):hover{text-decoration-color:var(--ink)}
.post strong{font-weight:600}
.post em{font-style:italic}
.post mark{
  background:rgba(255,74,0,.15);
  color:inherit;
  padding:.08em .12em; margin:0 -.12em;
  border-radius:3px;
  box-decoration-break:clone; -webkit-box-decoration-break:clone;
}
.post code{
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,monospace;
  font-size:.86em; background:var(--wash);
  padding:.16em .4em; border-radius:6px;
  letter-spacing:0;
}
/* a snippet is quoted evidence, not an app: no chrome, no line numbers */
.post pre{
  margin-top:1.45em;
  background:var(--wash); border-radius:var(--r-md);
  padding:18px 22px; overflow-x:auto;
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,monospace;
  font-size:.8125rem; line-height:1.65; letter-spacing:0;
  tab-size:2;
}
.post pre code{background:none;padding:0;border-radius:0;font-size:inherit}
.post .callout pre{background:rgba(22,22,21,.05)}

/* before/after compare — one frame, a handle, drag to move the split.
   The old screen is the clipped top layer; left of the handle is
   before, right of it is after. */
.post .cmp{
  position:relative; overflow:hidden;
  border-radius:var(--r-lg); background:var(--wash);
  cursor:ew-resize; user-select:none; -webkit-user-select:none;
  touch-action:pan-y;
  box-shadow:0 1px 2px rgba(22,22,21,.05), 0 10px 34px -18px rgba(22,22,21,.28);
}
.post .cmp img{
  display:block; width:100%; height:auto;
  border-radius:0; box-shadow:none; background:none;
  -webkit-user-drag:none;
}
.post .cmp__clip{
  position:absolute; inset:0;
  clip-path:inset(0 calc(100% - var(--cmp,50%)) 0 0);
}
.post .cmp__clip img{position:absolute; inset:0; height:100%; object-fit:cover}
.post .cmp__handle{
  position:absolute; top:0; bottom:0; left:var(--cmp,50%);
  width:0; cursor:ew-resize;
}
.post .cmp__handle::before{
  content:''; position:absolute; top:0; bottom:0; left:-1px; width:2px;
  background:rgba(255,255,255,.92);
  box-shadow:0 0 14px rgba(0,0,0,.5);
}
.post .cmp__grip{
  position:absolute; top:50%; left:0; translate:-50% -50%;
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  background:#fff; color:#444;
  box-shadow:0 2px 12px rgba(0,0,0,.4);
  transition:transform .2s var(--ease);
}
.post .cmp:hover .cmp__grip{transform:scale(1.06)}
.post .cmp.is-live .cmp__grip{transform:scale(.94)}
.post .cmp__grip svg{width:18px;height:18px}
.post .cmp__tag{
  position:absolute; top:14px;
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,monospace;
  font-size:.6875rem; font-weight:500; letter-spacing:.09em; text-transform:uppercase;
  color:#fff; background:rgba(11,11,12,.55);
  padding:6px 12px; border-radius:999px;
  transition:opacity .25s ease;
  pointer-events:none;
}
.post .cmp__tag--a{left:14px}
.post .cmp__tag--b{right:14px}
.post .cmp--hide-a .cmp__tag--a{opacity:0}
.post .cmp--hide-b .cmp__tag--b{opacity:0}
.post .cmp__handle:focus-visible{outline:none}
.post .cmp__handle:focus-visible .cmp__grip{outline:2px solid var(--ink);outline-offset:3px}

/* the jump to the running prototype — sits between the masthead
   and the hero, so it's centred like the masthead above it */
.post p.codelink{margin-top:.4em;text-align:center}
.post .codelink a{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--ink);color:#fff;text-decoration:none;
  border-radius:999px;padding:11px 20px;
  font-size:.9375rem;font-weight:500;letter-spacing:-.01em;
  transition:opacity .2s ease;
}
.post .codelink a:hover{opacity:.85}
.post .demo{scroll-margin-top:24px}

/* lists ------------------------------------------------------ */
.post ul,.post ol{margin-top:1.45em;padding-left:1.5em}
.post li{
  font-size:1.1875rem; line-height:1.66; letter-spacing:-.011em;
  margin-top:.6em; padding-left:.35em;
}
.post ul li::marker{color:var(--faint)}
.post ol li::marker{color:var(--faint);font-variant-numeric:tabular-nums}

/* pull quote ------------------------------------------------- */
.post .pull{
  grid-column:wide;
  margin:clamp(48px,6vw,72px) 0 clamp(40px,5vw,60px);
  text-align:center;
}
.post .pull p{
  font-family:"Geist",-apple-system,sans-serif;
  font-weight:400; font-size:clamp(1.5rem,3.4vw,2.15rem);
  line-height:1.24; letter-spacing:-.032em; color:#101114;
  margin:0; text-wrap:balance;
}

/* callout ---------------------------------------------------- */
.post .callout{
  margin-top:2em;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--r-md); padding:22px 24px;
  box-shadow:0 1px 2px rgba(22,22,21,.03);
}
.post .callout__label{
  font-size:.75rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
  color:var(--faint); margin-bottom:8px;
}
.post .callout p{font-size:1.0625rem;line-height:1.6;margin-top:0}

/* figures — one width for every image, single or paired ------- */
.post figure{
  grid-column:wide;
  margin-top:clamp(36px,4.5vw,52px);
}
.post figure + p,
.post figure + h2{margin-top:clamp(36px,4.5vw,52px)}
.post figure img,
.post figure video{
  width:100%; height:auto; display:block;
  border-radius:var(--r-lg);
  background:var(--wash);
  box-shadow:0 1px 2px rgba(22,22,21,.05), 0 10px 34px -18px rgba(22,22,21,.28);
}
.post figcaption{
  margin-top:14px; text-align:center;
  font-size:.8125rem; line-height:1.5; letter-spacing:-.005em;
  color:var(--faint); text-wrap:pretty;
}
.post .fig--duo .duo{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.post .fig--duo img{border-radius:var(--r-md)}

/* divider ---------------------------------------------------- */
.post .rule{
  border:0; margin:clamp(52px,6vw,76px) auto;
  display:flex; justify-content:center;
}
.post .rule::before{
  content:"• • •";
  letter-spacing:.35em; font-size:.875rem; color:var(--faint);
}

/* ═══ case study blocks ═════════════════════════════════════
   Three blocks the editor writes as an empty <figure> carrying
   data attributes. post.js builds the rest at runtime, so the CMS
   only ever has to round-trip one tag and one allowlist entry.

     <figure class="plate" data-src="img/hero.jpg">
     <figure class="vid"   data-src="" data-label="…" data-run="2 min">
     <figure class="demo"  data-src="demos/resolve/" data-name="…" data-h="500">

   Until post.js has run, each one states what it is rather than
   collapsing to a gap.
   ═══════════════════════════════════════════════════════════ */

.post .plate:not(.is-on)::before,
.post .vid:not(.is-on)::before,
.post .demo:not(.is-on)::before{
  content:"Interactive block. Needs JavaScript.";
  display:grid; place-content:center;
  aspect-ratio:16/9; border-radius:var(--r-lg);
  background:var(--wash); color:var(--faint);
  font-size:.8125rem;
}

/* ── hero plate ─────────────────────────────────────────────
   Placeholder for the opening image: same width and radius as
   every other figure, so dropping the real file in changes
   nothing about the rhythm of the page. */
.plate__box{
  position:relative;
  aspect-ratio:16/9;
  border-radius:var(--r-lg);
  background:var(--wash);
  box-shadow:inset 0 0 0 1px var(--line);
  display:grid; place-content:center; justify-items:center; gap:7px;
  overflow:hidden;
}
.plate__box::before{
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    -45deg, rgba(22,22,21,.028) 0 1px, transparent 1px 11px);
}
.plate__label{
  position:relative;
  font-size:.75rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
  color:var(--faint);
}
.plate__sub{
  position:relative;
  font-size:.8125rem; color:var(--faint); font-variant-numeric:tabular-nums;
}

/* ── video slot ─────────────────────────────────────────────
   A placeholder in the shape of the finished thing: 16:9, with
   the runtime already stated, so the space is the right size
   before the file exists. */
.vid__box{
  position:relative;
  aspect-ratio:16/9;
  border-radius:var(--r-lg);
  background:linear-gradient(180deg,#1b1b1a 0%,#121211 100%);
  display:grid; place-content:center; justify-items:center; gap:14px;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(22,22,21,.05), 0 10px 34px -18px rgba(22,22,21,.28);
}
/* a quiet grid, so the empty frame has some structure in it */
.vid__box::before{
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(120% 90% at 50% 50%,#000 20%,transparent 78%);
  -webkit-mask-image:radial-gradient(120% 90% at 50% 50%,#000 20%,transparent 78%);
}
.vid__play{
  position:relative;
  width:62px; height:62px; border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  display:grid; place-items:center;
}
.vid__play svg{width:20px;height:20px;fill:#fff;margin-left:3px}
.vid__label{
  position:relative;
  font-size:.9375rem; font-weight:500; color:rgba(255,255,255,.9); letter-spacing:-.01em;
}
.vid__sub{
  position:relative;
  font-size:.8125rem; color:rgba(255,255,255,.42);
  font-variant-numeric:tabular-nums;
}
.post .vid video{
  width:100%; height:auto; display:block;
  border-radius:var(--r-lg); background:#121211;
}

/* ── live prototype ─────────────────────────────────────────
   It runs in the page, at the wide column, framed like a figure
   rather than embedded like an ad. The bar carries the two
   things people reach for: start it over, or take it full size. */
.demo__shell{
  border-radius:var(--r-lg);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 1px 2px rgba(22,22,21,.05), 0 10px 34px -18px rgba(22,22,21,.28);
}
.demo__bar{
  display:flex; align-items:center; gap:10px;
  padding:0 8px 0 14px; height:44px;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.demo__dot{
  width:7px; height:7px; border-radius:50%; background:var(--live); flex:none;
  animation:demo-blink 1.8s ease-in-out infinite;
}
@keyframes demo-blink{50%{opacity:.35}}
.demo__name{
  font-size:.8125rem; font-weight:600; letter-spacing:-.005em; color:var(--ink);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.demo__grow{flex:1}
.demo__act{
  flex:none;
  display:inline-flex; align-items:center; gap:6px;
  height:28px; padding:0 12px; border-radius:999px;
  border:1px solid var(--line); background:#fff;
  font:inherit; font-size:.8125rem; font-weight:500; color:var(--mute);
  text-decoration:none !important; white-space:nowrap; cursor:pointer;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.demo__act:hover{color:var(--ink); border-color:rgba(22,22,21,.28); background:var(--wash)}
.demo__act:active{transform:translateY(.5px)}

/* Height comes off the block, because these are apps and no single
   ratio suits them. Each gets the height its own layout settles at,
   so nothing inside runs a second scrollbar against the page. */
.demo__frame{
  position:relative;
  height:var(--h,640px);
  background:var(--wash);
}
.demo--dark .demo__frame{background:#0A0A0A}
.demo__frame iframe{display:block;width:100%;height:100%;border:0}

/* until the frame is near the viewport it holds its space and says
   so, rather than booting every prototype on the page at once */
.demo__idle{
  position:absolute; inset:0;
  display:grid; place-content:center;
  font-size:.875rem; color:var(--faint);
  pointer-events:none; transition:opacity .4s ease;
}
.demo--dark .demo__idle{color:#5A5A5E}
.demo.is-live .demo__idle{opacity:0}

/* beats .post p, which would otherwise set this at reading size */
.post p.hint{
  margin-top:14px; text-align:center;
  font-size:.875rem; line-height:1.55; color:var(--faint);
}
.post p.hint code{background:rgba(22,22,21,.05)}

/* ── figures that get checked ───────────────────────────────
   Key and value on the measure, values tabular so the column
   lines up. That is the point of it. */
.post .tally{
  margin-top:2em;
  border-top:1px solid var(--line);
}
.tally__row{
  display:flex; align-items:baseline; justify-content:space-between; gap:20px;
  padding:11px 0;
  border-bottom:1px solid var(--wash);
}
.tally__k{font-size:1rem; color:var(--mute); line-height:1.45}
.tally__v{
  flex:none;
  font-size:1rem; font-weight:600; color:var(--ink);
  font-variant-numeric:tabular-nums; letter-spacing:-.01em;
}
.tally__row--sum{border-bottom:0; border-top:1px solid var(--line); margin-top:-1px}
.tally__row--sum .tally__k{color:var(--ink)}

/* ═══ index — the post list ═════════════════════════════════ */

/* No dates anywhere on this page, by choice: we publish rarely, and a
   visible date is what makes an evergreen post read as stale. */
.list{
  max-width:var(--measure); margin:0 auto;
  padding:clamp(64px,9vw,104px) var(--gut) clamp(64px,9vw,110px);
}

.row{
  display:flex; align-items:flex-start; gap:22px;
  text-decoration:none;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.row:first-child{border-top:1px solid var(--line)}

/* every post gets a thumbnail; until one is set, the slot states the
   size it wants and stays quiet about it */
.row__thumb{
  flex:none; width:148px; aspect-ratio:16/10;
  border-radius:var(--r-sm); overflow:hidden;
  background:var(--wash); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.row__thumb img{width:100%;height:100%;object-fit:cover}
.row__thumb--empty{
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,monospace;
  font-size:.6875rem; letter-spacing:.04em; color:var(--faint);
}
.row__body{flex:1;min-width:0}

.row__top{display:flex;align-items:baseline;gap:10px}
.row__title{
  --tint:#101114;
  font-family:"Geist",-apple-system,sans-serif;
  font-weight:450; font-size:1.28rem; line-height:1.3;
  letter-spacing:-.028em;
}
.row__arr{
  flex:none;
  color:var(--faint); font-size:1rem;
  opacity:0; translate:-6px 0;
  transition:opacity .28s var(--ease), translate .28s var(--ease);
}
.row__dek{
  display:block;   /* it's a span inside the anchor, so it needs this */
  margin-top:6px; max-width:46em;
  font-size:.9375rem; line-height:1.55; color:var(--mute);
}
/* one word saying which kind of thing this is: a build, or a note */
.row__tag{
  display:block; margin-top:9px;
  font-size:.75rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--faint);
}

.row:hover .row__title,
.row:focus-visible .row__title{animation:text-sheen 1.15s cubic-bezier(.4,0,.3,1)}
.row:hover .row__arr,
.row:focus-visible .row__arr{opacity:1;translate:0 0}
.row:focus-visible{outline-offset:6px}

/* Rows arrive in sequence, once, on load — resolving out of blur as
   they rise, so they read as coming into focus rather than sliding in. */
@keyframes rise{
  from{opacity:0;translate:0 10px;filter:blur(7px)}
  to  {opacity:1;translate:0 0;  filter:blur(0)}
}
.row{
  animation:rise .62s var(--ease) backwards;
  animation-delay:calc(var(--i,0) * 55ms);
}

@media (max-width:640px){
  .row{gap:14px}
  .row__thumb{width:96px}
  .row__title{font-size:1.15rem}
  .row__arr{display:none}   /* no hover on touch */
}

/* ═══ end matter ════════════════════════════════════════════ */

.endcap{
  border-top:1px solid var(--wash);
  padding:clamp(48px,6vw,72px) 0 clamp(60px,8vw,96px);
}
/* the closing CTA is centred — a left-aligned paragraph with a lone
   button under it reads as unfinished rather than as an invitation */
.bio{max-width:var(--measure);margin:0 auto;padding:0 var(--gut);text-align:center}
.bio h4{font-size:1rem;font-weight:600;letter-spacing:-.015em}
.bio p{margin-top:8px;font-size:.9375rem;line-height:1.6;color:var(--mute)}
.bio .metal{margin:26px auto 0}

footer{border-top:1px solid var(--wash);padding:42px 0 58px}
.foot{display:flex;justify-content:space-between;align-items:baseline;gap:16px;flex-wrap:wrap}
.foot span{font-size:.8125rem;color:var(--faint)}
.brandmark--foot{height:18px}

/* ── mobile ─────────────────────────────────────────────────── */
@media (max-width:640px){
  .brandmark{height:25px}
  .topnav{gap:18px}
  .masthead{padding-top:44px}
  .post p{font-size:1.0625rem;line-height:1.68}
  .post p.lede{font-size:1.1875rem}
  .post li{font-size:1.0625rem}
  .post .fig--duo .duo{grid-template-columns:1fr;gap:10px}
  .demo__frame{height:var(--hm,var(--h,640px))}
  .demo__act[data-reset]{display:none}   /* reload is a tap away on touch */
  .tally__k{font-size:.9375rem}
  .tally__v{font-size:.9375rem}
}

@media (prefers-reduced-motion:reduce){
  *{transition-duration:.01ms !important;animation-duration:.01ms !important}
}
