/* ============================================================
   vitalsheet-explained — the app's identity, told as a story.
   Same family palette as vitalsheet: graphite + chalk, clinical
   cyan LCD accent, amber only for "outside cited band" (always
   paired with ▲ + text). Seven-segment cuff readout is the motif.
   All animation is CSS-only; prefers-reduced-motion degrades to
   static, fully legible states. No serif anywhere.
   ============================================================ */

:root {
  /* dark (default) */
  --bg:        #101113;
  --surface:   #17191C;
  --surface2:  #1E2125;
  --line:      #2E333A;
  --line-soft: #24282E;
  --text:      #ECEAE4;
  --muted:     #A7ADB4;   /* AA on --bg (~7:1) */
  --accent:    #34D6C0;   /* clinical cyan / LCD hue */
  --accent-ink:#06221F;
  --outside:   #F0B429;   /* amber, out-of-cited-band — always ▲ + text */

  --panel:     #0A0B0C;   /* device readout panel — always dark */
  --panel-line:#23262B;
  --panel-lcd: #4FEAD2;
  --panel-dim: #7f868d;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1040px;
  --shadow: 0 20px 48px -30px rgba(0,0,0,0.8);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:        #F6F5F1;
    --surface:   #FFFFFF;
    --surface2:  #EFEEE8;
    --line:      #D8D6CD;
    --line-soft: #E6E4DC;
    --text:      #17181A;
    --muted:     #55595F;   /* AA on --bg (~6:1) */
    --accent:    #0C7E70;   /* darker teal — AA as text/border on light */
    --accent-ink:#FFFFFF;
    --outside:   #8A5A00;   /* AA amber-brown on light */
    --shadow: 0 18px 40px -30px rgba(23,24,26,0.4);
    /* the readout panel stays dark in both schemes — it is a device */
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; font-weight: 750; letter-spacing: -0.02em; line-height: 1.14; }
h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin-bottom: 0.4rem; max-width: 30ch; }
h3 { font-size: 1.02rem; }
p { margin: 0; }
.mt { margin-top: 14px; }
a { color: var(--accent); }
em { font-style: normal; color: var(--accent); font-weight: 650; }
.hero__lede em, .section__lede em { font-style: italic; color: inherit; font-weight: inherit; }
code {
  font-family: var(--mono); font-size: 0.9em;
  background: var(--surface2); padding: 1px 5px; border-radius: 5px;
}
.num, .seg, .seglg, .cyc { font-variant-numeric: tabular-nums; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 10px; font-weight: 700;
  z-index: 50; transition: top 0.18s ease; text-decoration: none;
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 11px; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 1.5px solid var(--line); color: var(--text);
  background: var(--surface); cursor: pointer; font-family: var(--sans);
}
.btn--primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { filter: brightness(1.07); }
.btn--ghost:hover { border-color: var(--accent); }
.btn--small { padding: 8px 14px; font-size: 0.9rem; border-radius: 9px; }

/* ---- top bar ---- */
.topbar { border-bottom: 1px solid var(--line); background: var(--surface); position: sticky; top: 0; z-index: 30; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand__lcd {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: 8px;
  padding: 5px 9px; flex: none;
}
.seg {
  font-family: var(--mono); font-weight: 800; font-size: 1.05rem;
  color: var(--panel-lcd); letter-spacing: 0.06em; line-height: 1;
  text-shadow: 0 0 10px rgba(79,234,210,0.45);
}
.seg--slash { color: #5a6066; text-shadow: none; }
.brand__name { font-weight: 800; letter-spacing: -0.03em; font-size: 1.12rem; white-space: nowrap; }
.brand__name em { font-weight: 500; color: var(--muted); }

/* ---- hero ---- */
.hero { padding: 52px 20px 24px; }
.eyebrow, .step-eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem;
  font-weight: 700; color: var(--muted);
}
.step-eyebrow { color: var(--accent); }
.hero__title { font-size: clamp(1.55rem, 3.8vw, 2.5rem); margin: 12px 0 14px; max-width: 26ch; }
.hero__lede { color: var(--muted); font-size: 1.08rem; max-width: 64ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* the hero stage: cuff readout → arrow → mini sheet */
.hero__stage {
  margin-top: 34px; display: flex; align-items: center; gap: clamp(12px, 4vw, 38px);
  flex-wrap: wrap;
}
.cuff-panel {
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: 18px;
  padding: 22px 30px; box-shadow: inset 0 0 44px rgba(0,0,0,0.7), var(--shadow);
  text-align: center;
}
.cuff-panel--small { padding: 14px 20px; border-radius: 13px; }
.cuff-panel__row { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.cuff-panel__slash { font-family: var(--mono); font-weight: 800; color: #45494f; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; }
.cuff-panel__unit { margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--panel-dim); }
.seglg {
  font-family: var(--mono); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem);
  color: var(--panel-lcd); line-height: 1; letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(79,234,210,0.4);
}

/* cycling seven-segment digits (cuff counts down, then settles) */
.cyc { position: relative; display: inline-block; }
.cyc i {
  font-style: normal; font-family: var(--mono); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1; letter-spacing: 0.02em;
  color: var(--panel-lcd); text-shadow: 0 0 20px rgba(79,234,210,0.4);
}
.cyc i:not(:last-child) { position: absolute; inset: 0; opacity: 0; }
.cyc i:last-child { position: static; opacity: 1; }
.cyc i:nth-child(1) { animation: cyc-flash 0.42s linear 0.05s 1 none; }
.cyc i:nth-child(2) { animation: cyc-flash 0.42s linear 0.47s 1 none; }
.cyc i:nth-child(3) { animation: cyc-flash 0.42s linear 0.89s 1 none; }
.cyc i:nth-child(4) { animation: cyc-flash 0.42s linear 1.31s 1 none; }
.cyc i:nth-child(5) { animation: cyc-hold 1.73s linear 0s 1 none; }
@keyframes cyc-flash { 0%, 99% { opacity: 1; } 100% { opacity: 0; } }
@keyframes cyc-hold  { 0%, 99% { opacity: 0; } 100% { opacity: 1; } }

.hero-arrow { width: 58px; color: var(--accent); flex: none; opacity: 0; animation: fade-in 0.5s ease 1.9s 1 forwards; }
.mini-sheet {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px 16px; min-width: 170px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(10px); animation: rise-in 0.55s ease 2.1s 1 forwards;
}
.mini-sheet__head { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.mini-sheet__line { height: 7px; border-radius: 4px; background: var(--surface2); border: 1px solid var(--line-soft); margin: 7px 0; width: 0; }
.mini-sheet__line--1 { animation: grow-line 0.4s ease 2.5s 1 forwards; }
.mini-sheet__line--2 { animation: grow-line 0.4s ease 2.7s 1 forwards; }
.mini-sheet__line--3 { animation: grow-line 0.4s ease 2.9s 1 forwards; }
.mini-sheet__avg {
  margin-top: 10px; font-size: 0.85rem; color: var(--muted); font-weight: 650;
  border-top: 1px dashed var(--line); padding-top: 8px;
  opacity: 0; animation: fade-in 0.5s ease 3.2s 1 forwards;
}
.mini-sheet__avg .num { color: var(--accent); font-weight: 800; }
@keyframes fade-in  { to { opacity: 1; } }
@keyframes rise-in  { to { opacity: 1; transform: none; } }
@keyframes grow-line { from { width: 0; } to { width: 100%; } }

/* ---- generic section + scroll-triggered reveals ---- */
.section { padding: 64px 20px; border-top: 1px solid var(--line-soft); }
.section__lede { color: var(--muted); max-width: 70ch; margin: 8px 0 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 48px); align-items: center; margin-top: 22px; }
.split__copy { max-width: 56ch; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }

/* reveal-on-scroll: only hide things when JS is present (html.js) */
.js [data-animate] > *,
.js [data-animate] .split > * { opacity: 0; transform: translateY(16px); }
.js [data-animate].play > *,
.js [data-animate].play .split > * {
  opacity: 1; transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-animate].play > *:nth-child(2) { transition-delay: 0.08s; }
.js [data-animate].play > *:nth-child(3) { transition-delay: 0.16s; }
.js [data-animate].play > *:nth-child(4) { transition-delay: 0.24s; }

/* ---- the problem: scattered scraps ---- */
.scatter { position: relative; min-height: 230px; }
.scrap {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px; box-shadow: var(--shadow);
  font-family: var(--mono); font-size: 1rem; line-height: 1.3;
}
.scrap small { display: block; color: var(--muted); font-family: var(--sans); font-size: 0.76rem; }
.scrap--1 { top: 4%;  left: 6%;  transform: rotate(-6deg); }
.scrap--2 { top: 30%; left: 52%; transform: rotate(4deg); }
.scrap--3 { top: 58%; left: 14%; transform: rotate(-3deg); }
.scrap--4 { top: 72%; left: 56%; transform: rotate(7deg); }
.js [data-animate].play .scrap { animation: scrap-drift 3.6s ease-in-out infinite alternate; }
.js [data-animate].play .scrap--2 { animation-delay: 0.6s; }
.js [data-animate].play .scrap--3 { animation-delay: 1.1s; }
.js [data-animate].play .scrap--4 { animation-delay: 1.7s; }
@keyframes scrap-drift { from { translate: 0 0; } to { translate: 0 -7px; } }

/* ---- step 1: log ---- */
.demo-panel { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.drop-arrow { width: 22px; color: var(--accent); }
.row-card {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: var(--shadow);
}
.row-card__when { color: var(--muted); font-size: 0.88rem; }
.row-card__val { font-weight: 800; font-size: 1.15rem; }
.row-card__tag { font-size: 0.8rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.js [data-animate].play .row-card { animation: row-land 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.5s 1 backwards; }
@keyframes row-land { from { opacity: 0; transform: translateY(-26px); } to { opacity: 1; transform: none; } }

/* ---- step 2: trend table ---- */
.trend-demo { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.trend-demo__avgs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.avg-card {
  flex: 1 1 200px; background: var(--surface2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 12px 16px;
}
.avg-card__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--muted); }
.avg-card__n { text-transform: none; letter-spacing: 0; font-weight: 600; }
.avg-card__value { display: block; margin-top: 6px; font-family: var(--mono); font-weight: 800; font-size: 1.7rem; color: var(--accent); }
.js .trend-demo.playing .avg-card__value { animation: fade-in 0.6s ease 2.2s 1 backwards; }

.table-scroll { overflow-x: auto; }
.trend-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.trend-table th {
  text-align: left; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); padding: 8px 12px; border-bottom: 2px solid var(--line);
}
.trend-table td { padding: 10px 12px; border-bottom: 1px solid var(--line-soft); }
.trend-table td.num { font-family: var(--mono); font-weight: 700; }
.trend-table .band-cell { font-size: 0.85rem; color: var(--muted); }
.trend-table .win-cell { font-size: 0.8rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.trend-table tr.is-win td { background: color-mix(in srgb, var(--accent) 9%, transparent); }
.trend-table tr.is-win td:first-child { box-shadow: inset 3px 0 0 var(--accent); }
.js .trend-demo.playing tbody tr { animation: row-slide 0.5s ease 1 backwards; }
.js .trend-demo.playing tbody tr:nth-child(1) { animation-delay: 0.15s; }
.js .trend-demo.playing tbody tr:nth-child(2) { animation-delay: 0.45s; }
.js .trend-demo.playing tbody tr:nth-child(3) { animation-delay: 0.75s; }
.js .trend-demo.playing tbody tr:nth-child(4) { animation-delay: 1.05s; }
.js .trend-demo.playing tbody tr:nth-child(5) { animation-delay: 1.35s; }
@keyframes row-slide { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.trend-demo__foot { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.foot-note { font-size: 0.85rem; color: var(--muted); }

/* ---- step 3: band chips ---- */
.chip-stack { display: flex; flex-direction: column; gap: 12px; }
.band-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 11px 20px; font-family: var(--mono); font-weight: 700; box-shadow: var(--shadow);
}
.band-chip__tag { font-family: var(--sans); font-weight: 650; font-size: 0.88rem; color: var(--muted); text-align: right; }
.band-chip--outside { border-color: var(--outside); }
.band-chip--outside .band-chip__tag { color: var(--outside); }
.band-chip--muted .band-chip__tag { color: var(--accent); }
.js [data-animate].play .band-chip { animation: chip-pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.25) 1 backwards; }
.js [data-animate].play .band-chip:nth-child(1) { animation-delay: 0.15s; }
.js [data-animate].play .band-chip:nth-child(2) { animation-delay: 0.3s; }
.js [data-animate].play .band-chip:nth-child(3) { animation-delay: 0.45s; }
.js [data-animate].play .band-chip:nth-child(4) { animation-delay: 0.6s; }
.js [data-animate].play .band-chip:nth-child(5) { animation-delay: 0.75s; }
@keyframes chip-pop { from { opacity: 0; transform: scale(0.9) translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- step 4: printer + CSV ---- */
.printer-demo { position: relative; display: flex; flex-direction: column; align-items: center; padding-top: 8px; }
.printer-slot {
  width: 260px; height: 18px; border-radius: 9px;
  background: var(--panel); border: 1px solid var(--panel-line); z-index: 2;
}
.a4-sheet {
  width: 220px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 0 0 8px 8px; padding: 16px 18px; margin-top: -4px;
  box-shadow: var(--shadow); z-index: 1;
}
.js [data-animate].play .a4-sheet { animation: sheet-out 1.1s cubic-bezier(0.2, 0.8, 0.3, 1) 0.3s 1 backwards; }
@keyframes sheet-out { from { transform: translateY(-72%); opacity: 0.3; } to { transform: none; opacity: 1; } }
.a4-sheet__title { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.a4-sheet__row { height: 7px; background: var(--surface2); border: 1px solid var(--line-soft); border-radius: 4px; margin: 7px 0; }
.a4-sheet__row--avg { background: color-mix(in srgb, var(--accent) 22%, var(--surface2)); border-color: var(--accent); }
.a4-sheet__notes {
  margin-top: 10px; height: 44px; border: 1px dashed var(--line); border-radius: 6px;
  font-size: 0.68rem; color: var(--muted); padding: 4px 8px;
}
.a4-sheet__foot { margin-top: 8px; font-size: 0.64rem; color: var(--muted); border-top: 1px solid var(--line-soft); padding-top: 6px; }

.csv-line-wrap { overflow-x: auto; margin-top: 10px; }
.csv-line {
  display: inline-block; white-space: nowrap; overflow: hidden;
  font-family: var(--mono); font-size: 0.9rem; background: var(--panel);
  color: var(--panel-lcd); border: 1px solid var(--panel-line); border-radius: 8px;
  padding: 10px 14px; max-width: 100%;
}
.js [data-animate].play .csv-line { animation: csv-type 1.6s steps(44, end) 0.8s 1 backwards; }
@keyframes csv-type { from { max-width: 2.2ch; } to { max-width: 100%; } }

/* ---- privacy ---- */
.section--privacy { background: var(--surface); }
.section--privacy h2 { max-width: 34ch; }
.csp-demo svg { width: 100%; height: auto; display: block; }
.csp-sheet { fill: var(--surface2); stroke: var(--line); }
.csp-svg-label { font-family: var(--sans); font-size: 14px; font-weight: 700; fill: var(--muted); }
.csp-svg-num { font-family: var(--mono); font-size: 19px; font-weight: 800; fill: var(--accent); }
.csp-svg-code { font-family: var(--mono); font-size: 13.5px; font-weight: 700; fill: var(--accent); }
.csp-svg-blocked { font-family: var(--sans); font-size: 14.5px; font-weight: 750; fill: var(--outside); }
.csp-path { stroke: var(--line); stroke-width: 2; stroke-dasharray: 6 7; fill: none; }
.csp-wall { fill: var(--accent); }
.csp-dot { fill: var(--panel-lcd); stroke: var(--accent); stroke-width: 2; }
.csp-cloud-shape { fill: none; stroke: var(--muted); stroke-width: 2.5; opacity: 0.55; }
.csp-cloud-x { stroke: var(--outside); stroke-width: 3.5; stroke-linecap: round; fill: none; }
.js [data-animate].play .csp-dot { animation: dot-block 2.8s cubic-bezier(0.5, 0, 0.6, 1) 0.4s infinite; }
@keyframes dot-block {
  0%   { transform: translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  52%  { transform: translateX(136px); }   /* hits the wall */
  60%  { transform: translateX(124px); }   /* bounced */
  78%  { transform: translateX(124px); opacity: 1; }
  100% { transform: translateX(124px); opacity: 0; }
}
.js [data-animate].play .csp-wall { animation: wall-flash 2.8s linear 0.4s infinite; }
@keyframes wall-flash { 0%, 48% { fill: var(--accent); } 54% { fill: var(--panel-lcd); } 62%, 100% { fill: var(--accent); } }
.csp-code-wrap { overflow-x: auto; margin-top: 10px; }
.csp-code {
  margin: 0; background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 10px; padding: 14px 18px; min-width: min-content;
}
.csp-code code { background: none; padding: 0; color: var(--panel-lcd); font-size: 0.88rem; line-height: 1.6; }

/* ---- feature tour ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.feature h3 { color: var(--accent); margin-bottom: 6px; }
.feature p { font-size: 0.92rem; color: var(--muted); }
.limits {
  margin-top: 26px; background: var(--surface2); border: 1px solid var(--line);
  border-left: 4px solid var(--outside); border-radius: var(--radius-sm); padding: 16px 20px;
  max-width: 78ch;
}
.limits h3 { margin-bottom: 6px; }
.limits p { color: var(--muted); font-size: 0.95rem; }

/* ---- CTA ---- */
.cta-band { display: flex; justify-content: center; }
.cta-card {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 42px clamp(20px, 6vw, 64px); box-shadow: var(--shadow);
  width: 100%;
}
.cta-card__lcd {
  display: inline-flex; align-items: baseline; gap: 8px; background: var(--panel);
  border: 1px solid var(--panel-line); border-radius: 14px; padding: 14px 22px; margin-bottom: 18px;
}
.cta-card h2 { margin: 0 auto 8px; }
.cta-card > p { color: var(--muted); }
.cta-card .hero__cta { justify-content: center; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding: 34px 0 44px; background: var(--surface); }
.footer__disclaimer { font-size: 0.86rem; color: var(--muted); max-width: 86ch; }
.footer__disclaimer strong { color: var(--text); }
.footer__meta { margin-top: 16px; font-size: 0.86rem; color: var(--muted); }

/* ---- reduced motion: static, fully legible ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }
  .cyc i:not(:last-child) { display: none; }
  .cyc i:last-child, .hero-arrow, .mini-sheet, .mini-sheet__avg { opacity: 1; animation: none !important; }
  .mini-sheet { transform: none; }
  .mini-sheet__line { width: 100%; animation: none !important; }
  .js [data-animate] > *, .js [data-animate] .split > * { opacity: 1; transform: none; }
  .csv-line { max-width: 100%; }
  .csp-dot { transform: translateX(124px); opacity: 1; animation: none !important; }
}

/* ---- print: the story reads as a document ---- */
@media print {
  .topbar, .hero__cta, .skip-link, #replay-trend { display: none; }
  body { background: #fff; color: #000; }
  .section { border: 0; padding: 18px 0; }
}
