/*
 * Lastlook — marketing site.
 * © 2026 DSQR Studio Inc.
 *
 * Dark only, deliberately: it matches the panel, which is dark because
 * Premiere's UI is dark and non-negotiable.
 *
 * BRAND: the accent is #CFF000, NOT #DDF247. #DDF247 belongs to the Daily 273
 * product skin, which is a different thing from DSQR Studio's own brand.
 * See library/style-registry/INDEX.md, Known Conflicts. Do not "fix" this.
 *
 * The accent is punctuation, not paint. It appears on: the primary button, the
 * corrected word in a finding, a rule under a heading, and focus rings. That is
 * the whole list. On a QC tool a green error would read as "passed", so error
 * state is never accent.
 *
 * Token values are lifted from panel/styles.css so the site and the panel are
 * literally the same surface. Two exceptions, both for the larger canvas:
 *   --text-mute is lightened to #7C848D (5.0:1 on the base, vs 3.6:1 in the
 *   panel) because this page uses it for body-size prose, not 10px labels.
 *
 * No fonts are loaded, no scripts run, no network request is made. Open
 * index.html by double-clicking it and everything works.
 */

/* ------------------------------------------------------------- tokens */

:root {
  --bg:         #0E1013;
  --surface:    #16191D;
  --surface-2:  #1D2126;
  --line:       #262B31;
  --line-soft:  #1F2429;
  --text:       #ECEEF0;
  --text-dim:   #9AA2AB;
  --text-mute:  #7C848D;
  --accent:     #CFF000;
  --accent-ink: #0E1013;
  --err:        #FF6B57;
  --warn:       #F2B441;
  --ok:         #5FD08B;

  --radius:     10px;
  --radius-lg:  16px;

  --wrap:       1120px;
  --gutter:     clamp(20px, 5vw, 40px);
  --band-y:     clamp(64px, 9vw, 118px);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
          system-ui, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
          "Liberation Mono", monospace;
}

/* -------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.025em; margin: 0; }
p { margin: 0 0 1em; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
code { font-family: var(--mono); font-size: 0.92em; }

a { color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 50;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700; text-decoration: none;
}
.skip:focus { transform: translate(-50%, 0); }

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

/* ------------------------------------------------------------ masthead */

.site-head {
  position: sticky; top: 0; z-index: 20;
  background: rgba(14, 16, 19, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.head-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 62px;
  flex-wrap: wrap;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo { border-radius: 50%; flex: none; }
.brand-text { display: block; }
.brand-name {
  display: block;
  font-size: 15px; font-weight: 650; letter-spacing: -0.01em; line-height: 1.15;
}
.brand-by {
  display: block;
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mute);
}

.head-nav {
  display: flex; gap: clamp(14px, 2.4vw, 28px); flex-wrap: wrap;
}
.head-nav a {
  font-size: 13.5px; font-weight: 500;
  color: var(--text-dim); text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .14s ease, border-color .14s ease;
}
.head-nav a:hover { color: var(--text); border-bottom-color: var(--accent); }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 96px);
  overflow: hidden;
}
/* One soft accent bloom, top left. The only decoration on the page. */
.hero::before {
  content: '';
  position: absolute; inset: -40% 40% 40% -30%;
  background: radial-gradient(closest-side, rgba(207, 240, 0, 0.09), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 12px;
}

.hero h1 {
  font-size: clamp(38px, 6.2vw, 66px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--text-dim);
  max-width: 46ch;
}
.lead-sub {
  font-size: 15.5px;
  color: var(--text-mute);
  max-width: 50ch;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 30px 0 22px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background .14s ease, border-color .14s ease, transform .07s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); border-color: var(--accent);
  color: var(--accent-ink); font-weight: 700;
}
.btn-primary:hover { background: #DBFF1A; border-color: #DBFF1A; }
.btn-ghost { background: var(--surface); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); border-color: #3A424B; }

.hero-foot {
  font-size: 13px; color: var(--text-mute); margin: 0;
}

/* -------------------------------------------------- hero panel mockup */

.hero-panel { min-width: 0; }

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
  font-size: 12.5px; line-height: 1.55;
  max-width: 420px;
  margin-inline: auto;
}

.panel-head {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 14px 11px;
  border-bottom: 1px solid var(--line-soft);
}
.panel-logo { border-radius: 50%; flex: none; }
.panel-name { font-size: 13.5px; font-weight: 650; margin-right: auto; }
.panel-live { font-size: 10px; color: var(--text-mute); }
.panel-live::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-right: 5px; vertical-align: middle;
}

.panel-tabs {
  display: flex; gap: 2px;
  padding: 8px 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.panel-tab {
  flex: 1; text-align: center;
  padding: 7px 8px 9px;
  font-size: 12px; font-weight: 550;
  color: var(--text-mute);
  border-bottom: 2px solid transparent;
}
.panel-tab.is-on { color: var(--text); border-bottom-color: var(--accent); }

.panel-body { padding: 14px; }

.panel-run {
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; text-align: center;
  padding: 9px 12px; border-radius: 9px;
}
/* Amber, not green: the panel reports a run WITH findings as a warning, and a
   green "4 to fix" would read as "passed" on a QC tool. Green is the panel's
   clean-run colour only. The wording is the panel's real status string. */
/* The panel prints this in its ordinary colour, not amber. Red and amber there
   mean the TOOL failed; finding five mistakes is the tool working, and colouring
   that like a fault teaches people to dread a successful run. The mockup follows
   the panel, always. */
.panel-status {
  margin: 12px 0 10px;
  font-size: 11.5px; color: var(--text-dim);
}

/* The badge the panel puts on a row: "both" when the text check and the audio
   check independently found the same thing, "heard" when only the audio did. */
.panel-tier {
  margin-left: auto;
  font-size: 9px; letter-spacing: .07em; text-transform: uppercase;
  font-weight: 700; color: var(--text-mute);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 1px 5px;
}
.panel-find.is-heard { border-left-color: var(--text-mute); }

/* A quoted caption inside prose. Dimmed so the sentence being quoted does not
   compete with the sentence doing the explaining. */
.quiet { color: var(--text-mute); }

/* An unresolved finding. Blue in the panel, and it must not read as an error
   here either: the tool saying "I cannot tell" is a feature, not a fault. */
.band-after { background: var(--surface); }
.band-after .pull { border-left-color: var(--accent); }

.find.is-open { border-left-color: #6FA8DC; }
.find.is-open .now { color: var(--text-dim); }

.panel-list { display: flex; flex-direction: column; gap: 7px; }
.panel-find {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-left: 2px solid var(--err);
  border-radius: 9px;
  background: var(--surface);
  padding: 10px 12px;
  font-weight: 600;
}

/* The correction pair, used in the panel mockup and in the proof section. */
.was  { color: var(--err); }
.now  { color: var(--accent); }
.arrow { color: var(--text-mute); margin: 0 8px; font-weight: 400; }

/* --------------------------------------------------------------- bands */

.band { padding-block: var(--band-y); border-top: 1px solid var(--line-soft); }

.kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.band h2 {
  font-size: clamp(27px, 3.6vw, 42px);
  font-weight: 700;
  max-width: 20ch;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px; color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 40px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  margin-top: 34px;
}
.two-col p { color: var(--text-dim); max-width: 52ch; }

.pull {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  color: var(--text) !important;
  font-size: 17px;
  margin-top: 26px;
}

/* ------------------------------------------------------- problem loop */

.loop { display: flex; flex-direction: column; gap: 8px; }

.loop-step {
  position: relative;
  padding: 13px 16px 13px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 15px;
}
.loop-step::before {
  content: '';
  position: absolute; left: 22px; top: 50%;
  width: 6px; height: 6px; margin-top: -3px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 1px var(--line);
}
/* The connecting spine, drawn between the dots. */
.loop-step::after {
  content: '';
  position: absolute; left: 24.5px; top: 50%;
  width: 1px; height: calc(50% + 8px);
  background: var(--line);
}
.loop-step:last-child::after { display: none; }

.loop-step.is-hit {
  border-color: var(--err);
  color: var(--text);
  font-weight: 600;
  background: #1C1512;
}
.loop-step.is-hit::before { background: var(--err); box-shadow: 0 0 0 1px var(--err); }

/* --------------------------------------------------------------- proof */

.band-proof { background: #101317; }

/* Explicit columns, not auto-fit: there are exactly four findings, and auto-fit
   resolved to three at desktop, which left the fourth stranded on its own row. */
.finds {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.find {
  border: 1px solid var(--line);
  border-left: 2px solid var(--err);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 22px;
}

.find-pair {
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  word-break: break-word;
}
.find-pair .arrow { font-size: 0.75em; }

.find-note {
  margin: 0;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
}

.story {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: clamp(24px, 3.5vw, 38px);
}
.story h3 {
  font-size: clamp(19px, 2.2vw, 25px);
  margin-bottom: 14px;
}
.story h3 em { font-style: italic; color: var(--accent); }
.story p { color: var(--text-dim); max-width: 62ch; }
.story code {
  background: #0A0C0E;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--text);
}
.story-foot {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-mute) !important;
  font-size: 14.5px;
}

/* --------------------------------------------------------------- steps */

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 34px;
}
.step { background: var(--bg); padding: 26px 24px 28px; }
.step-n {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 16px;
}
.step h3 { font-size: 17px; font-weight: 650; margin-bottom: 9px; }
.step p { margin: 0; font-size: 14.5px; color: var(--text-mute); }

.cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px 24px 20px;
}
.card h3 { font-size: 16.5px; font-weight: 650; margin-bottom: 10px; }
.card p { margin: 0; font-size: 14.5px; color: var(--text-mute); }

/* ---------------------------------------------------------------- cost */

.band-cost { background: #101317; }

.facts {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
}
.fact {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.fact:last-child { border-bottom: none; }
.fact dt {
  font-size: 13px; color: var(--text-mute);
  letter-spacing: 0.02em;
}
.fact dd {
  font-size: 15px; font-weight: 600; text-align: right;
}
.fact-big {
  font-size: 34px !important; font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-family: var(--mono);
}

/* ---------------------------------------------------------------- soon */

.band-soon { border-top: 1px solid var(--line-soft); }
.band-soon .kicker { color: var(--warn); }
.band-soon h2 { max-width: 24ch; }

.pill {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warn);
  border: 1px solid var(--warn);
  border-radius: 100px;
  padding: 4px 11px;
  white-space: nowrap;
}

.soon-lead { margin-bottom: 18px; }
.soon-note {
  font-size: 14.5px;
  color: var(--text-mute);
  border-left: 2px solid var(--warn);
  padding-left: 16px;
  max-width: 56ch;
  margin: 0;
}

/* -------------------------------------------------------- requirements */

/* Six items, so three columns at desktop rather than four: four leaves two
   stranded on the second row. */
.specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 34px;
}
.spec { background: var(--bg); padding: 22px 24px; }
.spec dt {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.spec dd { font-size: 15px; color: var(--text-dim); }

/* ------------------------------------------------------------- pricing */

.band-pricing { background: #101317; }

.placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  margin-top: 30px;
  max-width: 640px;
}
.placeholder p { color: var(--text-dim); }
.placeholder-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px !important;
}
.placeholder-todo {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-mute) !important;
  line-height: 1.7;
}

/* -------------------------------------------------------------- footer */

.site-foot {
  border-top: 1px solid var(--line-soft);
  padding-block: 34px;
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.foot-brand img { border-radius: 50%; flex: none; }
.foot-home {
  display: block;
  font-size: 12px; color: var(--text-mute);
}
.foot-copy { margin: 0; font-size: 13px; color: var(--text-mute); }

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

/* Grids grow by explicit step so no row is ever left with a single orphan.
   The findings deliberately stop at two across: at four across the correction
   pairs wrap mid-word, and those pairs are the point of the page. */
@media (min-width: 620px) {
  .finds,
  .steps,
  .cards,
  .specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards,
  .specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-panel { order: -1; }
  .panel { max-width: 380px; }
  .two-col { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 110px; }
  .head-inner { padding-block: 10px; gap: 10px; }
  .head-nav { width: 100%; gap: 16px; }
  .head-nav a { font-size: 12.5px; }
  .hero h1 { letter-spacing: -0.03em; }
  .lead-sub { padding-left: 14px; }
  .btn { flex: 1 1 100%; text-align: center; }
  .fact { flex-direction: column; gap: 4px; }
  .fact dd { text-align: left; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}

/* ==================================================================== *
 *  MOTION
 *
 *  Kanu, 2026-08-20: "no smooth animation onto the objects... this looks like
 *  just some static page which we don't want to be presented as."
 *
 *  IT IS ALL CSS, AND THERE IS STILL NO JAVASCRIPT ON THIS SITE. Scroll-driven
 *  reveals use `animation-timeline: view()`, which the browser runs off scroll
 *  position with no observer and no script.
 *
 *  THE ONE RULE THAT MATTERS: the resting state of everything is VISIBLE. The
 *  reveal lives entirely inside @supports, and the keyframe's `from` supplies
 *  the hidden state. A browser without scroll-driven animations shows the whole
 *  page normally. Put `opacity: 0` in a base rule instead and one unsupported
 *  browser gets a blank site, which is the worst bug this file could carry.
 * ==================================================================== */

@keyframes ll-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ll-rise {
  from { opacity: 0; transform: translateY(13px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ll-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ll-rail { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* A hairline that fills as you scroll. Two pixels, no script, and it is the
   cheapest signal a page has that it is a product and not a document. */
.rail {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60;
  background: var(--accent); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  /* Above the fold, on load. No scroll has happened yet, so a scroll timeline
     would leave the hero waiting for a gesture that never comes. */
  .hero-copy > * { animation: ll-rise .72s cubic-bezier(.22,.7,.2,1) both; }
  .hero-copy > *:nth-child(2) { animation-delay: .06s; }
  .hero-copy > *:nth-child(3) { animation-delay: .12s; }
  .hero-copy > *:nth-child(4) { animation-delay: .18s; }
  .hero-copy > *:nth-child(5) { animation-delay: .24s; }
  .hero-panel { animation: ll-fade 1s ease .2s both; }

  /* Above the fold on the other pages. Same reason as .hero-copy: a scroll
     timeline would leave the first screen waiting for a gesture that has not
     happened. Six children is the practical ceiling; beyond that the last one
     arrives late enough to feel broken rather than considered. */
  .rise-kids > * { animation: ll-rise .7s cubic-bezier(.22,.7,.2,1) both; }
  .rise-kids > *:nth-child(2) { animation-delay: .07s; }
  .rise-kids > *:nth-child(3) { animation-delay: .14s; }
  .rise-kids > *:nth-child(4) { animation-delay: .21s; }
  .rise-kids > *:nth-child(5) { animation-delay: .28s; }
  .rise-kids > *:nth-child(n+6) { animation-delay: .34s; }

  .btn { transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease; }
  .btn:hover { transform: translateY(-1.5px); }
  .btn-primary:hover { box-shadow: 0 10px 26px -12px var(--accent); }

  .card, .find, .step, .spec, .fact {
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
  }
  .card:hover, .find:hover { transform: translateY(-2px); border-color: #333a42; }
  .head-nav a { transition: color .16s ease; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .rail { animation: ll-rail linear both; animation-timeline: scroll(root block); }

    /* One block, revealed as it arrives. `entry 5% cover 30%` finishes the
       animation while the element is still rising into view, so nothing is
       half-faded by the time it is where the eye already is. */
    .reveal {
      animation: ll-reveal linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 30%;
    }

    /* Children, one after another. The stagger comes from the RANGE rather than
       a delay, because a delay on a scroll timeline is measured in scroll and
       stalls if someone stops moving. */
    .reveal-kids > * {
      animation: ll-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 34%;
    }
    .reveal-kids > *:nth-child(2n) { animation-range: entry 0% cover 40%; }
    .reveal-kids > *:nth-child(3n) { animation-range: entry 0% cover 46%; }
  }
}

/* Nothing here animates for anyone who asked for less of it. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation: none !important; }
  .rail { display: none; }
}

@media print {
  .site-head, .skip { display: none; }
  body { background: #fff; color: #000; }
}
