:root {
  --bg: #0b0d10;
  --panel: #14171c;
  --line: #23272e;
  --text: #e8eaee;
  --soft: #c3c8d0;
  --muted: #8b929c;
  --blue: #5e87ea;
  --green: #27a97f;
  --amber: #d99a3a;
  --red: #d4646c;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { color-scheme: dark; scroll-behavior: smooth; }

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
code { font-family: var(--mono); font-size: 0.92em; }
.fine { color: var(--muted); font-size: 0.9rem; }

/* top bar */
.top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.mark { display: block; width: 26px; height: 12px; }
.top-link {
  margin-left: auto;
  color: var(--soft);
  font-size: 0.95rem;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}
.top-link:hover { text-decoration: none; border-color: var(--muted); color: var(--text); }

main { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 40px;
  position: relative;
}
.hero { isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  inset: -80px -200px 0 30%;
  z-index: -1;
  background:
    radial-gradient(closest-side at 40% 40%, rgba(94, 135, 234, 0.18), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(39, 169, 127, 0.1), transparent 70%);
  pointer-events: none;
  animation: mesh 40s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes mesh {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50%  { transform: translate(-6%, 5%) scale(1.12); opacity: 1; }
  100% { transform: translate(5%, -4%) scale(0.96); opacity: 0.8; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: -80px -24px -40px;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") 0 0 / 160px 160px;
  opacity: 0.08;
  -webkit-mask-image: radial-gradient(ellipse at 60% 45%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse at 60% 45%, #000 25%, transparent 72%);
  pointer-events: none;
}
.hero-text { position: relative; }
.lede { font-size: 1.15rem; color: var(--soft); max-width: 26em; margin: 0 0 28px; }

.nos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 30em;
}
.nos li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--soft);
  white-space: nowrap;
}
.nos li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

/* call to action */
.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: default;
  outline: none;
}
.btn:hover { text-decoration: none; border-color: var(--muted); }
.btn.primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.primary:hover, .btn.primary:focus-visible { background: #6e94ee; border-color: #6e94ee; }
.btn.primary i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(217, 154, 58, 0.25);
  flex: none;
}
.btn small {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--soft);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.12s, transform 0.12s;
  pointer-events: none;
  z-index: 3;
}
.btn:hover small, .btn:focus-visible small { opacity: 1; transform: none; }

/* the build, as it happens */
.pulse {
  position: relative;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--soft);
  outline: none;
}
.pulse:hover, .pulse:focus-visible { border-color: var(--muted); }
.pulse p { margin: 0; }
.pulse code { font-size: inherit; color: var(--muted); }
.pulse-line { display: flex; align-items: center; gap: 8px; color: var(--text); }
.pulse-line time { color: var(--text); }
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 169, 127, 0.25);
  flex: none;
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.pulse-subject { margin-top: 2px; color: var(--soft); }
.pulse-subject code { color: var(--muted); }
.pulse-ms {
  display: inline-block;
  padding: 0 6px;
  border-radius: 4px;
  background: rgba(94, 135, 234, 0.18);
  color: var(--blue);
  font-weight: 600;
  line-height: 1.4;
}
.pulse-counts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 14px;
  margin-top: 6px;
  color: var(--muted);
}
.pulse-strip { display: block; width: 179px; height: 21px; color: var(--blue); flex: none; }
.pulse-recent {
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100% + 6px);
  margin: 0;
  padding: 10px 14px;
  list-style: none;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--muted);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  color: var(--soft);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.12s, transform 0.12s;
  pointer-events: none;
  z-index: 3;
}
.pulse-recent:empty { display: none; }
.pulse-recent li { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pulse:hover .pulse-recent, .pulse:focus-visible .pulse-recent { opacity: 1; transform: none; }

.hero-art {
  position: relative;
  aspect-ratio: 1478 / 1080;
  border-radius: 12px;
  overflow: visible;
}
.hero-art img { display: block; height: auto; border-radius: 12px; }
.hero-art .desk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
  animation: 14s var(--ease) infinite;
}
.hero-art .desk.win { animation-name: desk-win; }
.hero-art .desk.mac { animation-name: desk-mac; }
.hero-art .app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
  animation: app-corner 14s var(--ease) infinite;
  will-change: transform;
}
/* full 4 s → windows corner 1.7 s → full 4 s → mac corner 1.7 s → full, 14 s loop */
@keyframes app-corner {
  0%, 28%   { transform: translate(0, 0) scale(1); }
  33%, 45%  { transform: translate(62.5%, 57.9%) scale(0.36); }
  50%, 78%  { transform: translate(0, 0) scale(1); }
  83%, 95%  { transform: translate(62.5%, 4.2%) scale(0.36); }
  100%      { transform: translate(0, 0) scale(1); }
}
@keyframes desk-win {
  0%, 28%   { opacity: 0; }
  33%, 45%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes desk-mac {
  0%, 78%   { opacity: 0; }
  83%, 95%  { opacity: 1; }
  100%      { opacity: 0; }
}

/* day band */
.band-section { padding: 24px 0 56px; }
.band { position: relative; }
.track {
  position: relative;
  height: 28px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.blk {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 4px;
  opacity: 0.9;
  cursor: default;
  transition: opacity 0.15s, transform 0.15s;
  outline: none;
  transform-origin: 0 50%;
}
/* the band fills in left to right once it scrolls into view; without the script it is simply finished */
.band.in .blk { animation: grow 0.5s var(--ease) both; animation-delay: calc(var(--l, 0) * 6ms); }
@keyframes grow { from { transform: scaleX(0); } }
.track::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 96.7%;
  width: 2px;
  border-radius: 1px;
  background: var(--text);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.band.in .track::after { animation: play 60s linear forwards; }
@keyframes play { from { left: 0; } }
.band:has(.legend .a:hover) .blk:not(.a),
.band:has(.legend .b:hover) .blk:not(.b),
.band:has(.legend .c:hover) .blk:not(.c),
.band:has(.legend .x:hover) .blk:not(.x) { opacity: 0.2; }
.blk.a, .legend .a { background: var(--blue); }
.blk.b, .legend .b { background: var(--amber); }
.blk.c, .legend .c { background: var(--green); }
.blk.x, .legend .x { background: var(--muted); opacity: 0.45; }
.track:hover .blk, .track:focus-within .blk { opacity: 0.35; }
.track .blk:hover, .track .blk:focus-visible { opacity: 1; transform: scaleY(1.25); z-index: 2; }
.tip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  min-width: 15em;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--soft);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px) scaleY(0.8);
  transform-origin: 0 100%;
  transition: opacity 0.12s, transform 0.12s;
  pointer-events: none;
  z-index: 3;
}
.blk.r .tip { left: auto; right: 0; }
.tip::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: var(--line);
}
.blk.r .tip::after { left: auto; right: 10px; }
.tip b, .tip em, .tip small { display: block; font-style: normal; font-size: inherit; }
.tip b { color: var(--text); font-weight: 600; }
.tip small { color: var(--muted); }
.blk:hover .tip, .blk:focus-visible .tip { opacity: 1; transform: none; }
.ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.legend {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--soft);
}
.legend li { display: inline-flex; align-items: center; gap: 7px; }
.legend li { cursor: default; }
.legend i { width: 10px; height: 10px; border-radius: 3px; }
.band-caption { margin: 18px 0 0; color: var(--soft); font-size: 0.95rem; }
.band-caption b { color: var(--text); font-family: var(--mono); font-weight: 600; }

/* wide showcases */
.showcase { padding-top: 56px; }
.showcase + .showcase { padding-top: 24px; }
.showcase-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 40px; align-items: baseline; margin-bottom: 32px; }
.showcase-head h2 { margin: 0; }
.showcase-head p { margin: 0; color: var(--soft); max-width: 34em; font-size: 1.05rem; }
.wide-shot { margin: 0; }
.wide-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
}
.wide-shot figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* before / after wipe */
.wipe { margin: 0; --x: 0%; }
.wipe-box {
  position: relative;
  aspect-ratio: 1478 / 1080;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
}
.wipe-before {
  position: absolute;
  inset: 0;
  padding: 2.2% 2.6%;
  font-family: var(--mono);
  font-size: clamp(0.5rem, 1.06vw, 0.8rem);
  line-height: 1.75;
  color: var(--soft);
}
.wipe-before pre { margin: 0; white-space: pre; overflow: hidden; }
.wipe-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0 0 0 var(--x));
}
.wipe-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  width: 2px;
  margin-left: -1px;
  background: var(--text);
  opacity: 0.85;
  pointer-events: none;
}
/* one sweep, raw titles to placed lanes, when it scrolls in; then the handle */
.wipe.in .wipe-after { animation: sweep 2.4s var(--ease); }
.wipe.in .wipe-box::after { animation: sweep-line 2.4s var(--ease); }
@keyframes sweep { from { clip-path: inset(0 0 0 100%); } }
@keyframes sweep-line { from { left: 100%; } }
.wipe-handle {
  display: block;
  width: 100%;
  margin: 12px 0 0;
  accent-color: var(--blue);
  cursor: ew-resize;
}
.wipe figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* how it works */
.section-lede { max-width: 40em; color: var(--soft); margin: 0 0 36px; }
.stage-heads {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 40px;
  padding: 0 0 14px 56px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.stages {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: stage;
  position: relative;
}
.stages::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--green) 50%, var(--amber));
  opacity: 0.55;
}
.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 24px 40px;
  padding: 0 0 44px 56px;
  counter-increment: stage;
}
.stage:last-child { padding-bottom: 8px; }
.stage::before {
  content: counter(stage);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage:nth-child(3)::before, .stage:nth-child(4)::before { border-color: var(--green); }
.stage:nth-child(5)::before, .stage:nth-child(6)::before { border-color: var(--amber); }
.stage-text h3 { padding-top: 3px; }
.stage-text p { color: var(--soft); max-width: 34em; margin-bottom: 0.7em; }
.stage-text p:last-child { margin-bottom: 0; }

.panel {
  margin: 0;
  min-width: 0;
  align-self: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.panel figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.panel figcaption::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.panel pre {
  margin: 0;
  padding: 16px 18px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--soft);
}
.panel code { font-size: inherit; }
.panel code .dim { color: var(--muted); }
/* the build wraps every panel line in a span; they land one after another once the stage scrolls in */
.panel code:has(span[style]) { display: flex; flex-direction: column; min-width: max-content; }
.panel code span[style] { display: block; min-height: 1.65em; }
.stage.in .panel code span[style] { animation: line-in 0.35s var(--ease) both; animation-delay: calc(var(--i, 0) * 40ms); }
.stage.in .panel code span.hit {
  animation: line-in 0.35s var(--ease) both, flash 1.4s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 40ms), calc(var(--i, 0) * 40ms + 0.25s);
}
@keyframes line-in { from { opacity: 0; transform: translateX(-6px); } }
@keyframes flash { from { color: var(--green); background: rgba(39, 169, 127, 0.16); } }
/* the rail draws itself as the stages scroll through; browsers without scroll timelines keep the static line */
@supports (animation-timeline: view()) {
  .stages::before { transform-origin: 50% 0; animation: draw linear both; animation-timeline: view(); animation-range: cover 0% cover 75%; }
}
@keyframes draw { from { transform: scaleY(0); } }
.panel.shot img { display: block; width: 100%; height: auto; }

/* what leaves your machine */
.egress-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.leaves-wrap { overflow-x: auto; }
.leaves {
  width: 100%;
  min-width: 34em;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--soft);
}
.leaves th, .leaves td { text-align: left; vertical-align: top; padding: 10px 14px 10px 0; border-bottom: 1px solid var(--line); }
.leaves th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.leaves td:first-child { color: var(--text); }
.leaves td:last-child, .leaves th:last-child { padding-right: 0; }
.egress-side .fine { margin: 16px 0 0; }
.egress-side code { color: var(--soft); }

/* the build, in the open */
.build-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.log { list-style: none; margin: 0; padding: 12px 18px 14px; font-family: var(--mono); font-size: 0.76rem; line-height: 1.65; color: var(--soft); }
.log li { display: flex; gap: 12px; min-width: 0; }
.log li > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.log time, .log code { color: var(--muted); flex: none; }
.log .log-ms { margin-top: 8px; color: var(--text); }
.log .log-ms:first-child { margin-top: 0; }
.log .log-ms em { font-style: normal; color: var(--amber); }
.log-empty { margin: 0; padding: 14px 18px; font-family: var(--mono); font-size: 0.76rem; color: var(--muted); }
.build-side .numbers { margin: 0 0 8px; font-family: var(--mono); font-size: 0.85rem; color: var(--soft); }
.build-side .numbers b { color: var(--text); font-weight: 600; }
.build-side .numbers small { font-size: inherit; color: var(--muted); }
.build-side .fine { margin: 14px 0 0; }
.build-side .fine code { color: var(--soft); }

/* footer */
.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--soft);
}
.foot p { margin: 0; }
.foot .proof { margin-top: 6px; color: var(--muted); font-size: 0.78rem; }
.foot .proof b { color: var(--soft); font-weight: 600; }

@media (max-width: 860px) {
  .showcase-head, .egress-grid, .build-grid { grid-template-columns: 1fr; gap: 10px; }
  .egress-grid, .build-grid { gap: 28px; }
  .nos li { white-space: normal; }
}

@media (max-width: 760px) {
  section { padding: 44px 0; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 24px; }
  .hero::before { display: none; }
  /* one column: the width of "written down." on a phone sets the size */
  h1 { font-size: clamp(2.2rem, 11vw, 4.4rem); }
  .wide-shot, .wipe { margin: 0 -24px; padding: 0 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .wide-shot img, .wipe-box, .wipe-handle { width: 760px; max-width: none; }
  .wipe-before { font-size: 0.58rem; }
  .wide-shot figcaption, .wipe figcaption { padding-right: 24px; }
  .stage { grid-template-columns: 1fr; gap: 20px; padding-left: 44px; }
  .stage::before { width: 26px; height: 26px; font-size: 0.75rem; }
  .stages::before { left: 12px; }
  .stage-heads { display: none; }
  .tip { min-width: 12em; white-space: normal; }
}

@media (max-width: 420px) {
  .btn small { white-space: normal; right: 0; }
}

/* last, so it wins over every animation above */
@media (prefers-reduced-motion: reduce) {
  .hero-art .desk, .hero-art .app, .hero::before, .pulse-dot,
  .band.in .blk, .band.in .track::after, .wipe.in .wipe-after, .wipe.in .wipe-box::after,
  .stage.in .panel code span[style], .stages::before { animation: none; }
}
