/* ============================================================
   DORIEL — "A Lâmpada e a Estrada"
   Darkness first; the verse ignites; one star crosses the sky over
   your scroll and ends inside the D, where the form waits in the
   first morning light. Literata + Fragment Mono. No frameworks.
   ============================================================ */

@font-face {
  font-family: "Literata";
  font-style: normal;
  font-weight: 300 500;
  font-display: block;
  src: url("fonts/literata.woff2") format("woff2");
}
@font-face {
  font-family: "Literata";
  font-style: italic;
  font-weight: 300 500;
  font-display: block;
  src: url("fonts/literata-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Fragment Mono";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fragment-mono.woff2") format("woff2");
}

@property --sky-a { syntax: "<color>"; inherits: true; initial-value: #0A0A0A; }
@property --sky-b { syntax: "<color>"; inherits: true; initial-value: #100A1C; }
@property --glow-c { syntax: "<color>"; inherits: true; initial-value: #43226C; }
@property --glow-a { syntax: "<number>"; inherits: true; initial-value: 0.10; }
@property --glow-y { syntax: "<percentage>"; inherits: true; initial-value: 92%; }

:root {
  --ink: #1A1333;
  --fg: #EDE7F8;
  --fg-soft: #C4A8E8;
  --fg-dim: #8D80AD;
  --unlit: #4A3C63;
  --violet: #9B72D6;
  --lilac: #C4A8E8;
  --deep: #43226C;

  --book: "Literata", "Iowan Old Style", Georgia, serif;
  --mono: "Fragment Mono", ui-monospace, "Cascadia Mono", monospace;

  --ease-settle: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #43226C #0A0A0A;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  min-height: 100svh;
  font-family: var(--book);
  color: var(--fg);
  background: var(--sky-b);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: color 1s var(--ease-soft), background-color 1.4s var(--ease-soft);
}

::selection { background: var(--violet); color: #0A0A0A; }

:focus-visible { outline: 2px solid var(--lilac); outline-offset: 3px; }
body[data-scene="6"] :focus-visible { outline-color: var(--deep); }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  width: auto; height: auto; clip: auto; margin: 0;
  left: 0; top: 0; z-index: 99;
  background: var(--violet); color: #0A0A0A;
  padding: .6rem 1rem; font-family: var(--mono); font-size: .75rem;
}

.defs { position: absolute; width: 0; height: 0; }

.mono {
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

/* ---------- sky (the day, walked) ---------- */
.sky {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 55% at 50% var(--glow-y),
      color-mix(in oklab, var(--glow-c) calc(var(--glow-a) * 100%), transparent) 0%,
      transparent 62%),
    linear-gradient(180deg, var(--sky-b) 0%, var(--sky-a) 52%, var(--sky-b) 88%, var(--sky-b) 100%);
  transition:
    --sky-a 1.4s var(--ease-soft),
    --sky-b 1.4s var(--ease-soft),
    --glow-c 1.4s var(--ease-soft),
    --glow-a 1.4s var(--ease-soft),
    --glow-y 1.4s var(--ease-soft);
}
/* solid seal at the very bottom edge — Safari's bar samples exactly the
 * scene color there (same value the theme-color meta reports on top) */
.sky::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: calc(env(safe-area-inset-bottom, 0px) + 110px);
  background: linear-gradient(180deg, transparent, var(--sky-b) 72%);
}

body[data-scene="0"] { --sky-a: #0A0A0A; --sky-b: #100A1C; --glow-c: #43226C; --glow-a: .14; --glow-y: 96%; }
body[data-scene="1"] { --sky-a: #0A0A0A; --sky-b: #1A1333; --glow-c: #9B72D6; --glow-a: .26; --glow-y: 88%; }
body[data-scene="2"] { --sky-a: #1A1333; --sky-b: #43226C; --glow-c: #C4A8E8; --glow-a: .22; --glow-y: 8%; }
body[data-scene="3"] { --sky-a: #0A0A0A; --sky-b: #131026; --glow-c: #43226C; --glow-a: .14; --glow-y: 90%; }
body[data-scene="4"] { --sky-a: #1A1333; --sky-b: #43226C; --glow-a: .34; --glow-c: #9B72D6; --glow-y: 86%; }
body[data-scene="5"] { --sky-a: #43226C; --sky-b: #6B4A9E; --glow-c: #C4A8E8; --glow-a: .4; --glow-y: 80%; }
body[data-scene="6"] { --sky-a: #EFE9F8; --sky-b: #C4A8E8; --glow-c: #FFFFFF; --glow-a: .3; --glow-y: 70%;
  --fg: #1A1333; --fg-soft: #43226C; --fg-dim: #6E5E92;
  color: var(--ink);
}
body[data-scene="6"] ::selection { background: var(--deep); color: #EFE9F8; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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");
}

/* ---------- stars (the night, scenes 3-4) ---------- */
#stars {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s var(--ease-soft);
}
body[data-scene="3"] #stars { opacity: .7; }
body[data-scene="4"] #stars { opacity: .35; }

/* ---------- lantern (pointer light) ---------- */
.lantern {
  position: fixed; z-index: 3;
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,232,.16) 0%, transparent 65%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0;
}
body.has-pointer .lantern { opacity: 1; }

/* ---------- HUD ---------- */
.hud {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.2rem) 0;
  opacity: 0;
  transition: opacity 1s var(--ease-soft) .2s;
}
/* scrim: content fades out under the clock/brand instead of colliding */
.hud::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5.2rem;
  z-index: -1;
  background: linear-gradient(180deg, var(--sky-b) 18%, transparent);
  transition: --sky-b 1.4s var(--ease-soft);
  pointer-events: none;
}
body.lit .hud { opacity: 1; }
.hud-brand { display: inline-flex; align-items: center; gap: .55rem; }
.hud-brand svg { width: 1.55rem; height: 1.55rem; fill: var(--violet); }
.hud-brand span {
  font-family: var(--mono); font-size: .625rem;
  letter-spacing: .42em; color: var(--fg);
  transition: color 1s var(--ease-soft);
}
.hud-clock {
  font-family: var(--mono); font-size: .6875rem;
  letter-spacing: .18em; color: var(--fg-soft);
  font-variant-numeric: tabular-nums;
  transition: color 1s var(--ease-soft);
}
#clock { display: inline-block; }
#clock.tick { animation: clocktick .32s var(--ease-settle); }
@keyframes clocktick {
  0% { opacity: 0; transform: translateY(.6em); }
  100% { opacity: 1; transform: none; }
}
/* ---------- HUD chapter dots (you are here in the day) ---------- */
.hud-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}
.hud-dots { display: flex; gap: 7px; }
.hud-dots i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--fg-dim);
  opacity: .3;
  transition: opacity .5s var(--ease-soft), background .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.hud-dots i.past { opacity: .65; }
.hud-dots i.now {
  opacity: 1;
  background: var(--fg);
  box-shadow: 0 0 8px rgba(196,168,232,.7);
}
body[data-scene="6"] .hud-dots i.now { box-shadow: 0 0 8px rgba(67,34,108,.5); }

/* ---------- scenes (free-flowing blocks — no scroll pinning) ---------- */
main { position: relative; z-index: 1; }
.scene { position: relative; overflow: hidden; }
.s0 { min-height: 102svh; }
.s1, .s2, .s3, .s4 { min-height: 108svh; }
.s5 { min-height: 64svh; display: grid; place-items: center; padding: 3rem 1.4rem; }
.s6 { min-height: 100svh; }

.stage {
  position: relative;
  min-height: inherit;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 6.5rem clamp(1.2rem, 5vw, 3rem) 6rem;
}

/* staged reveals */
.rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-settle) calc(var(--k, 0) * 110ms),
              transform .9s var(--ease-settle) calc(var(--k, 0) * 110ms);
}
.stage.in .rise, .s5.in .rise, .arrive-copy.in .rise { opacity: 1; transform: none; }

/* ghost timestamps — deep parallax layer (drifts far against the text) */
.ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-54% + (0.5 - var(--t, 0.5)) * 320px));
  font-size: clamp(4rem, 22vw, 13rem);
  letter-spacing: .04em;
  color: var(--deep);
  opacity: .32;
  z-index: -1;
  user-select: none;
}
/* per-layer parallax (data-px) is applied by JS via translate3d */
[data-px] { will-change: translate; }
.ghost-sm { font-size: clamp(3rem, 15vw, 8rem); opacity: .26; }

.label { color: var(--fg-soft); margin: 0 0 1.4rem; transition: color 1s var(--ease-soft); }

.headline {
  margin: 0 0 2rem;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(1.75rem, 5.5vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--fg);
  transition: color 1s var(--ease-soft);
  text-wrap: balance;
}

.sub {
  margin: 1.8rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-style: italic;
  color: var(--fg-dim);
  transition: color 1s var(--ease-soft);
}

/* ---------- scene 0 · the verse ignites ---------- */
.s0 .stage { justify-content: center; gap: 2.2rem; min-height: 102svh; }
.lamp {
  margin: 0;
  max-width: 17ch;
  font-weight: 340;
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 8.4vw + .6rem, 7.6rem);
  line-height: 1.1;
  letter-spacing: -.015em;
}
.lamp .w {
  display: inline-block;
  color: var(--unlit);
  transition: none;
}
.lamp .w em { font-style: italic; }
.lamp .w.on {
  color: var(--fg);
  text-shadow: 0 0 14px rgba(155,114,214,.22);
  animation: ignite .9s var(--ease-settle);
}
@keyframes ignite {
  0%   { color: var(--unlit); text-shadow: 0 0 0 rgba(155,114,214,0); }
  45%  { color: #FFFFFF; text-shadow: 0 0 32px rgba(155,114,214,.45); }
  100% { color: var(--fg); text-shadow: 0 0 14px rgba(155,114,214,.22); }
}
.lamp .w.on em { color: var(--lilac); }

.credit { color: var(--fg-dim); margin: 0; }
.cue {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  color: var(--fg-dim);
}
.cue .mono { font-size: .5625rem; letter-spacing: .3em; }
.cue i {
  width: 1px; height: 26px;
  background: linear-gradient(180deg, var(--fg-dim), transparent);
  animation: breathe 2.6s var(--ease-soft) infinite;
}
@keyframes breathe { 0%, 100% { transform: scaleY(.55); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- scene 1 · the voice ---------- */
.voice {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  margin-top: .6rem;
}
.eq {
  display: flex; align-items: center; gap: 3px;
  height: 34px;
}
.eq i {
  width: 3px; height: 100%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--lilac), var(--violet));
  transform: scaleY(.2);
  transform-origin: center;
}
.stage.in .eq i { animation: sing 1.6s var(--ease-soft) infinite; animation-delay: calc(var(--j) * -.13s); }
@keyframes sing {
  0%, 100% { transform: scaleY(.18); }
  30% { transform: scaleY(var(--amp, .9)); }
  60% { transform: scaleY(.38); }
}
.karaoke {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
}
.karaoke span { color: rgba(196,168,232,.34); transition: color .35s var(--ease-soft), text-shadow .35s var(--ease-soft); }
.karaoke span.k-on { color: var(--fg); text-shadow: 0 0 12px rgba(155,114,214,.35); }

/* ---------- scene 2 · the talk ---------- */
.talk {
  display: flex; flex-direction: column; gap: 1rem;
  width: 100%; max-width: 30rem;
  margin-top: .4rem;
}
.bubble {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: clamp(1.0625rem, 1rem + .5vw, 1.375rem);
  line-height: 1.55;
  max-width: 34ch;
  text-align: left;
  text-wrap: pretty;
}
.bubble.you {
  align-self: flex-end;
  background: #241743;
  color: #EDE7F8;
  border-radius: 16px 4px 16px 16px;
}
.bubble.dor {
  align-self: flex-start;
  background: var(--violet);
  color: #0A0A0A;
  border-radius: 4px 16px 16px 16px;
}

/* ---------- scene 3 · the request ---------- */
.pray {
  margin-top: .4rem;
  transition: transform 1.1s var(--ease-settle), opacity 1.1s var(--ease-settle), filter 1.1s var(--ease-settle);
}
.pray.gone {
  transform: translateX(-46vw);
  opacity: .25;
  filter: grayscale(.6);
}
.pray-line {
  display: block;
  font-size: clamp(1.5rem, 4.6vw, 2.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  cursor: text;
}
.pray-name {
  display: inline-block;
  width: 10ch;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--deep);
  color: var(--fg-soft);
  padding: 0 .12em .04em;
  transition: opacity .32s var(--ease-soft), translate .32s var(--ease-soft);
}
.pray-name.swap { opacity: 0; translate: 0 .28em; }

/* ---------- scene 4 · the return ---------- */
.stamp { letter-spacing: .42em; color: var(--lilac); }
.card-return {
  margin-top: 1rem;
  transform: translateX(-46vw);
  opacity: .2;
  transition: transform 1.3s var(--ease-settle) .25s, opacity 1.3s var(--ease-settle) .25s;
}
.stage.in .card-return { transform: none; opacity: 1; }
.memory {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-style: italic;
  font-weight: 380;
  line-height: 1.35;
}
.memory .w { display: inline-block; color: var(--unlit); }
.memory .w.on, #memory-name.on {
  color: var(--fg);
  text-shadow: 0 0 14px rgba(155,114,214,.22);
  animation: ignite .8s var(--ease-settle);
}

.thesis {
  margin: 2.6rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--fg-dim);
  transition: color 1s var(--ease-soft);
}
.thesis em { font-style: italic; color: var(--fg-soft); }

/* ---------- scene 5 · crossing ---------- */
.crossing {
  margin: 0;
  max-width: 34rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-style: italic;
  line-height: 1.75;
  color: #EFE9F8;
}

/* ---------- scene 6 · arrival ---------- */
.s6 {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6.5rem 1.3rem 0;
}
.arrive {
  position: relative;
  width: 100%;
  max-width: 34rem;
  display: grid;
  place-items: center;
  padding: 3rem 0 4rem;
}
.dgate {
  position: absolute;
  top: 52%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(120vw, 700px);
  fill: none;
  stroke: var(--deep);
  stroke-width: 1;
  opacity: .09;
  pointer-events: none;
}

.arrive-copy {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.arrive-copy .label { color: var(--deep); margin-bottom: 1.2rem; }
.arrive-title {
  margin: 0 0 1rem;
  font-weight: 340;
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.arrive-sub {
  margin: 0 0 2.4rem;
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: #43226C;
}

.form { width: 100%; max-width: 25rem; }

.seg {
  position: relative;
  display: inline-flex;
  border: 1px solid rgba(26,19,51,.3);
  padding: 0; margin: 0 0 1.9rem;
}
.seg label {
  position: relative; z-index: 1;
  padding: .55rem 1.1rem .5rem;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--deep);
  cursor: pointer;
  transition: color .24s var(--ease-soft);
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:has(input:checked) { color: #EFE9F8; }
.seg-ind {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: var(--w, 50%);
  transform: translateX(var(--x, 0));
  background: var(--deep);
  transition: transform .24s var(--ease-settle), width .24s var(--ease-settle);
}
.seg label:focus-within { outline: 2px solid var(--violet); outline-offset: 3px; }

.covenant {
  display: block;
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.covenant span {
  display: block;
  max-width: 20ch;
  margin: 0 auto 1rem;
  text-wrap: balance;
}
#ts-widget { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#contact {
  width: 100%;
  max-width: 19ch;
  border: 0;
  border-bottom: 1px solid rgba(26,19,51,.4);
  background: transparent;
  font: inherit;
  text-align: center;
  color: var(--ink);
  padding: .2em .1em .12em;
  outline: none;
  transition: border-color .3s var(--ease-soft);
}
#contact:focus { border-color: var(--deep); }
#contact::placeholder { color: rgba(93,76,130,.75); font-style: italic; }
.pot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.cta {
  position: relative;
  margin-top: 2.3rem;
  padding: 1.05rem 2rem .95rem;
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--deep);
  background: transparent;
  border: 1px solid var(--deep);
  border-radius: 2px;
  cursor: pointer;
  transition: color .24s var(--ease-soft), background .24s var(--ease-soft), transform .12s var(--ease-soft);
  will-change: transform;
}
.cta:hover { background: var(--deep); color: #EFE9F8; }
.cta:active { transform: scale(.98); }
.cta-spin {
  display: none;
  width: .9rem; height: .9rem;
  border: 2px solid rgba(67,34,108,.3);
  border-top-color: var(--deep);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: -2px;
  margin-left: .6rem;
}
.cta:hover .cta-spin { border-top-color: #EFE9F8; }
@keyframes spin { to { transform: rotate(360deg); } }
.form.is-busy .cta { pointer-events: none; }
.form.is-busy .cta-label { opacity: .55; }
.form.is-busy .cta-spin { display: inline-block; }

.form-note {
  margin: 1.6rem 0 0;
  font-size: .5625rem;
  letter-spacing: .22em;
  color: #5D4C82;
  line-height: 2;
}
.form-msg {
  margin: 1rem 0 0;
  min-height: 1.2em;
  font-size: .95rem;
  font-style: italic;
  color: #7A2E4E;
}

.done-block { max-width: 26rem; }
.done-title {
  margin: 0 0 .9rem;
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  font-style: italic;
  font-weight: 380;
  color: var(--ink);
  line-height: 1.3;
}
.done-sub { margin: 0 0 .5rem; color: #43226C; font-size: 1.02rem; line-height: 1.6; }
.done-pray { margin: 0 0 1.6rem; font-style: italic; color: #6E5E92; font-size: .98rem; }
.done-invite {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .8rem 1.3rem .72rem;
  font-size: .625rem;
  letter-spacing: .2em;
  color: var(--deep);
  text-decoration: none;
  border: 1px solid rgba(67,34,108,.45);
  border-radius: 2px;
  transition: background .24s var(--ease-soft), color .24s var(--ease-soft);
}
.done-invite:hover { background: var(--deep); color: #EFE9F8; }

.colophon {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding: 3.5rem 1.4rem 2rem;
  font-size: .5625rem;
  letter-spacing: .22em;
  color: #6E5E92;
  text-align: center;
  border-top: 1px solid rgba(67,34,108,.14);
  width: 100%;
  line-height: 1.8;
}

/* ---------- mobile refinements ---------- */
@media (max-width: 47.99rem) {
  .ghost { opacity: .24; }
  .talk { max-width: 100%; }
  .bubble { max-width: 88%; overflow-wrap: break-word; }
  .dgate { width: 150vw; opacity: .07; }
  .grain { mix-blend-mode: normal; opacity: .05; }
}

/* ---------- desktop refinements ---------- */
@media (min-width: 48rem) {
  .talk { max-width: 33rem; }
  .bubble.you { margin-right: -2rem; }
  .bubble.dor { margin-left: -2rem; }
}

/* ---------- reduced motion: the walk, already walked ---------- */
@media (prefers-reduced-motion: reduce) {
  .lamp .w, .memory .w, #memory-name {
    color: var(--fg) !important;
    text-shadow: 0 0 14px rgba(155,114,214,.22);
    animation: none !important;
  }
  .lamp .w em { color: var(--lilac); }
  .rise { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card-return { transform: none !important; opacity: 1 !important; transition: none !important; }
  .pray.gone { transform: none; opacity: 1; filter: none; }
  .stage.in .eq i, .eq i { animation: none !important; transform: scaleY(.5); }
  .karaoke span { color: var(--fg); }
  .cue i { animation: none; }
  #clock.tick { animation: none; }
  .lantern, #stars { display: none !important; }
  .sky { transition: none; }
  .ghost { transform: translate(-50%, -54%); }
  [data-px] { translate: none !important; }
  .pray-name { transition: none; }
}
