/* about.123drg.com — the CSP is default-src 'self', so all styling lives here,
   never in a <style> tag. Same family palette as sites b and c, different accent. */

:root {
  --bg: #0d1725;
  --panel: #122032;
  --card: #17293e;
  --edge: #2b4864;
  --edge-soft: #2b4864;
  --text: #e6eef8;
  --dim: #7d97af;
  --accent: #5cb0ff;
  --accent-dim: #3d6183;
  --warn: #ffd24a;
  --key: #ffa033;
  --code-bg: #0d1725;
  --card-2: #1d334c;
}

/* Design system: sharp corners, enforced not remembered. See documentation/theme.md */
* { border-radius: 0 !important; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: -999px;
  background: var(--accent);
  color: #0d1725;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 10;
}
.skip:focus { left: 0; top: 0; }

/* ------------------------------------------------------------- top bar */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--edge);
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand { display: flex; align-items: center; gap: 0.9rem; }

.brand-mark {
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.topbar h1 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.tagline {
  margin: 0.15rem 0 0;
  color: var(--dim);
  font-size: 0.86rem;
}

.nav-toggle {
  display: none;
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--edge);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font: inherit;
  cursor: pointer;
}

/* -------------------------------------------------------------- layout */

.layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.6rem 1.4rem 4rem;
  align-items: start;
}

nav {
  position: sticky;
  top: 5.6rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  padding-right: 0.3rem;
}

.filter input {
  width: 100%;
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--edge);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font: inherit;
  margin-bottom: 1rem;
}

.filter input:focus-visible,
.nav-button:focus-visible,
.jump-button:focus-visible,
.step-button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-group-title {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}
.nav-group-title:first-child { margin-top: 0; }

/* ------------------------------------------------------- nav buttons */

.nav-button {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--edge-soft);
  border-left: 3px solid transparent;
  border-radius: 9px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.42rem;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, transform 0.08s ease;
}

.nav-button:hover {
  background: var(--card-2, var(--card));
  border-color: var(--edge);
  border-left-color: var(--accent-dim);
}

.nav-button:active { transform: translateY(1px); }

.nav-button[aria-current="page"] {
  border-color: var(--accent-dim);
  border-left-color: var(--accent);
  background: var(--card);
}

.nav-button .icon { font-size: 1rem; line-height: 1.4; }
.nav-button .label { font-size: 0.92rem; font-weight: 500; }
.nav-button .blurb {
  display: block;
  color: var(--dim);
  font-size: 0.76rem;
  line-height: 1.4;
  margin-top: 0.12rem;
}

.nav-empty {
  color: var(--dim);
  font-size: 0.85rem;
  padding: 0.5rem 0.2rem;
}

/* ------------------------------------------------------------- content */

main { min-width: 0; }
main:focus { outline: none; }

.loading, .error {
  color: var(--dim);
  padding: 2rem 0;
}
.error { color: var(--warn); }

.page-head {
  border-bottom: 1px solid var(--edge);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
}

.page-kicker {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-head h2 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

.page-head .blurb {
  margin: 0;
  color: var(--dim);
}

main h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.08rem;
  color: var(--text);
  border-left: 3px solid var(--accent-dim);
  padding-left: 0.7rem;
}

main p { margin: 0 0 1rem; }

main ul, main ol {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}
main li { margin-bottom: 0.5rem; }

ol.steps { counter-reset: step; list-style: none; padding-left: 0; }
ol.steps li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.75rem;
}
ol.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dim);
  color: #0d1725;
  font-size: 0.78rem;
  font-weight: 700;
}

/* code + diagrams */

.code-block, .diagram {
  background: var(--code-bg);
  border: 2px solid var(--edge);
  border-radius: 10px;
  margin: 0 0 1.3rem;
  overflow: hidden;
}

.code-label {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--edge);
  background: var(--bg);
}

pre {
  margin: 0;
  padding: 0.9rem 1rem;
  overflow-x: auto;
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--dim);
}

.diagram pre { color: #8fd94f; }

/* tables */

.table-wrap {
  overflow-x: auto;
  border: 2px solid var(--edge);
  border-radius: 10px;
  margin-bottom: 1.3rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
  min-width: 480px;
}

th, td {
  text-align: left;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--edge-soft);
  vertical-align: top;
}

thead th {
  background: var(--bg);
  color: var(--dim);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--edge); }
td:first-child { color: var(--text); font-weight: 500; }

/* notes */

.note {
  border: 2px solid var(--edge);
  border-left: 3px solid var(--dim);
  border-radius: 9px;
  background: var(--card);
  padding: 0.85rem 1rem;
  margin: 0 0 1.3rem;
}

.note h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.note p { margin: 0; font-size: 0.94rem; color: var(--dim); }

.note.info { border-left-color: var(--dim); }
.note.warn { border-left-color: var(--warn); }
.note.warn h4 { color: var(--warn); }
.note.key { border-left-color: var(--key); }
.note.key h4 { color: var(--key); }

/* jump buttons + pager */

.jump { margin: 0 0 1.4rem; }
.jump p { margin: 0 0 0.5rem; color: var(--dim); font-size: 0.9rem; }

.jump-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.jump-button {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent-dim);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font: inherit;
  font-size: 0.87rem;
  cursor: pointer;
  transition: background 0.12s ease;
}
.jump-button:hover { background: var(--edge); }

.pager {
  display: flex;
  gap: 0.7rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--edge);
}

.step-button {
  flex: 1;
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--edge);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.12s ease, transform 0.08s ease;
}
.step-button:hover { border-color: var(--accent-dim); }
.step-button:active { transform: translateY(1px); }
.step-button.next { text-align: right; }
.step-button .dir {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.step-button .name { font-size: 0.95rem; font-weight: 500; }
.step-button[hidden] { display: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 860px) {
  .layout { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .nav-toggle { display: block; }
  nav { position: static; max-height: none; display: none; }
  nav.open { display: block; }
  .topbar h1 { font-size: 1rem; }
  .tagline { display: none; }
}

/* ========================================================================
   LAYERED CONTENT + MOTION  (added 31 July 2026)

   Everything below renders the recursive Block variants added to server.ts:
   detail / tabs / stats / timeline / compare / quiz / terms / flow, plus the
   page-level motion.

   One rule governs all of it: **every animation is wrapped in
   `@media (prefers-reduced-motion: no-preference)`, or is cancelled by the
   block at the very bottom of this file.** The motion here is explanatory —
   a panel opening means "you have descended a level", a flow node lighting up
   means "the request is here now" — so the information has to survive the
   animation being switched off. It does: nothing below is the only signal for
   anything. Colour, position, text and ARIA state all carry the meaning on
   their own, and motion only makes the change easier to follow.
   ======================================================================== */

/* ---------------------------------------------------- reading progress */

/* A hairline under the sticky top bar. Deliberately not a number or a
   percentage — it answers "how much is left?" at a glance and nothing more. */
.progress-track {
  position: sticky;
  top: 0;
  z-index: 6;
  height: 2px;
  background: transparent;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  transition: width 120ms linear;
}

/* ------------------------------------------------------- page entrance */

/* The entrance animation covers ONLY the first five blocks — the ones likely
   to be on screen when the page swaps. Everything after that is handed to the
   scroll observer instead, and the split is not cosmetic:

   an animation with `fill-mode: both` keeps its final values applied forever,
   and animation-filled values outrank ordinary declarations in the cascade. So
   if this rule matched every child, its end state (opacity: 1) would override
   `.reveal { opacity: 0 }` on every block below the fold — leaving the scroll
   reveal switched on, observing, and unable to hide anything. It would have
   looked fine and done nothing, which is the most expensive kind of broken. */
@media (prefers-reduced-motion: no-preference) {
  .page-enter > *:nth-child(-n + 5) {
    animation: block-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .page-enter > *:nth-child(1) { animation-delay: 0ms; }
  .page-enter > *:nth-child(2) { animation-delay: 45ms; }
  .page-enter > *:nth-child(3) { animation-delay: 90ms; }
  .page-enter > *:nth-child(4) { animation-delay: 130ms; }
  .page-enter > *:nth-child(5) { animation-delay: 165ms; }
}

@keyframes block-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll reveal. `.reveal` is added by script.js only when motion is allowed,
   so without it nothing is ever hidden — the failure mode of a reveal system
   must never be invisible content. */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 460ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- detail */

.detail {
  border: 2px solid var(--edge);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card) 70%, transparent);
  margin: 1.1rem 0;
  overflow: hidden;
}
.detail:hover { border-color: var(--accent-dim); }

.detail-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.detail-head:hover { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.detail-head:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.detail-chevron {
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: none;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.detail.is-open .detail-chevron { transform: rotate(90deg); }

.detail-labels { display: flex; flex-direction: column; gap: 0.15rem; }
.detail-summary { font-weight: 600; color: var(--text); }
/* Says what is behind the door. A disclosure whose label is a mystery makes
   the reader open all of them, which defeats the purpose of collapsing any. */
.detail-hint { font-size: 0.84rem; color: var(--dim); }

.detail-body {
  height: 0;
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.detail-inner { padding: 0.25rem 1rem 1rem 2.05rem; }
.detail-inner > *:first-child { margin-top: 0; }
.detail-inner > *:last-child { margin-bottom: 0; }

/* Nested one level deeper: quieter, so the hierarchy is visible at a glance. */
.detail .detail { background: color-mix(in srgb, var(--bg) 55%, transparent); }

.sub-head {
  margin: 1.1rem 0 0.4rem;
  font-size: 0.98rem;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------- tabs */

.tabs { margin: 1.2rem 0; }

.tab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  border-bottom: 1px solid var(--edge);
  margin-bottom: 0.9rem;
}

.tab-button {
  position: relative;
  padding: 0.5rem 0.85rem;
  background: none;
  border: 0;
  border-radius: 8px 8px 0 0;
  color: var(--dim);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}
.tab-button:hover { color: var(--text); background: color-mix(in srgb, var(--accent) 7%, transparent); }
.tab-button:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.tab-button[aria-selected="true"] { color: var(--accent); font-weight: 600; }

/* The moving underline is a pseudo-element that scales from the centre, so the
   indicator grows into place instead of the whole button flashing. */
.tab-button::after {
  content: "";
  position: absolute;
  left: 0.4rem; right: 0.4rem; bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.tab-button[aria-selected="true"]::after { transform: scaleX(1); }

@media (prefers-reduced-motion: no-preference) {
  .tab-enter { animation: tab-in 260ms ease both; }
}
@keyframes tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.stat {
  padding: 0.85rem 0.9rem;
  border: 2px solid var(--edge);
  border-radius: 12px;
  background: var(--card);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease;
}
.stat:hover { transform: translateY(-2px); border-color: var(--accent-dim); }

.stat-value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums; /* stops the count-up jittering the width */
  line-height: 1.15;
}
.stat-label { font-size: 0.9rem; color: var(--text); margin-top: 0.15rem; }
.stat-sub { font-size: 0.78rem; color: var(--dim); margin-top: 0.2rem; }

/* ------------------------------------------------------------- timeline */

.timeline { margin: 1.2rem 0; padding-left: 0.4rem; }

.tl-entry {
  position: relative;
  padding: 0 0 1.15rem 1.5rem;
  border-left: 2px solid var(--edge);
}
.tl-entry:last-child { border-left-color: transparent; padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -0.42rem; top: 0.35rem;
  width: 0.72rem; height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg);
}
.tl-when {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tl-what { font-weight: 600; margin-top: 0.1rem; }
.tl-detail { color: var(--dim); font-size: 0.93rem; margin-top: 0.2rem; }

/* -------------------------------------------------------------- compare */

table.compare th.col-before, table.compare td.cell-before { color: var(--warn); }
table.compare th.col-after,  table.compare td.cell-after  { color: var(--accent); }
table.compare th.row-aspect {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

/* ----------------------------------------------------------------- quiz */

.quiz {
  margin: 1.3rem 0;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--accent-dim);
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}
.quiz-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.quiz-q { margin: 0 0 0.8rem; font-weight: 600; }

.quiz-reveal {
  padding: 0.45rem 0.9rem;
  border: 2px solid var(--accent-dim);
  border-radius: 999px;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.quiz-reveal:hover { background: color-mix(in srgb, var(--accent) 14%, transparent); transform: translateY(-1px); }
.quiz-reveal:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.quiz-a-text { margin: 0; font-weight: 600; color: var(--text); }
.quiz-why { margin: 0.45rem 0 0; color: var(--dim); font-size: 0.93rem; }

@media (prefers-reduced-motion: no-preference) {
  .quiz-enter { animation: block-in 320ms ease both; }
}

/* ---------------------------------------------------------------- terms */

.terms {
  margin: 1.1rem 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1rem;
}
.terms dt { font-weight: 600; color: var(--accent); }
.terms dd { margin: 0; color: var(--text); }

@media (max-width: 620px) {
  .terms { grid-template-columns: 1fr; gap: 0.1rem 0; }
  .terms dd { margin-bottom: 0.6rem; }
}

/* ----------------------------------------------------------------- flow */

.flow {
  margin: 1.3rem 0;
  padding: 1rem;
  border: 2px solid var(--edge);
  border-radius: 14px;
  background: var(--card);
}
.flow-caption { font-size: 0.85rem; color: var(--dim); margin-bottom: 0.75rem; }

.flow-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--edge);
  border-radius: 999px;
  background: var(--bg);
  color: var(--dim);
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.flow-node:hover { color: var(--text); border-color: var(--accent-dim); }
.flow-node:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Three states, each distinguishable without colour alone: done nodes keep a
   tinted border, the active one is filled and lifted. */
.flow-node.is-done { color: var(--accent); border-color: var(--accent-dim); }
.flow-node.is-active {
  color: #0d1725;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
  transform: translateY(-1px);
}

.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--dim) 25%, transparent);
  font-size: 0.72rem;
}
.flow-node.is-active .flow-num { background: rgba(0, 0, 0, 0.22); }

.flow-card {
  padding: 0.9rem 1rem;
  border: 2px solid var(--edge-soft);
  border-radius: 10px;
  background: var(--bg);
  min-height: 8.5rem; /* stops the controls jumping as steps change length */
}
.flow-title { font-weight: 600; color: var(--accent); margin-bottom: 0.35rem; }
.flow-detail { margin: 0 0 0.7rem; }

.flow-state {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--edge);
}
.flow-state-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--dim);
}
.flow-state-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84rem;
  color: var(--key);
  word-break: break-word;
}

@media (prefers-reduced-motion: no-preference) {
  .flow-enter { animation: tab-in 240ms ease both; }
}

.flow-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.flow-btn {
  padding: 0.35rem 0.8rem;
  border: 2px solid var(--edge);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 0.87rem;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}
.flow-btn:hover:not(:disabled) { border-color: var(--accent-dim); color: var(--accent); }
.flow-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.flow-btn:disabled { opacity: 0.35; cursor: default; }
.flow-counter { font-size: 0.82rem; color: var(--dim); font-variant-numeric: tabular-nums; }

/* ==================================================================== */
/* The switch. Everything above becomes instant rather than absent: state
   changes still happen, they just stop being animated. `scroll-behavior`
   goes back to auto too — a smooth-scrolling page is motion the reader did
   not ask for either, and it is the one people most often forget. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
