:root {
  color-scheme: dark;
  --ink: #08080c;
  --paper: #f7f8fb;
  --acid: #d7ff00;
  --cyan: #64e8ff;
  --coral: #ff786f;
  --violet: #a895ff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.sl-signals {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

.sl-signals img { display: block; max-width: 100%; }
.sl-signals button,
.sl-signals input { font: inherit; }

.sl-signals .sl-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: color-mix(in srgb, #08080c 84%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.14);
}

.signals-kicker {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: clamp(.72rem, 1vw, .86rem);
  font-weight: 900;
  line-height: 1;
}

.signals-hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
  background: #98d9f3;
}

.signals-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  animation: signals-hero-breathe 12s ease-in-out infinite alternate;
}

.signals-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,12,.82) 0%, rgba(5,7,12,.42) 38%, rgba(5,7,12,.04) 70%);
}

.signals-hero__copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 92svh;
  margin: auto;
  padding: 150px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.signals-hero h1,
.signal__intro h2,
.signals-outro h2 {
  margin: 0;
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.signals-hero h1 { max-width: 760px; font-size: clamp(4.4rem, 10vw, 9.5rem); }
.signals-hero__copy > p:not(.signals-kicker) { margin: 24px 0 34px; font-size: clamp(1.1rem, 2vw, 1.7rem); font-weight: 700; }
.signals-hero__copy > a,
.signals-outro a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--acid);
  color: #fff;
  background: rgba(8,8,12,.36);
  font-weight: 900;
  text-decoration: none;
}
.signals-hero__copy > a:hover,
.signals-outro a:hover { background: var(--acid); color: #08080c; }

.signals-hero__prism {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 7vh;
  width: 160px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 96% 80%, 4% 80%);
  border: 1px solid rgba(255,255,255,.7);
  background: conic-gradient(from 210deg, rgba(255,120,111,.5), rgba(100,232,255,.48), rgba(215,255,0,.42), rgba(255,120,111,.5));
  mix-blend-mode: screen;
  animation: prism-float 5s ease-in-out infinite;
}

.signals-rail {
  position: fixed;
  z-index: 80;
  right: 15px;
  top: 50%;
  display: grid;
  gap: 5px;
  transform: translateY(-50%);
  scroll-target-group: auto;
}

.signals-rail a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  background: rgba(8,8,12,.65);
  font-size: .66rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.signals-rail a:hover,
.signals-rail a[aria-current="true"],
.signals-rail a:target-current { color: #08080c; background: var(--acid); transform: translateX(-4px); }

.signal { position: relative; padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.signal__intro { max-width: 780px; margin-bottom: 42px; color: #11131a; }
.signal__intro--dark { color: #f7f8fb; }
.signal__intro h2 { font-size: clamp(2.8rem, 6vw, 6.2rem); }
.signal__intro > p:last-child { margin: 20px 0 0; font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 700; line-height: 1.55; }

.signal__voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signal__voice-actions button,
.signal__voice-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.signal__voice-actions button:hover,
.signal__voice-actions button:focus-visible,
.signal__voice-actions a:hover,
.signal__voice-actions a:focus-visible,
.signal__voice-actions button[data-state="playing"] {
  color: #08080c;
  background: var(--acid);
  transform: translateY(-2px);
}

.signal__voice-status {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  max-width: min(340px, calc(100vw - 44px));
  padding: 12px 14px;
  border: 1px solid rgba(215, 255, 0, 0.5);
  color: #fff;
  background: rgba(8, 8, 12, 0.9);
  font-size: 0.74rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.signal__voice-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.signal--raffi { background: #effaff; color: #11131a; container-type: style; }
.raffi-light {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #009cc0 35%, transparent);
  background: #abdff1;
  --warm: calc(var(--sun) * 1);
}
.raffi-light img {
  width: 100%;
  height: clamp(580px, 65vw, 760px);
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(calc(.9 + var(--sun) * .35)) brightness(calc(.88 + var(--sun) * .24)) sepia(calc(var(--sun) * .12));
  transform: scale(calc(1.025 + var(--sun) * .025));
  transition: filter .15s linear, transform .15s linear;
}
.raffi-light__spectrum {
  position: absolute;
  inset: 0;
  opacity: calc(.14 + var(--sun) * .62);
  background:
    linear-gradient(112deg, transparent 35%, rgba(255,120,111,.28) 45%, rgba(255,236,133,.3) 50%, rgba(100,232,255,.32) 56%, transparent 67%);
  mix-blend-mode: screen;
  transform: translateX(calc((var(--sun) - .5) * 24%));
  pointer-events: none;
}
.signal-slider {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(8,8,12,.78);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.signal-slider input { width: 100%; accent-color: var(--acid); }

@container style(--phase: high) {
  .raffi-light__spectrum { mix-blend-mode: color-dodge; }
}

.signal--uriela { min-height: 260vh; padding-bottom: 0; background: #090817; }
.uriela-scroll { height: 190vh; margin-inline: calc(max(24px, (100vw - 1180px) / 2) * -1); }
.uriela-scroll__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; isolation: isolate; }
.uriela-scroll__sticky > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.uriela-scroll__shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, transparent 20%, rgba(4,3,13,.72) 100%); }
.uriela-scroll__stars { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; }
.uriela-scroll__stars li {
  position: absolute;
  left: var(--x);
  top: var(--y);
  opacity: 1;
  transform: none;
  transition: opacity .7s, transform .7s;
}
.uriela-scroll__stars button { position: relative; min-width: 104px; min-height: 58px; padding: 9px 12px 9px 50px; border: 1px solid rgba(209,201,255,.72); border-radius: 0; background: rgba(7,7,19,.6); color: #fff; text-align: left; cursor: pointer; backdrop-filter: blur(10px); transition: background .25s, transform .25s, box-shadow .25s; }
.uriela-scroll__stars button:hover,
.uriela-scroll__stars button:focus-visible,
.uriela-scroll__stars button[aria-pressed="true"] { background: rgba(112,92,210,.82); transform: translateY(-3px); box-shadow: 0 0 28px rgba(162,145,255,.4); }
.uriela-scroll__stars button strong,
.uriela-scroll__stars button em { display: block; font-style: normal; line-height: 1.1; }
.uriela-scroll__stars button strong { color: var(--violet); font-size: .64rem; }
.uriela-scroll__stars button[aria-pressed="true"] strong { color: #fff; }
.uriela-scroll__stars button em { margin-top: 4px; font-size: .68rem; font-weight: 900; }
.uriela-scroll__star {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #d1c9ff;
  box-shadow: 0 0 18px rgba(198, 190, 255, .9);
}
.uriela-scroll__star::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 5px;
  top: -3px;
  border-radius: 50%;
  background: rgba(7, 7, 19, .94);
}
.uriela-scroll__progress { position: absolute; left: 24px; bottom: 24px; width: min(320px, 55vw); height: 3px; background: rgba(255,255,255,.2); }
.uriela-scroll__progress span { display: block; width: calc(var(--night-progress, 0) * 100%); height: 100%; background: var(--violet); }
.uriela-fragment { position: absolute; right: 24px; bottom: 24px; width: min(360px, calc(100% - 48px)); padding: 18px 20px; border: 1px solid rgba(209,201,255,.64); background: rgba(7,7,19,.78); color: #fff; backdrop-filter: blur(14px); transform: translateY(16px); opacity: .72; transition: opacity .35s, transform .35s; }
.uriela-fragment.is-open { opacity: 1; transform: none; }
.uriela-fragment span,
.uriela-fragment strong { display: block; }
.uriela-fragment span { color: var(--violet); font-size: .65rem; font-weight: 900; }
.uriela-fragment strong { margin-top: 6px; font-size: 1rem; }
.uriela-fragment p { margin: 8px 0 0; color: rgba(255,255,255,.76); font-size: .84rem; line-height: 1.55; }

@supports (animation-timeline: scroll()) {
  .uriela-scroll__sticky > img { animation: uriela-drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
}

.signal--nene { background: #f4f6f8; }
.nene-memory { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 18px; }
.nene-memory__frame { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: #badbe8; view-transition-name: nene-memory; }
.nene-memory__frame img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; transition: filter .8s, transform .8s, transform-origin .8s; will-change: transform; }
.nene-memory__frame figcaption { position: absolute; left: 20px; bottom: 20px; padding: 9px 12px; background: #08080c; color: #fff; font-size: .75rem; font-weight: 900; }
.nene-memory__note { position: absolute; z-index: 2; right: 20px; top: 20px; width: min(300px, calc(100% - 40px)); padding: 16px 18px; border-left: 3px solid #fff; background: rgba(8,8,12,.78); color: #fff; backdrop-filter: blur(12px); }
.nene-memory__note span,
.nene-memory__note strong { display: block; }
.nene-memory__note span { color: #bfeaff; font-size: .66rem; font-weight: 900; }
.nene-memory__note strong { margin-top: 5px; font-size: .92rem; }
.nene-memory__note p { margin: 7px 0 0; color: rgba(255,255,255,.76); font-size: .8rem; line-height: 1.5; }
.nene-memory[data-memory="tide"] img { transform-origin: 13% 45%; transform: scale(1.42); }
.nene-memory[data-memory="window"] img { transform-origin: 88% 43%; filter: contrast(1.07) saturate(.82); transform: scale(1.48); }
.nene-memory[data-memory="afterglow"] img { transform-origin: 50% 48%; filter: sepia(.3) saturate(1.14) brightness(.92); transform: scale(1.22); }
.nene-memory__choices { display: grid; align-content: end; gap: 8px; }
.nene-memory__choices button { min-height: 52px; border: 1px solid #11131a; background: transparent; color: #11131a; font-size: .76rem; font-weight: 900; cursor: pointer; }
.nene-memory__choices button:hover,
.nene-memory__choices button.is-active { background: #11131a; color: #fff; }

.signal--sumine { background: #11121d; }
.sumine-stage { position: relative; min-height: 640px; overflow: hidden; border: 1px solid rgba(255,120,111,.35); }
.sumine-stage > img { width: 100%; height: 680px; object-fit: cover; object-position: center; }
.sumine-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, rgba(5,5,12,.68)); pointer-events: none; }
.sumine-stage__waveform { position: absolute; z-index: 3; right: 24px; bottom: 88px; width: min(320px, 44%); height: 86px; border-left: 2px solid var(--coral); background: rgba(9,9,17,.82); opacity: 0; transition: opacity .25s; }
.sumine-stage.is-speaking .sumine-stage__waveform { opacity: 1; }
.sumine-stage__call { position: absolute; z-index: 3; right: 24px; bottom: 24px; min-height: 50px; padding: 0 18px; border: 1px solid var(--coral); background: rgba(8,8,12,.84); color: #fff; font-weight: 900; cursor: pointer; }
.sumine-stage__call:hover { background: var(--coral); color: #08080c; }
.sumine-stage__lines { position: absolute; z-index: 2; right: 24px; top: 24px; width: min(320px, 44%); display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sumine-stage__lines li { height: 38px; padding: 10px 13px; border-left: 2px solid var(--coral); background: rgba(9,9,17,.8); opacity: 0; transform: translateX(26px); }
.sumine-stage__lines li > span { display: block; height: 100%; background: repeating-linear-gradient(90deg, rgba(255,255,255,.92) 0 2px, transparent 2px 8px); clip-path: polygon(0 44%, 6% 44%, 6% 24%, 10% 24%, 10% 58%, 15% 58%, 15% 34%, 20% 34%, 20% 68%, 25% 68%, 25% 18%, 31% 18%, 31% 54%, 37% 54%, 37% 38%, 43% 38%, 43% 74%, 49% 74%, 49% 30%, 55% 30%, 55% 60%, 61% 60%, 61% 20%, 67% 20%, 67% 66%, 73% 66%, 73% 40%, 79% 40%, 79% 58%, 85% 58%, 85% 28%, 91% 28%, 91% 50%, 100% 50%, 100% 58%, 0 58%); }
.sumine-stage.is-speaking .sumine-stage__lines li { animation: voice-arrive .65s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc((sibling-index() - 1) * 90ms); }
@supports not (width: calc(sibling-index() * 1px)) {
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(1) { animation-delay: 0ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(2) { animation-delay: 90ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(3) { animation-delay: 180ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(4) { animation-delay: 270ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(5) { animation-delay: 360ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(6) { animation-delay: 450ms; }
  .sumine-stage.is-speaking .sumine-stage__lines li:nth-child(7) { animation-delay: 540ms; }
}

.signal--krauza { background: #edf4f1; }
.krauza-map { position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(18,76,65,.36); }
.krauza-map > img { width: 100%; height: 680px; object-fit: cover; object-position: center; transform: scale(1.02); transition: transform 820ms cubic-bezier(.2,.8,.2,1), filter 520ms ease, transform-origin 820ms cubic-bezier(.2,.8,.2,1); will-change: transform; }
.krauza-map__veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(8,22,20,.25), transparent 47%, rgba(237,244,241,.1)); mix-blend-mode: multiply; transition: background 520ms ease; }
.krauza-focus { position: absolute; left: 24px; bottom: 24px; display: flex; gap: 8px; max-width: calc(100% - 48px); }
.krauza-focus button { min-width: 108px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.68); background: rgba(5,11,11,.78); color: #fff; font: inherit; text-align: left; cursor: pointer; backdrop-filter: blur(10px); transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.krauza-focus button span { display: block; color: rgba(255,255,255,.58); font-size: .64rem; font-weight: 900; }
.krauza-focus button strong { display: block; margin-top: 3px; font-size: .72rem; letter-spacing: .04em; }
.krauza-focus button:hover,
.krauza-focus button:focus-visible,
.krauza-focus button[aria-pressed="true"] { background: #fff; color: #10201d; transform: translateY(-3px); }
.krauza-focus button[aria-pressed="true"] span { color: #af1125; }
.krauza-focus__status { position: absolute; right: 24px; top: 24px; width: min(300px, calc(100% - 48px)); margin: 0; padding: 14px 16px; background: rgba(5,11,11,.78); color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.6); backdrop-filter: blur(10px); }
.krauza-focus__status strong,
.krauza-focus__status span { display: block; }
.krauza-focus__status strong { font-size: .72rem; letter-spacing: .06em; }
.krauza-focus__status span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.5; }
.krauza-map[data-krauza-focus="records"] > img { transform-origin: 15% 42%; transform: scale(1.65); }
.krauza-map[data-krauza-focus="records"] .krauza-map__veil { background: linear-gradient(90deg, rgba(4,15,13,.5), transparent 54%); }
.krauza-map[data-krauza-focus="window"] > img { transform-origin: 82% 23%; transform: scale(1.72); filter: brightness(1.07) saturate(1.05); }
.krauza-map[data-krauza-focus="window"] .krauza-map__veil { background: linear-gradient(90deg, rgba(237,244,241,.02), transparent 46%, rgba(4,15,13,.32)); }
.krauza-map[data-krauza-focus="glass"] > img { transform-origin: 86% 73%; transform: scale(1.82); filter: contrast(1.06) saturate(.94); }
.krauza-map[data-krauza-focus="glass"] .krauza-map__veil { background: linear-gradient(135deg, rgba(4,15,13,.05), rgba(4,15,13,.44)); }

.signal--sato { background: #fff6e8; }
.sato-room { position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(125,73,25,.3); }
.sato-room > img { width: 100%; height: 680px; object-fit: cover; object-position: center; transition: transform 780ms cubic-bezier(.2,.8,.2,1), transform-origin 780ms cubic-bezier(.2,.8,.2,1), filter 500ms; will-change: transform; }
.sato-room__place { position: absolute; width: 96px; height: 96px; display: grid; place-items: center; }
.sato-room__place--table { left: 23%; top: 53%; }
.sato-room__place--window { right: 18%; top: 47%; }
.sato-signal { position: relative; width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid #fff; border-radius: 50%; background: #ec3e2d; box-shadow: 0 8px 26px rgba(45,23,7,.3); }
.sato-signal__pulse { position: absolute; inset: -10px; border: 1px solid rgba(236,62,45,.75); border-radius: 50%; animation: sato-pulse 1.8s ease-out infinite; }
.sato-signal__core { width: 12px; height: 12px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 7px rgba(255,255,255,.22); }
.sato-room::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 23% 53%, rgba(236,62,45,.26), transparent 18%); transition: background 550ms ease; }
.sato-room[data-sato-place="window"]::after { background: radial-gradient(circle at 82% 47%, rgba(255,223,152,.44), transparent 19%); }
.sato-room[data-sato-place="table"] > img { transform-origin: 23% 58%; transform: scale(1.17); }
.sato-room[data-sato-place="window"] > img { transform-origin: 82% 47%; transform: scale(1.28); filter: brightness(1.08) saturate(1.05); }
.sato-room__route { position: absolute; z-index: 1; left: 28%; top: 55%; width: 52%; height: 3px; overflow: hidden; transform: rotate(-7deg); transform-origin: left center; opacity: .2; transition: opacity .35s; }
.sato-room__route span { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #fff 25%, #ffda74 50%, transparent 75%); background-size: 200% 100%; }
.sato-room[data-sato-place="window"] .sato-room__route { opacity: 1; }
.sato-room[data-sato-place="window"] .sato-room__route span { animation: sato-route 1.1s linear infinite; }
.sato-room__controls { position: absolute; right: 24px; bottom: 24px; z-index: 1; display: flex; border: 1px solid rgba(125,73,25,.38); background: rgba(255,255,255,.86); backdrop-filter: blur(10px); }
.sato-room__controls button { min-width: 126px; padding: 11px 14px; border: 0; border-right: 1px solid rgba(125,73,25,.25); background: transparent; color: #4b2a12; font: inherit; font-size: .68rem; font-weight: 900; cursor: pointer; }
.sato-room__controls button:last-child { border-right: 0; }
.sato-room__controls button:hover,
.sato-room__controls button:focus-visible,
.sato-room__controls button[aria-pressed="true"] { background: #ec3e2d; color: #fff; }
.sato-room__hint { position: absolute; left: 24px; bottom: 24px; z-index: 1; width: min(300px, calc(100% - 48px)); margin: 0; padding: 12px 14px; background: rgba(255,255,255,.9); color: #11131a; }
.sato-room__hint strong,
.sato-room__hint span { display: block; }
.sato-room__hint strong { font-size: .72rem; }
.sato-room__hint span { margin-top: 5px; color: rgba(17,19,26,.68); font-size: .76rem; }

.signal--shion { background: #060d12; }
.shion-depth { position: relative; min-height: 680px; overflow: hidden; border: 1px solid rgba(100,232,255,.42); background: #dfeff1; touch-action: pan-y; }
.shion-depth__fallback,
.shion-depth__layer,
.shion-depth canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shion-depth__layer { pointer-events: none; will-change: transform; }
.shion-depth__layer--figure {
  clip-path: polygon(23% 0, 70% 0, 77% 100%, 17% 100%);
  transform: translate3d(calc((var(--pointer-x, .5) - .5) * 26px), calc((var(--pointer-y, .5) - .5) * 18px), 0) scale(1.045);
  filter: contrast(1.025) saturate(1.03);
}
.shion-depth__layer--glass {
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 68% 100%, 54% 48%);
  opacity: .34;
  mix-blend-mode: screen;
  transform: translate3d(calc((.5 - var(--pointer-x, .5)) * 38px), calc((.5 - var(--pointer-y, .5)) * 24px), 0) scale(1.065);
  filter: saturate(1.25) contrast(1.08);
}
.shion-depth canvas { opacity: 0; }
.shion-depth.is-ready canvas { opacity: 1; z-index: 1; }
.shion-depth.is-ready .shion-depth__fallback,
.shion-depth.is-ready .shion-depth__layer { opacity: 0; }
.shion-depth__reticle { position: absolute; left: calc(var(--pointer-x, .5) * 100%); top: calc(var(--pointer-y, .5) * 100%); width: 110px; height: 110px; border: 1px solid rgba(215,255,0,.65); border-radius: 50%; transform: translate(-50%,-50%); pointer-events: none; transition: width .2s, height .2s; }
.shion-depth:hover .shion-depth__reticle { width: 150px; height: 150px; }
.shion-depth > p { position: absolute; z-index: 2; left: 22px; bottom: 20px; margin: 0; padding: 8px 11px; color: #08080c; background: var(--acid); font-size: .72rem; font-weight: 900; }

.signals-outro { min-height: 74svh; padding: 120px 24px; display: grid; place-content: center; justify-items: center; text-align: center; background: #f7f8fb; color: #11131a; }
.signals-outro h2 { max-width: 900px; font-size: clamp(3rem, 7vw, 7rem); }
.signals-outro > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 38px; }
.signals-outro a { color: #11131a; background: transparent; border-color: #11131a; }
.signals-outro a:hover { border-color: var(--acid); }
.signals-footer { min-height: 160px; padding: 48px max(24px, calc((100vw - 1180px) / 2)); display: flex; justify-content: space-between; align-items: end; background: #08080c; color: #fff; }
.signals-footer a { color: #fff; font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.signals-footer small { color: rgba(255,255,255,.58); }

@keyframes signals-hero-breathe { to { transform: scale(1.035) translate3d(-.5%, .5%, 0); } }
@keyframes prism-float { 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes uriela-drift { from { transform: scale(1.08) translateY(-1%); } to { transform: scale(1.01) translateY(1%); } }
@keyframes voice-arrive { to { opacity: 1; transform: none; } }
@keyframes sato-pulse { to { opacity: 0; transform: scale(1.35); } }
@keyframes sato-route { to { background-position: -200% 0; } }

::view-transition-old(nene-memory),
::view-transition-new(nene-memory) { animation-duration: .65s; animation-timing-function: cubic-bezier(.2,.8,.2,1); }

@media (max-width: 760px) {
  .signals-hero { min-height: 86svh; }
  .signals-hero > img { object-position: 44% center; }
  .signals-hero__copy { width: calc(100% - 32px); min-height: 86svh; padding-top: 120px; justify-content: end; }
  .signals-hero h1 { font-size: clamp(4rem, 19vw, 6.5rem); max-width: 6ch; }
  .signals-hero__veil { background: linear-gradient(0deg, rgba(5,7,12,.88), rgba(5,7,12,.04) 68%); }
  .signals-hero__prism { width: 86px; right: 12px; bottom: 25vh; }
  .signals-rail { right: 7px; }
  .signals-rail a { width: 28px; height: 28px; font-size: .58rem; }
  .signal { padding: 82px 16px; }
  .signal__intro { margin-right: 34px; }
  .signal__intro h2 { font-size: clamp(2.55rem, 13vw, 4.4rem); }
  .signal__voice-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .signal__voice-actions button,
  .signal__voice-actions a { min-width: 0; padding-inline: 8px; }
  .raffi-light,
  .nene-memory__frame,
  .sumine-stage,
  .krauza-map,
  .sato-room,
  .shion-depth { min-height: 520px; }
  .raffi-light img,
  .nene-memory__frame img,
  .sumine-stage > img,
  .krauza-map > img,
  .sato-room > img { height: 560px; min-height: 520px; }
  .raffi-light img { object-position: 50% center; }
  .signal-slider { inset: auto 12px 12px; grid-template-columns: 1fr; gap: 7px; }
  .signal-slider span:last-child { text-align: right; }
  .signal--uriela { min-height: 235vh; padding-inline: 0; }
  .signal--uriela .signal__intro { padding-inline: 16px; }
  .uriela-scroll { margin-inline: 0; height: 165vh; }
  .uriela-scroll__sticky { height: 82svh; top: 9svh; }
  .uriela-scroll__sticky > img { object-position: 52% center; }
  .uriela-scroll__stars button { min-width: 86px; min-height: 52px; padding-left: 40px; }
  .uriela-scroll__star { left: 20px; }
  .uriela-scroll__stars li:nth-child(1) { left: 3% !important; top: 12% !important; }
  .uriela-scroll__stars li:nth-child(2) { left: auto !important; right: 2%; top: 18% !important; }
  .uriela-scroll__stars li:nth-child(3) { left: auto !important; right: 10%; top: 63% !important; }
  .uriela-fragment { right: 12px; bottom: 28px; width: min(300px, calc(100% - 24px)); }
  .nene-memory { grid-template-columns: 1fr; }
  .nene-memory__choices { grid-template-columns: repeat(3, 1fr); }
  .nene-memory__choices button { min-height: 46px; padding: 4px; font-size: .66rem; }
  .nene-memory__note { top: auto; right: 12px; bottom: 58px; width: min(280px, calc(100% - 24px)); }
  .nene-memory__frame img { object-position: 55% center; }
  .sumine-stage > img { object-position: 37% center; }
  .sumine-stage__lines { right: 12px; top: 12px; width: 45%; gap: 5px; }
  .sumine-stage__lines li { padding: 8px 9px; font-size: .72rem; }
  .sumine-stage__call { right: 12px; bottom: 12px; }
  .sumine-stage__waveform { right: 12px; bottom: 74px; width: 56%; height: 72px; }
  .krauza-map > img { object-position: 50% center; }
  .krauza-focus { left: 12px; bottom: 12px; gap: 5px; }
  .krauza-focus button { min-width: 0; padding: 8px 9px; }
  .krauza-focus button strong { font-size: .63rem; }
  .krauza-focus__status { right: 12px; top: auto; bottom: 74px; width: min(260px, calc(100% - 24px)); }
  .sato-room > img { object-position: 50% center; }
  .sato-room__place--table { left: 16%; top: 59%; }
  .sato-room__place--window { right: 9%; top: 49%; }
  .sato-room__controls { right: 12px; bottom: 12px; }
  .sato-room__controls { left: 12px; right: 12px; }
  .sato-room__controls button { flex: 1; min-width: 0; padding-inline: 8px; }
  .sato-room__hint { left: 12px; bottom: 66px; }
  .shion-depth { min-height: 560px; }
  .signals-outro { min-height: 68svh; }
  .signals-footer { min-height: 140px; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signals-hero > img,
  .signals-hero__prism,
  .sato-signal__pulse { animation: none; }
  .uriela-scroll__stars li,
  .nene-memory__frame img { transition-duration: .01ms; }
}
