/* ==========================================================================
   Orcheum Studios — the score.

   This sheet EXTENDS the editorial landing system; it never restates it.
   `landing/landing.css` is loaded first and owns the surface, the inks, the
   serif, the shell, the buttons, the header/footer and every motion primitive
   (.lp-mask, .lp-reveal). Everything below is the vocabulary the Studios
   page adds on top:

     .st-overture   the five lines of light
     .st-doors      the bento — restrained cream glass, one door per room
     .st-room       a full movement per Studio
     .st-sig        the signature: each room's nature drawn, not described
     .st-cycle      how a room works, lit as the reader passes
     .st-final      five rooms, one center

   The rooms read as one sentence, in order:
     questions → sources → form → structure → something that runs → movement.

   Motion law is inherited unchanged (Constitution 5.1–5.4): opacity, masking,
   drawing, and gentle vertical travel. Every signature plays once, on approach,
   and then holds still. Nothing loops. Nothing bounces.
   ========================================================================== */

:root {
  /* Cream glass. Warm, not frosted-blue — the page's own light, held. */
  --st-glass: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.66) 0%,
    rgba(255, 255, 255, 0.34) 100%
  );
  --st-glass-solid: linear-gradient(
    180deg,
    rgba(255, 253, 249, 0.94) 0%,
    rgba(255, 248, 240, 0.88) 100%
  );
  --st-glass-edge: rgba(129, 73, 59, 0.11);
  --st-glass-lip: rgba(255, 255, 255, 0.72);
  --st-glass-shadow: 0 14px 40px rgba(129, 73, 59, 0.075);
  --st-glass-shadow-lift: 0 20px 52px rgba(129, 73, 59, 0.11);
  --st-radius: 18px;
}

/* ══ Header — Studios is where the reader already is ═════════════════════ */
.st-nav-current {
  color: var(--lp-ink);
  position: relative;
}

.st-nav-current::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: rgba(129, 73, 59, 0.34);
}

/* ══ Movement 0 — Overture ════════════════════════════════════════════════
   Almost nothing: the word, one held line, and five lines of light standing
   where five rooms will be. */
.st-overture {
  position: relative;
  min-height: min(76vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 9vh, 104px) 0 clamp(64px, 10vh, 120px);
  overflow: clip;
}

.st-overture__inner {
  width: min(var(--lp-wide), calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.st-overture__title {
  margin: 0;
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: clamp(52px, 9.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.042em;
  color: var(--lp-ink);
}

/* The held line. It arrives after the word and is allowed to sit alone. */
.st-overture__held {
  margin: clamp(22px, 3vw, 38px) auto 0;
  width: max-content;
  max-width: 100%;
  font-family: var(--lp-serif);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.038em;
  color: var(--lp-ink-display);
}

.st-overture__held .st-dim { color: var(--lp-ink-ghost); }

.st-overture__support {
  margin: clamp(24px, 3vw, 36px) auto 0;
  max-width: 30rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--lp-ink-soft);
}

/* ── Five lines of light ───────────────────────────────────────────────────
   Not decoration: five rooms, standing in the dark, before you open any of
   them. They draw down on their own beats and then stop. */
.st-lights {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 46px);
  margin-top: clamp(48px, 8vh, 92px);
  height: clamp(40px, 6vh, 68px);
}

.st-lights span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(129, 73, 59, 0.42), transparent);
  transform-origin: top center;
}

html.lp-js .st-lights span {
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.8s var(--lp-ease), transform 1s var(--lp-ease);
}

html.lp-js .st-lights.is-in span { opacity: 1; transform: scaleY(1); }

html.lp-js .st-lights.is-in span:nth-child(1) { transition-delay: 0.00s; }
html.lp-js .st-lights.is-in span:nth-child(2) { transition-delay: 0.11s; }
html.lp-js .st-lights.is-in span:nth-child(3) { transition-delay: 0.22s; }
html.lp-js .st-lights.is-in span:nth-child(4) { transition-delay: 0.33s; }
html.lp-js .st-lights.is-in span:nth-child(5) { transition-delay: 0.44s; }

/* ══ Movement 1 — The doors ═══════════════════════════════════════════════
   A bento of five. Each door carries a numeral, a name, and one line. The
   line is the whole promise; the room below it is the proof. */
.st-doors-movement {
  position: relative;
  /* The overture already held its breath; the doors follow closer than a
     full movement's silence would allow. */
  padding-top: clamp(32px, 6vh, 72px);
}

/* Light under the glass. Not decoration — without something beneath them the
   five doors are just five outlines, and the material stops being material. */
.st-doors__light {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(1320px, 100vw);
  height: min(700px, 72vh);
  transform: translateX(-50%);
  border-radius: 50%;
  /* Wide and low — a room lit from somewhere, not a lamp pointed at the grid */
  background: radial-gradient(
    ellipse at 50% 48%,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 243, 232, 0.34) 44%,
    rgba(255, 226, 202, 0) 76%
  );
  pointer-events: none;
  z-index: 0;
}

.st-doors-movement > .lp-shell { position: relative; z-index: 1; }

.st-doors {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

/* Row one holds three equal rooms; row two is deliberately uneven — the only
   room you can walk into today is given the wide cell. Asymmetry with a
   reason, which is the only kind allowed. */
.st-door--research    { grid-column: span 2; }
.st-door--design      { grid-column: span 2; }
.st-door--architecture{ grid-column: span 2; }
.st-door--code        { grid-column: span 2; }
.st-door--motion      { grid-column: span 4; }

/* ── The door itself — restrained cream glass ────────────────────────────── */
.st-door {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 30px);
  min-height: clamp(184px, 19vw, 214px);
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--st-glass-edge);
  border-radius: var(--st-radius);
  background: var(--st-glass);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  box-shadow: inset 0 1px 0 var(--st-glass-lip), var(--st-glass-shadow);
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.45s var(--lp-ease),
    box-shadow 0.45s var(--lp-ease),
    border-color 0.45s var(--lp-ease);
}

/* Where the page cannot hold light, it holds cream instead. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .st-door { background: var(--st-glass-solid); }
}

.st-door:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 73, 59, 0.2);
  box-shadow: inset 0 1px 0 var(--st-glass-lip), var(--st-glass-shadow-lift);
}

/* An outline leaves the door's glass lip and drop shadow completely alone —
   nothing to restate, nothing to keep in sync. */
.st-door:focus-visible {
  outline: var(--lp-focus-width) solid var(--lp-focus-ink);
  outline-offset: 2px;
}

.st-door__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

/* Roman numerals: these are movements, and Orcheum is an orchestra. Tracking
   stays tight enough that III reads as a numeral, not as three ones. */
.st-numeral {
  font-family: var(--lp-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--lp-ink-mute);
}

/* Honest status. Never a badge that pretends. */
.st-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-ink-mute);
}

.st-state::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(129, 73, 59, 0.34);
}

.st-state--open { color: var(--lp-ink-soft); }
.st-state--open::before { background: var(--lp-orange); }

.st-door__body { display: block; margin-top: auto; }

.st-door__name {
  display: block;
  margin: 0;
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.032em;
  color: var(--lp-ink);
}

.st-door__line {
  display: block;
  margin: 8px 0 0;
  max-width: 26rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lp-ink-soft);
}

/* Every door carries its own mark, at rest. The room below is where the same
   mark is made — the door shows what the room is, the room shows what it does.
   Static here on purpose: a wall of five things animating is a shop window. */
.st-door__sig {
  position: absolute;
  right: clamp(14px, 1.6vw, 24px);
  top: 50%;
  width: clamp(96px, 11vw, 140px);
  transform: translateY(-52%);
  color: var(--lp-ink-display);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.45s var(--lp-ease);
}

.st-door:hover .st-door__sig { opacity: 0.62; }

.st-door__body { max-width: 64%; }

/* The one room you can walk into is given the wide cell and the larger mark. */
.st-door--motion .st-door__sig { width: clamp(150px, 16vw, 220px); }
.st-door--motion .st-door__body { max-width: min(56%, 24rem); }

/* ══ Movements 3–7 — The rooms ════════════════════════════════════════════
   One movement each. The signature and the words trade sides so the eye
   crosses the page on every room instead of running down one gutter. */
.st-room {
  position: relative;
  padding: clamp(96px, 15vh, 168px) 0;
  overflow: clip;
  scroll-margin-top: 64px;
}

.st-room__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.st-room--flip .st-room__plate { order: 2; }

.st-room__rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.st-room__rule i {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(129, 73, 59, 0.16);
  transform-origin: left center;
}

html.lp-js .st-room__rule i {
  transform: scaleX(0);
  transition: transform 0.9s var(--lp-ease) 0.12s;
}
html.lp-js .st-room__copy.is-in .st-room__rule i { transform: scaleX(1); }

.st-room__name {
  margin: 0;
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.038em;
  color: var(--lp-ink);
}

/* The promise. Serif, ghosted, and the reason the next room exists. */
.st-room__promise {
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  font-family: var(--lp-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.036em;
  color: var(--lp-ink-display);
}

.st-room__body {
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  max-width: 32rem;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  color: var(--lp-ink-soft);
}

/* What the room leaves behind. Artifacts are the point of a Studio, so they
   are named plainly and never dressed as features. */
.st-leaves {
  margin: clamp(26px, 3.2vw, 36px) 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(129, 73, 59, 0.12);
}

.st-leaves__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-ink-mute);
}

.st-leaves__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  font-family: var(--lp-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--lp-ink);
}

.st-leaves__list li + li::before {
  content: "·";
  margin-right: 10px;
  color: var(--lp-ink-mute);
}

/* ── The door out of the movement ───────────────────────────────────────── */
.st-enter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: clamp(24px, 3vw, 34px);
  font-size: 15px;
  color: var(--lp-ink);
}

.st-enter__arrow {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--lp-ease);
}

.st-enter:hover .st-enter__arrow { width: 30px; }

/* Coming soon is stated, not styled into a promise (Studio Constitution 4.5) */
.st-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: clamp(24px, 3vw, 34px);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--lp-ink-mute);
}

.st-soon::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(129, 73, 59, 0.34);
}

/* ══ The signatures ═══════════════════════════════════════════════════════
   Each room's nature, drawn. No labels, no captions — the reader works it
   out, which is the point. Every signature plays once and then holds. */
.st-room__plate {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid var(--st-glass-edge);
  border-radius: calc(var(--st-radius) + 4px);
  background: var(--st-glass);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  box-shadow: inset 0 1px 0 var(--st-glass-lip), var(--st-glass-shadow);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .st-room__plate { background: var(--st-glass-solid); }
}

.st-sig {
  width: 100%;
  height: auto;
  color: var(--lp-ink-display);
  overflow: visible;
}

.st-sig__accent { color: var(--lp-orange); }

/* SVG children take their transform origin from the whole viewport unless
   told otherwise — every scaled mark below is boxed to its own geometry. */
.st-sig-research__line,
.st-sig-code__bar {
  transform-box: fill-box;
  transform-origin: left center;
}

/* I · Research — scattered points find one line ────────────────────────── */
html.lp-js .st-sig-research__line {
  transform: scaleX(0);
  transition: transform 1s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-research__line { transform: scaleX(1); }

.st-sig-research__dot { opacity: 1; }
html.lp-js .st-sig-research__dot {
  opacity: 0.28;
  transform: translateY(var(--dy, 0px));
  transition: opacity 0.7s var(--lp-ease), transform 0.9s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-research__dot {
  opacity: 1;
  transform: translateY(0);
}

/* II · Design — pieces settle into a composition ───────────────────────── */
html.lp-js .st-sig-design__tile {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.62s var(--lp-ease), transform 0.62s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-design__tile { opacity: 1; transform: none; }

/* III · Architecture — the links are drawn, then the nodes arrive ──────── */
html.lp-js .st-sig-arch__link {
  stroke-dasharray: var(--len, 200);
  stroke-dashoffset: var(--len, 200);
  transition: stroke-dashoffset 0.9s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-arch__link { stroke-dashoffset: 0; }

html.lp-js .st-sig-arch__node {
  opacity: 0;
  transition: opacity 0.55s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-arch__node { opacity: 1; }

/* IV · Code — the file writes itself, left to right ────────────────────── */
html.lp-js .st-sig-code__bar {
  transform: scaleX(0);
  transition: transform 0.5s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-code__bar { transform: scaleX(1); }

/* V · Motion — a curve, and one thing travelling it, once ──────────────── */
html.lp-js .st-sig-motion__curve {
  stroke-dasharray: var(--len, 260);
  stroke-dashoffset: var(--len, 260);
  transition: stroke-dashoffset 1.15s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-motion__curve { stroke-dashoffset: 0; }

html.lp-js .st-sig-motion__key {
  opacity: 0;
  transition: opacity 0.5s var(--lp-ease);
}
html.lp-js .st-sig.is-in .st-sig-motion__key { opacity: 1; }

.st-sig-motion__travel { opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  html.lp-js .st-sig.is-in .st-sig-motion__travel {
    offset-path: path("M24 116 C 78 116, 92 34, 176 34");
    offset-rotate: 0deg;
    animation: st-travel 1.25s var(--lp-ease) 0.85s 1 both;
  }
}

/* Travels the curve once, and stays where it arrived. Never a loop. */
@keyframes st-travel {
  from { offset-distance: 0%;   opacity: 0; }
  12%  { opacity: 1; }
  to   { offset-distance: 100%; opacity: 1; }
}

/* Staggers. Written out rather than generated so each beat is legible. */
html.lp-js .st-sig.is-in [style*="--i:"] { transition-delay: calc(var(--i) * 0.085s); }

/* ══ Movement 8 — How a room works ════════════════════════════════════════
   The lifecycle, reduced to five beats and lit as the reader passes. Same
   editorial vocabulary as the landing's proof sequence: a hair rule, small
   caps, and no card. */
.st-cycle {
  padding-top: clamp(24px, 3.5vw, 36px);
  border-top: 1px solid rgba(129, 73, 59, 0.12);
}

.st-cycle__note {
  margin: 0 0 clamp(26px, 3.4vw, 38px);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-ink-mute);
}

.st-cycle__beats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
}

.st-cycle__beats li {
  position: relative;
  padding-top: 22px;
  font-family: var(--lp-serif);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.28;
  letter-spacing: -0.028em;
  color: var(--lp-ink);
}

.st-cycle__beats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(129, 73, 59, 0.16);
}

/* The dot that marks the beat you have reached */
.st-cycle__beats li::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-orange);
  opacity: 0;
  transition: opacity 0.5s var(--lp-ease);
}

html.lp-js .st-cycle__beats li {
  opacity: 0.3;
  transform: translateY(5px);
  transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease);
}

html.lp-js .st-cycle__beats li.is-on {
  opacity: 1;
  transform: none;
}
html.lp-js .st-cycle__beats li.is-on::after { opacity: 1; }

/* ══ Movement 9 — Finale ══════════════════════════════════════════════════ */
.st-final {
  text-align: center;
  padding: clamp(96px, 15vh, 176px) 0 clamp(88px, 12vh, 124px);
}

.st-final__title {
  margin: 0;
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
}

.st-final__title .st-dim { color: var(--lp-ink-display); }

/* The Sun is the full stop. The sentence ends on the mark itself — never a
   dot beside it, never ringed, never redrawn (Constitution 7.6). */
.st-final__title .lp-sun {
  width: 0.24em;
  height: 0.24em;
  margin-left: 0.1em;
  vertical-align: baseline;
}

html.lp-js .st-final__title .lp-sun {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.9s var(--lp-ease), transform 0.9s var(--lp-ease);
}
html.lp-js .st-final__title.is-lit .lp-sun { opacity: 1; transform: none; }

.st-final__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(44px, 7vh, 76px);
}

/* ══ Responsive ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .st-door--motion .st-door__sig { width: clamp(100px, 13vw, 150px); }
}

@media (max-width: 960px) {
  .st-doors { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .st-door--research,
  .st-door--design,
  .st-door--architecture,
  .st-door--code { grid-column: span 2; }
  .st-door--motion { grid-column: span 4; }

  .st-room__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  /* The signature leads on narrow screens — the drawing before the words */
  .st-room__plate,
  .st-room--flip .st-room__plate { order: -1; max-width: 460px; }

  .st-cycle__beats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 24px; }

  .st-overture { min-height: 0; }
  .st-lights { gap: clamp(14px, 4vw, 30px); }
}

@media (max-width: 640px) {
  .st-overture__inner { width: calc(100% - 32px); }
  .st-overture__title { font-size: clamp(44px, 15vw, 72px); }

  .st-doors { grid-template-columns: 1fr; }
  .st-door--research,
  .st-door--design,
  .st-door--architecture,
  .st-door--code,
  .st-door--motion { grid-column: span 1; }
  .st-door { min-height: 172px; }
  .st-door--motion .st-door__body { max-width: none; }
  .st-door__sig { display: none; }

  .st-room { padding: clamp(72px, 11vh, 108px) 0; }
  .st-cycle__beats { grid-template-columns: 1fr; gap: 22px; }

  .st-doors__light { height: min(420px, 54vh); }
}

/* ══ Print ════════════════════════════════════════════════════════════════ */
@media print {
  html.lp-js .st-lights span,
  html.lp-js .st-sig-design__tile,
  html.lp-js .st-sig-research__dot,
  html.lp-js .st-sig-arch__node,
  html.lp-js .st-sig-motion__key,
  html.lp-js .st-cycle__beats li,
  html.lp-js .st-final__title .lp-sun {
    opacity: 1 !important;
    transform: none !important;
  }
  html.lp-js .st-sig-research__line,
  html.lp-js .st-sig-code__bar,
  html.lp-js .st-room__rule i { transform: scaleX(1) !important; }
  html.lp-js .st-sig-arch__link,
  html.lp-js .st-sig-motion__curve { stroke-dashoffset: 0 !important; }
  .st-door, .st-room__plate { backdrop-filter: none; background: none; }
}

/* ══ Reduced motion ═══════════════════════════════════════════════════════
   Every signature is simply already drawn. The meaning survives; only the
   performance is dropped (Constitution 5.5). */
@media (prefers-reduced-motion: reduce) {
  html.lp-js .st-lights span,
  html.lp-js .st-sig-design__tile,
  html.lp-js .st-sig-research__dot,
  html.lp-js .st-sig-arch__node,
  html.lp-js .st-sig-motion__key,
  html.lp-js .st-cycle__beats li,
  html.lp-js .st-final__title .lp-sun {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  html.lp-js .st-sig-research__line,
  html.lp-js .st-sig-code__bar,
  html.lp-js .st-room__rule i {
    transform: scaleX(1) !important;
    transition: none !important;
  }
  html.lp-js .st-sig-arch__link,
  html.lp-js .st-sig-motion__curve {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
  .st-sig-motion__travel { opacity: 1 !important; }
  .st-door:hover { transform: none; }
}
