/* =========================================================================
   Weird Labs — kinetic home page

   Loaded by the home page only, on top of site.css. The page is a scroll-
   driven manifesto: each .k-scene is a tall section with a sticky .k-stage,
   and kinetic.js maps how far you have scrolled through it to a 0→1
   playhead that drives the scene's transforms.

   body.k-static is the fallback (no JS, reduced motion, or the motion
   toggle off): scenes collapse to ordinary stacked sections showing their
   end state. Everything below the scenes reuses site.css components and
   the site palette as-is; this file only changes their typography.
   ========================================================================= */

body.kinetic {
  --display: Anton, Impact, "Arial Narrow Bold", "Helvetica Neue Condensed", sans-serif;
  --gx: var(--gutter);
  --rail: 56px;
  --dim-k: rgba(17, 17, 17, 0.56);
  --faint-k: rgba(17, 17, 17, 0.16);
  --hair-k: rgba(17, 17, 17, 0.07);
}

body.kinetic main {
  overflow-x: clip;
}

body.kinetic ::selection {
  background: var(--accent);
  color: var(--white);
}

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

/* site.css blurs whatever sits under the nav. Here that's animating every
   frame, and re-blurring it is the costliest paint on the page (worst on
   phones), so this page uses a near-opaque bar instead. */
body.kinetic .nav {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(242, 241, 237, 0.96);
}

/* `animation: none` because site.css fades the nav in with fill `both`,
   which would otherwise pin its opacity at 1. */
body.kinetic.k-zooming .nav,
body.kinetic.k-zooming .k-rail {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

body.kinetic .nav,
body.kinetic .k-rail {
  transition: opacity 0.35s ease;
}

/* --- shared type ----------------------------------------------------- */

.k-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
}

.k-dsp {
  font-family: var(--display);
  font-weight: 400;
  font-synthesis: none;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.004em;
  margin: 0;
}

.k-acc {
  color: var(--accent);
}

.k-ch {
  display: inline-block;
}

.k-gap {
  display: inline-block;
  width: 0.24em;
}

/* --- scene rail ------------------------------------------------------ */

.k-rail {
  position: fixed;
  z-index: 40;
  right: calc(var(--gx) - 8px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

body.k-at-top .k-rail {
  opacity: 0.35;
}

.k-rail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.k-rail__label b {
  color: var(--accent);
}

.k-rail ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.k-seg {
  display: flex;
  align-items: center;
  position: relative;
  height: calc(52vh / 7 - 6px);
  min-height: 24px;
  padding: 0 8px;
}

.k-seg__trk {
  position: relative;
  display: block;
  width: 2px;
  height: 100%;
  background: var(--faint-k);
  overflow: hidden;
}

.k-seg.is-on .k-seg__trk {
  width: 4px;
}

.k-seg__fil {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: 50% 0;
  transform: scaleY(0);
}

.k-seg__num {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(6px, -50%);
  opacity: 0;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.16em;
  white-space: nowrap;
  background: var(--paper);
  padding: 5px 7px;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.k-seg:hover .k-seg__num,
.k-seg:focus-visible .k-seg__num {
  opacity: 1;
  transform: translate(0, -50%);
}

.k-toggle {
  appearance: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid var(--faint-k);
  border-radius: 50%;
  background: rgba(242, 241, 237, 0.7);
  cursor: pointer;
}

.k-toggle:hover {
  border-color: var(--accent);
}

.k-toggle #k-motion-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.k-toggle__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 33, 39, 0.2);
}

.k-toggle[aria-pressed="false"] .k-toggle__dot {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--dim-k);
}

/* --- intro ----------------------------------------------------------- */

.k-intro {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 88px calc(var(--gx) + var(--rail)) 0 var(--gx);
}

.k-intro__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--hair-k) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--hair-k) 1px, transparent 1px) 0 0 / 12.5% 100%;
  mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
}

.k-slate {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--dim-k);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--faint-k);
}

.k-slate__live {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.k-slate__live .hero__dot {
  animation: k-breathe 2.4s ease-in-out infinite;
}

.k-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 0.18em;
  margin: clamp(18px, 3.4vh, 40px) 0 0;
  font-family: var(--display);
  font-size: min(15.5vw, 40vh);
  line-height: 0.82;
  text-transform: uppercase;
  overflow: hidden;
}

.k-title__row {
  display: block;
  white-space: nowrap;
  transform-origin: 0 100%;
}

.k-rise {
  display: inline-block;
  transform: translateY(105%);
  animation: k-rise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.k-rise:nth-child(2) { animation-delay: 0.06s; }
.k-rise:nth-child(3) { animation-delay: 0.12s; }
.k-rise:nth-child(4) { animation-delay: 0.18s; }
.k-rise:nth-child(5) { animation-delay: 0.24s; }
#k-title-2 .k-rise { animation-delay: 0.3s; }
#k-title-2 .k-rise:nth-child(2) { animation-delay: 0.36s; }
#k-title-2 .k-rise:nth-child(3) { animation-delay: 0.42s; }
#k-title-2 .k-rise:nth-child(4) { animation-delay: 0.48s; }
#k-title-2 .k-rise:nth-child(5) {
  animation: k-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.54s forwards, k-breathe 3.6s ease-in-out 1.6s infinite;
}

@keyframes k-rise {
  to { transform: translateY(0); }
}

@keyframes k-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes k-fadein {
  to { opacity: 1; }
}

.k-intro__meta {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
  padding: clamp(18px, 3vh, 34px) 0 clamp(20px, 3vh, 32px);
  opacity: 0;
  animation: k-fadein 0.9s ease 0.6s forwards;
}

.k-intro .lead {
  max-width: 18ch;
  font: 400 clamp(28px, 3.6vw, 58px) / 0.95 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.k-intro .lead em {
  font-style: normal;
  color: var(--accent);
}

.k-intro__index {
  display: flex;
  flex-direction: column;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.16em;
  border-left: 1px solid var(--faint-k);
  padding-left: 20px;
}

.k-intro__index a {
  padding: 10px 0;
  border-bottom: 1px solid var(--hair-k);
  transition: padding-left 0.25s, color 0.25s;
}

.k-intro__index a:last-child {
  border-bottom: 0;
}

.k-intro__index a:hover {
  padding-left: 8px;
  color: var(--accent);
}

.k-cue {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.2em;
}

.k-cue__shaft {
  position: relative;
  width: 1px;
  height: 64px;
  background: var(--faint-k);
  overflow: hidden;
}

.k-cue__shaft::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 22px;
  background: var(--accent);
  animation: k-drip 1.8s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}

@keyframes k-drip {
  from { transform: translateY(-24px); }
  to { transform: translateY(66px); }
}

.k-ticker {
  position: relative;
  margin: auto calc(-1 * (var(--gx) + var(--rail))) 0 calc(-1 * var(--gx));
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  background: var(--accent);
  color: var(--white);
}

.k-ticker__in {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: k-tick 30s linear infinite;
}

.k-ticker span {
  font: 400 22px/1 var(--display);
  letter-spacing: 0.03em;
  padding: 0 18px;
}

.k-ticker span.k-ticker__m {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.2em;
  padding: 0 6px;
}

@keyframes k-tick {
  to { transform: translateX(-50%); }
}

/* --- scenes ---------------------------------------------------------- */

.k-scene {
  position: relative;
  z-index: 1;
  height: calc(var(--len, 300) * 1vh);
}

#sc1 { --len: 280; }
#sc2 { --len: 300; }
#sc3 { --len: 270; }
#sc4 { --len: 300; }
#sc5 { --len: 380; }
#sc6 { --len: 300; }
#sc7 { --len: 380; }

.k-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  contain: paint;
  display: flex;
  flex-direction: column;
  padding: 0 calc(var(--gx) + var(--rail)) 0 var(--gx);
}

.k-hud {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 88px;
  color: var(--dim-k);
}

.k-hud--static {
  padding-top: 0;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--text-muted);
}

.k-hud__no {
  color: var(--accent);
  font-weight: 600;
}

.k-hud__bar {
  position: relative;
  flex: 1;
  max-width: 220px;
  height: 1px;
  align-self: center;
  background: var(--faint-k);
  overflow: hidden;
}

.k-hud__bar i {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* Rewritten every frame; containment keeps each rewrite from re-laying out
   the rest of the stage. */
.k-hud__t,
.k-sx {
  contain: layout paint;
}

.k-hud__t {
  margin-left: auto;
  min-width: 11ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.k-ghost {
  position: absolute;
  right: calc(var(--gx) + var(--rail) - 0.04em);
  bottom: -0.12em;
  z-index: 0;
  font: 400 min(62vh, 48vw) / 0.8 var(--display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.08);
  pointer-events: none;
  user-select: none;
}

.k-play {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.k-foot {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: clamp(20px, 4vh, 40px);
}

.k-body {
  max-width: 44ch;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
}

.k-body b {
  color: var(--accent);
  font-weight: 600;
}

.k-anno {
  text-align: right;
  color: var(--dim-k);
  white-space: nowrap;
}

/* SC 01 — assembly */
.k-s1 {
  position: relative;
  align-self: flex-start;
}

.k-ln {
  display: block;
  white-space: nowrap;
}

.k-reg {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.k-reg::before,
.k-reg::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.k-reg::before { left: 8px; top: 0; width: 1px; height: 18px; }
.k-reg::after { top: 8px; left: 0; height: 1px; width: 18px; }
.k-reg--1 { left: -26px; top: -24px; }
.k-reg--2 { right: -26px; top: -24px; }
.k-reg--3 { left: -26px; bottom: -18px; }
.k-reg--4 { right: -26px; bottom: -18px; }

/* SC 02 — stretch */
.k-s2 {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vh, 12px);
}

.k-sl {
  position: relative;
  display: block;
  white-space: nowrap;
  border-top: 1px solid var(--faint-k);
  padding-top: 30px;
}

.k-sw {
  display: inline-block;
  transform-origin: 0 50%;
  padding-top: 0.04em;
}

.k-sx {
  position: absolute;
  right: 0;
  top: 6px;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  background: var(--paper);
  padding: 3px 0 3px 8px;
}

/* SC 03 — split */
.k-cut {
  --cut: 50%;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.k-half {
  position: relative;
  display: block;
  text-align: center;
}

.k-half--top {
  clip-path: polygon(-20% -60%, 120% -60%, 120% var(--cut), -20% var(--cut));
}

.k-half--bot {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  clip-path: polygon(-20% var(--cut), 120% var(--cut), 120% 160%, -20% 160%);
}

.k-cutband {
  position: absolute;
  left: calc(-1 * var(--gx));
  right: calc(-1 * (var(--gx) + var(--rail)));
  top: var(--cut);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
  transform: translateY(-50%) scaleY(0);
}

.k-cutband__in {
  display: block;
  white-space: nowrap;
}

.k-cutband__meta {
  position: absolute;
  left: var(--gx);
  top: 10px;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.18em;
  opacity: 0.8;
}

.k-blade {
  position: absolute;
  left: calc(-1 * var(--gx));
  right: calc(-1 * (var(--gx) + var(--rail)));
  top: var(--cut);
  height: 2px;
  margin-top: -1px;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* SC 04 — cascade */
.k-s4 {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.6vh, 18px);
}

.k-dl {
  position: relative;
  display: block;
  white-space: nowrap;
}

.k-dl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--faint-k);
}

.k-dw {
  position: relative;
  display: inline-block;
  perspective: 700px;
  perspective-origin: 50% -160%;
}

.k-dm {
  display: inline-block;
  transform-origin: 50% 100%;
}

.k-tk {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -7px;
  height: 3px;
  background: var(--accent);
  opacity: 0;
}

/* SC 05 — prism */
.k-s5 {
  align-items: center;
}

.k-prism-wrap {
  position: relative;
  margin: 0 auto;
  perspective: 1600px;
}

.k-prism {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.k-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.k-face .k-dsp {
  display: block;
  white-space: nowrap;
  padding-top: 0.06em;
}

.k-face__fm {
  position: absolute;
  left: 14px;
  top: 12px;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.k-face__shade {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
}

.k-face--0 { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--faint-k); }
.k-face--1 { background: var(--accent); color: var(--white); }
.k-face--2 { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--faint-k); }
.k-face--3 { background: #1b1b1b; color: var(--accent); box-shadow: inset 0 0 0 1px rgba(232, 33, 39, 0.45); }

.k-prism-static {
  display: none;
}

.k-faceidx {
  max-width: 70ch;
  margin-top: clamp(14px, 3vh, 28px);
  text-align: center;
  color: var(--dim-k);
  font-variant-numeric: tabular-nums;
}

.k-faceidx b {
  color: var(--accent);
  font-weight: 600;
}

/* SC 06 — typed */
.k-prompt {
  margin: 0 0 clamp(10px, 2vh, 22px);
  color: var(--dim-k);
}

.k-prompt b {
  color: var(--accent);
  font-weight: 600;
}

.k-typed {
  font-size: clamp(44px, 8.6vw, 150px);
  max-width: 13ch;
  min-height: 2.8em;
}

.k-typed__b {
  color: var(--dim-k);
}

.k-typed__b.is-flagged {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.07em;
}

.k-caret {
  display: inline-block;
  width: 0.09em;
  height: 0.74em;
  margin-left: 0.04em;
  vertical-align: -0.02em;
  background: var(--accent);
  animation: k-blink 1.05s steps(1) infinite;
}

.k-typed.is-busy .k-caret {
  animation: none;
}

@keyframes k-blink {
  50% { opacity: 0; }
}

.k-keys {
  margin-top: clamp(12px, 2.4vh, 26px);
  color: var(--dim-k);
  font-variant-numeric: tabular-nums;
}

.k-keys b {
  color: var(--ink);
  font-weight: 600;
}

/* SC 07 — zoom */
.k-s7 {
  align-items: center;
}

.k-pre {
  margin-bottom: clamp(8px, 2vh, 24px);
  font-size: clamp(28px, 4.2vw, 64px);
  text-align: center;
}

.k-zoom {
  position: relative;
  will-change: transform;
}

.k-zoom__word {
  display: block;
  font-size: min(26vw, 46vh);
  line-height: 0.82;
  white-space: nowrap;
}

/* Drawn as a box rather than typed as "." so kinetic.js can read its exact
   centre and zoom into it. Sized to match Anton's square full stop. */
.k-zoom__dot {
  display: inline-block;
  width: 0.19em;
  height: 0.16em;
  margin-left: 0.04em;
  background: var(--accent);
}

.k-flood {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
}

/* --- the index: site.css components, re-set for this page ------------ */

.k-index {
  padding-right: calc(var(--gutter) + var(--rail));
}

body.kinetic .h-section {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
}

body.kinetic .h-section--sm {
  font-size: clamp(40px, 5.6vw, 92px);
}

body.kinetic .row__title,
body.kinetic .client__name,
body.kinetic .project__name,
body.kinetic .case-card__headline,
body.kinetic .footer__field dd {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* --- static mode: no JS, reduced motion, or the toggle off ----------- */

body.k-static .k-scene {
  height: auto;
}

body.k-static .k-stage {
  position: relative;
  height: auto;
  min-height: 100svh;
}

body.k-static .k-play {
  padding: 6vh 0;
}

body.k-static .k-body {
  opacity: 1;
  transform: none;
}

body.k-static .k-hud__bar i {
  transform: none;
}

body.k-static .k-prism-wrap,
body.k-static .k-faceidx {
  display: none;
}

body.k-static .k-prism-static {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.k-static .k-prism-static li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--faint-k);
}

body.k-static .k-prism-static .k-dsp {
  font-size: clamp(44px, 8vw, 120px);
}

body.k-static .k-prism-static li:nth-child(even) .k-dsp {
  color: var(--accent);
}

body.k-static .k-prism-static__body {
  color: var(--dim-k);
}

body.k-static .k-cutband {
  position: relative;
  top: auto;
  transform: none;
  margin-top: 12px;
  padding: 0.1em 0;
}

body.k-static .k-half--bot,
body.k-static .k-blade,
body.k-static .k-flood,
body.k-static .k-caret {
  display: none;
}

body.k-static .k-half--top {
  clip-path: none;
}

body.k-static .k-s1,
body.k-static .k-s2,
body.k-static .k-s4,
body.k-static .k-cut,
body.k-static .k-typed {
  font-size: clamp(48px, 10vw, 160px);
}

body.k-static .k-sl,
body.k-static .k-dl {
  white-space: normal;
}

body.k-static .k-typed {
  max-width: none;
  min-height: 0;
}

/* --- small screens --------------------------------------------------- */

@media (max-width: 768px) {
  body.kinetic {
    --rail: 0px;
  }

  .k-rail {
    top: auto;
    bottom: 10px;
    left: var(--gx);
    right: var(--gx);
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  body.k-at-top .k-rail {
    opacity: 0;
    pointer-events: none;
  }

  .k-rail__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 9px;
  }

  .k-rail ol {
    flex: 1;
    flex-direction: row;
    gap: 4px;
  }

  .k-rail li {
    flex: 1;
  }

  .k-seg {
    height: 22px;
    min-height: 0;
    padding: 0;
  }

  .k-seg__trk,
  .k-seg.is-on .k-seg__trk {
    width: 100%;
    height: 2px;
  }

  .k-seg.is-on .k-seg__trk {
    height: 4px;
  }

  .k-seg__fil {
    transform-origin: 0 50%;
    transform: scaleX(0);
  }

  .k-seg__num {
    display: none;
  }

  .k-intro {
    padding-top: 80px;
  }

  .k-slate span:last-child {
    display: none;
  }

  .k-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: min(34vw, 26vh);
  }

  .k-intro__meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .k-intro__index {
    border-left: 0;
    padding-left: 0;
  }

  .k-cue {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .k-cue__shaft {
    width: 48px;
    height: 1px;
  }

  .k-cue__shaft::after {
    width: 18px;
    height: 1px;
    animation-name: k-drip-x;
  }

  .k-hud {
    gap: 12px;
    padding-top: 80px;
  }

  /* The ghost numerals are huge, near-invisible layers and the t = counter
     rewrites text every frame: both cost more than they give on a phone.
     kinetic.js skips updating them below this width too. */
  .k-hud__bar,
  .k-hud__t,
  .k-ghost,
  .k-cutband__meta,
  .k-face__fm {
    display: none;
  }

  .k-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 52px;
  }

  .k-anno {
    text-align: left;
    white-space: normal;
  }

  body.k-static .k-prism-static li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@keyframes k-drip-x {
  from { transform: translateX(-20px); }
  to { transform: translateX(50px); }
}

@media (prefers-reduced-motion: reduce) {
  .k-rise,
  .k-intro__meta {
    animation: none;
    transform: none;
    opacity: 1;
  }

  .k-ticker__in,
  .k-cue__shaft::after,
  .k-slate__live .hero__dot {
    animation: none;
  }
}
