/* bellwethermarathon.com. The site wears the cover. */

:root {
  /* sampled from the accepted cover */
  --cobalt: #03308d;
  --cobalt-deep: #02236a;
  --tan: #d2ac7b;
  --tan-deep: #bc9460;
  --cream: #f3ecd8;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --red: #9a1214;
  --red-deep: #7a0e10;
  --steel: #9aa0a6;
  --steel-deep: #5f6368;

  --sans: 'Anton', 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono: 'Courier Prime', 'Courier New', Courier, monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cobalt);
  color: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- headings on the cobalt ---------- */

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
  color: var(--white);
  opacity: 0.92;
}

.question {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(40px, 11vw, 64px);
  line-height: 0.95;
  margin: 8px 0 0;
  letter-spacing: 0.01em;
}

/* ---------- the bib ---------- */

.bib {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--cobalt);
  border-radius: 6px;
  padding: 0 0 22px;
  margin: 28px 14px 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 2px 4px rgba(0, 0, 0, 0.18);
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}

.bib-head {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--cobalt);
  text-align: center;
  padding: 10px 0 8px;
  border-bottom: 2px solid var(--cobalt);
  margin: 0 0 6px;
}

.bib-number {
  font-family: var(--sans);
  font-size: clamp(76px, 24vw, 128px);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 8px 8px 0;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}

.bib-word {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(26px, 8vw, 40px);
  line-height: 1;
  text-align: center;
  color: var(--red);
  margin: 2px 0 18px;
  letter-spacing: 0.04em;
  min-height: 1em;
}

.bib.found .bib-word { color: var(--ink); }

.bib .field {
  display: block;
  margin: 0 22px 12px;
}

.bib .field span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-deep);
  margin-bottom: 4px;
}

.bib input[type="text"] {
  width: 100%;
  font-family: var(--mono);
  font-size: 22px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.bib input[type="text"]:focus { border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.25); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 22px;
  line-height: 1;
  padding: 16px 28px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover, .btn-red:focus-visible { background: var(--red-deep); }
.btn-red:disabled { opacity: 0.6; cursor: default; }

.btn-ink { background: var(--ink); color: var(--white); }
.btn-cobalt { background: var(--cobalt); color: var(--white); }

.bib .btn { display: block; width: calc(100% - 44px); margin: 8px 22px 0; }

.bib .tries {
  font-family: var(--mono);
  font-size: 13px;
  text-align: center;
  color: var(--steel-deep);
  margin: 12px 22px 0;
}
.bib .tries.low { color: var(--red); }

/* honeypot: people never see it, bots fill it */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }

/* safety pins at the corners */

.pin {
  position: absolute;
  width: 46px;
  height: 12px;
  pointer-events: none;
}
.pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #dfe3e7 0%, #a9afb5 55%, #7c8288 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.pin::after {
  content: '';
  position: absolute;
  left: -6px;
  top: -3px;
  width: 16px;
  height: 16px;
  border: 3px solid #b3b9bf;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.pin-tl { left: -14px; top: -10px; transform: rotate(-35deg); }
.pin-tr { right: -14px; top: -10px; transform: rotate(35deg) scaleX(-1); }
.pin-bl { left: -14px; bottom: -10px; transform: rotate(35deg); }
.pin-br { right: -14px; bottom: -10px; transform: rotate(-35deg) scaleX(-1); }

/* the red marker strike on a wrong answer */

.strike {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.strike path {
  fill: none;
  stroke: var(--red);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.bib.wrong .strike { opacity: 1; }
.bib.wrong .strike path { animation: strike 0.55s cubic-bezier(0.3, 0.9, 0.4, 1) forwards; }
.bib.wrong { animation: shake 0.45s ease; }

@keyframes strike { to { stroke-dashoffset: 0; } }
@keyframes shake {
  0%, 100% { transform: rotate(-1.2deg) translateX(0); }
  25% { transform: rotate(-1.2deg) translateX(-6px); }
  75% { transform: rotate(-1.2deg) translateX(6px); }
}

.bib.found { transform: rotate(0deg); }

/* ---------- the door card (the home page in the inside pages' clothes) ---------- */

.door-card { margin-top: 18px; padding-bottom: 26px; }
.door-card > h2 { text-align: center; }
.door-card > p:first-of-type { font-size: 17px; margin-bottom: 8px; }
.door-card .bib { margin: 22px 8px 0; }
.door-card .verdict { color: var(--ink); }
.door-card .verdict.danger { color: var(--red); }
.door-card .small-links { color: var(--ink-soft); margin-top: 22px; }
.door-card .small-links a, .door-card .small-links button { color: var(--ink); text-decoration-color: rgba(0, 0, 0, 0.35); }
.door-card .small-links a:hover, .door-card .small-links button:hover { text-decoration-color: var(--ink); }

.doornav button {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: var(--white);
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  line-height: normal;
}
.doornav button:hover { background: var(--white); color: var(--cobalt); border-color: var(--white); }

/* the register under the bib: the runners who still fit */
.register {
  background: var(--cream);
  color: var(--ink);
  border-radius: 3px;
  border: 2px solid var(--ink);
  margin: 0 22px 14px;
  padding: 10px 12px 8px;
  font-family: var(--mono);
  font-size: 14px;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}
.register-head {
  margin: 0 0 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  padding-bottom: 6px;
}
.register-list { list-style: none; margin: 0; padding: 0; }
.register-list li { border-bottom: 1px dotted #b5ab90; }
.register-list li:last-child { border-bottom: 0; }
.register-list button {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  width: 100%;
  text-align: left;
  font: inherit;
  background: none;
  border: 0;
  padding: 7px 4px;
  cursor: pointer;
  color: var(--ink);
  border-radius: 3px;
}
.register-list button:hover, .register-list button:focus-visible { background: var(--white); outline: none; }
.register-list .rname { font-weight: 700; }
.register-list .rnum { font-weight: 700; color: var(--red); text-align: right; }
.register-list .rstreet { color: var(--steel-deep); font-size: 13px; }
.register-list .rpage { color: var(--steel-deep); font-size: 13px; text-align: right; }
.register-more { margin: 8px 0 0; font-size: 13px; color: var(--steel-deep); text-align: center; }
.register .empty { padding: 8px 4px; color: var(--steel-deep); }

/* ---------- desktop: the check card becomes a side panel, the stage is free ---------- */

.door-layout { display: block; }
.stage .foot { display: none; }          /* on phones the footer sits under the card instead */
.panel { padding: 0 18px; }
.foot-mobile { display: block; }

@media (min-width: 960px) {
  .door-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    min-height: 100vh;
  }
  .stage { min-width: 0; }
  .stage .wrap { max-width: 720px; }
  .stage .foot { display: block; }
  .foot-mobile { display: none; }
  /* The panel never scrolls: everything is sized to the window, and only the suspects list
     grows or shrinks to take up whatever height is left. */
  .panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    height: 100vh;
    overflow: hidden;
    background: var(--cream);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.25);
    padding: 0;
    border-left: 3px solid var(--cobalt-deep);
    display: flex;
    flex-direction: column;
  }
  .panel .door-card {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 20px 12px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .panel .door-card > h2 { font-size: 22px; margin: 0 0 8px; }
  .panel .door-card > p:first-of-type { display: none; }
  .panel .door-card .bib {
    margin: 4px 12px 0;
    transform: none;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
  }
  .panel .bib-head { font-size: 11px; padding: 6px 0 5px; margin-bottom: 2px; }
  .panel .bib-number { font-size: clamp(48px, 7vh, 72px); padding-top: 2px; }
  .panel .bib-word { font-size: 20px; margin: 0 0 8px; }
  .panel .bib .field { margin: 0 16px 8px; }
  .panel .bib .field span { font-size: 11px; margin-bottom: 2px; }
  .panel .bib input[type="text"] { font-size: 17px; padding: 7px 10px; }
  .panel .register {
    flex: 1;
    min-height: 0;
    margin: 0 16px 8px;
    padding: 6px 10px 4px;
    max-height: none;
    font-size: 13px;
  }
  .panel .register-head { font-size: 12px; padding-bottom: 4px; margin-bottom: 4px; }
  .panel .register-list button { padding: 4px 3px; column-gap: 8px; }
  .panel .register-list .rstreet, .panel .register-list .rpage { font-size: 12px; }
  .panel .register-more { font-size: 12px; margin-top: 4px; }
  .panel .bib .btn { font-size: 18px; padding: 12px 20px; width: calc(100% - 32px); margin: auto 16px 0; }
  .panel .bib .tries { margin: 6px 16px 0; font-size: 12px; }
  .panel .bib .tries[hidden] { display: none; }
  .panel .verdict { margin: 10px 0 0; font-size: 15px; min-height: 1.4em; }
  .panel .open-door { margin: 8px 0 0; }
  .panel .open-door .btn { font-size: 16px; padding: 12px 20px; }
  .panel .small-links { margin: 8px 0 0; font-size: 13px; line-height: 1.6; }
  .panel .bib.wrong { animation: shake-flat 0.45s ease; }
  @keyframes shake-flat {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
  }
}

/* ---------- under the bib ---------- */

.verdict {
  font-family: var(--mono);
  font-size: 19px;
  text-align: center;
  margin: 26px 0 0;
  min-height: 1.6em;
  color: var(--white);
}
.verdict.danger { color: #ffd9d6; }

.open-door {
  text-align: center;
  margin: 16px 0 0;
}
.open-door .btn { font-size: 20px; }

.small-links {
  font-size: 15px;
  text-align: center;
  margin: 30px 0 0;
  line-height: 1.9;
}
.small-links em { font-style: italic; opacity: 0.85; }
.small-links .line { display: block; }
.small-links .dot { display: none; }
.small-links a, .small-links button {
  color: var(--white);
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
.small-links a:hover, .small-links button:hover { text-decoration-color: var(--white); }
.small-links .dot { opacity: 0.5; margin: 0 8px; }

footer.foot {
  text-align: center;
  font-size: 13px;
  padding: 44px 0 30px;
  opacity: 0.8;
}
footer.foot a { text-decoration: none; }
footer.foot a:hover { text-decoration: underline; }
footer.foot .dot { margin: 0 8px; }

/* ---------- the hints folder ---------- */

dialog.folder {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 560px;
  width: calc(100% - 24px);
  margin: auto;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}
dialog.folder::backdrop { background: rgba(10, 30, 100, 0.72); }

.folder-card {
  position: relative;
  background: var(--tan);
  border-radius: 6px;
  padding: 22px 34px 18px 16px;
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  margin-top: 22px;
}
.folder-tab {
  position: absolute;
  top: -22px;
  right: 18px;
  background: var(--tan);
  border-radius: 6px 6px 0 0;
  padding: 6px 12px 4px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.folder-band {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 8px;
  background: var(--red);
  opacity: 0.9;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.folder h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 4px;
}
.folder .lede { margin: 0 0 14px; font-size: 15px; color: var(--ink-soft); }

.sheet {
  background: var(--white);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
}
.sheet details { border-top: 1px dashed #bbb; }
.sheet details:first-child { border-top: 0; }
.sheet summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sheet summary::-webkit-details-marker { display: none; }
.sheet summary .lvl {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--cobalt);
  padding: 4px 7px 2px;
  border-radius: 3px;
  white-space: nowrap;
}
.sheet summary .open-word { margin-left: auto; font-weight: 400; color: var(--steel-deep); font-size: 13px; }
.sheet details[open] summary .open-word { display: none; }
.sheet details > div { padding: 0 0 14px; }
.sheet p { margin: 0 0 10px; }
.sheet ol, .sheet ul { margin: 0 0 10px; padding-left: 22px; }
.sheet li { margin-bottom: 6px; }
.sheet .num { font-family: var(--sans); font-size: 20px; letter-spacing: 0.03em; }

.folder .close-row { text-align: right; margin-top: 12px; }
.folder-card > *:not(.folder-band):not(.folder-tab) { position: relative; z-index: 1; }
.folder .close-row .btn { font-size: 16px; padding: 12px 18px; }

/* ---------- pages behind the door and the small public pages ---------- */

.page {
  padding-top: 26px;
  padding-bottom: 40px;
}
.page .kicker { text-align: center; }
.page h1.title {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(36px, 10vw, 58px);
  line-height: 0.95;
  margin: 6px 0 18px;
  text-align: center;
}

.cream {
  background: var(--cream);
  color: var(--ink);
  border-radius: 4px;
  padding: 28px 22px 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
}
.cream h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 16px;
}
.cream h3 { font-family: var(--sans); text-transform: uppercase; font-size: 20px; margin: 24px 0 6px; letter-spacing: 0.03em; }
.cream p { margin: 0 0 1em; }
.cream p.first::first-letter { font-family: var(--sans); font-size: 3.1em; float: left; line-height: 0.85; margin: 4px 8px 0 0; }
.cream .mono { font-family: var(--mono); }

.whitecard {
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.whitecard h2 { font-family: var(--sans); text-transform: uppercase; font-size: 26px; line-height: 1; margin: 0 0 8px; }
.whitecard p { margin: 0 0 12px; }

.form label { display: block; margin-bottom: 12px; }
.form label span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-deep);
  margin-bottom: 4px;
}
.form input[type="text"], .form input[type="email"], .form textarea {
  width: 100%;
  font-family: var(--mono);
  font-size: 17px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .count { font-family: var(--mono); font-size: 12px; color: var(--steel-deep); text-align: right; }
.form .btn { width: 100%; margin-top: 6px; }
.form .note { font-family: var(--mono); font-size: 14px; margin: 10px 0 0; min-height: 1.4em; }
.form .note.ok { color: #1a7f37; }
.form .note.bad { color: var(--red); }

.doornav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 22px 0 6px;
}
.doornav a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  text-decoration: none;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 8px 12px;
}
.doornav a.here, .doornav a:hover { background: var(--white); color: var(--cobalt); border-color: var(--white); }

.solver-tag {
  font-family: var(--mono);
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
  margin: 8px 0 0;
}

/* the reward cards on /finish */
.cards { display: grid; gap: 16px; margin-top: 22px; }
.card {
  background: var(--tan);
  color: var(--ink);
  border-radius: 4px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  display: block;
}
.card h3 { font-family: var(--sans); text-transform: uppercase; font-size: 24px; line-height: 1; margin: 0 0 6px; }
.card p { margin: 0; font-size: 16px; }
.card .go { font-family: var(--mono); font-size: 13px; margin-top: 10px; color: var(--red-deep); }

/* the Finish Line wall */
.wall-sheet {
  background: var(--cream);
  color: var(--ink);
  border-radius: 3px;
  padding: 22px 18px 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
}
.wall-sheet .wall-count { font-family: var(--sans); text-transform: uppercase; font-size: 26px; line-height: 1; margin: 0 0 14px; letter-spacing: 0.02em; }
.wall-sheet .search { display: flex; gap: 8px; margin-bottom: 16px; }
.wall-sheet .search input {
  flex: 1; font-family: var(--mono); font-size: 16px; padding: 8px 10px;
  border: 2px solid var(--ink); border-radius: 3px; background: var(--white);
}
.wall-sheet .search .btn { font-size: 15px; padding: 10px 14px; }
.wall-list { list-style: none; margin: 0; padding: 0; }
.wall-list li { padding: 8px 0; border-bottom: 1px dotted #b5ab90; }
.wall-list .no { color: var(--cobalt); font-weight: 700; }
.wall-list q { quotes: '"' '"'; }
.wall-list .empty { color: var(--steel-deep); }
.pager { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; font-size: 14px; }
.pager button { font: inherit; background: none; border: 2px solid var(--ink); border-radius: 3px; padding: 6px 10px; cursor: pointer; }
.pager button:disabled { opacity: 0.35; cursor: default; }

/* certificate */
.cert {
  background: var(--cream);
  color: var(--ink);
  border-radius: 4px;
  padding: 26px 20px 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.cert .bib { margin: 20px 10px 0; transform: none; }
.cert .bib .bib-number { font-size: clamp(56px, 14vw, 84px); }
.cert .bib .bib-word { color: var(--ink); font-size: clamp(22px, 6vw, 30px); word-break: break-word; }
.cert .cert-line { font-family: var(--sans); text-transform: uppercase; font-size: 22px; letter-spacing: 0.06em; margin: 26px 0 4px; }
.cert .cert-sub { font-family: var(--mono); font-size: 15px; margin: 0; }
.cert .cert-no { font-family: var(--mono); font-size: 14px; margin: 12px 0 0; color: var(--steel-deep); }
.cert-tools { margin-top: 18px; }
.cert-tools .field { text-align: left; }
.cert-tools .btn { margin-top: 12px; width: 100%; }

@media (min-width: 640px) {
  body { font-size: 18px; }
  .door-card .bib { margin: 26px 28px 0; }
  .small-links .line { display: inline; }
  .small-links .dot { display: inline; }
  .bib { margin: 32px 24px 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cert-tools .btn { width: auto; }
}

@media print {
  body { background: var(--white); color: var(--ink); }
  .no-print { display: none !important; }
  .cert { box-shadow: none; border: 2px solid var(--cobalt); }
  .cert .bib { box-shadow: none; }
  .wrap { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .bib, .bib.wrong, .bib.found { animation: none; transition: none; }
  .strike path { animation-duration: 0.01s; }
}
