@charset "UTF-8";
:root {
  --black: #090b08;
  --deep: #11140f;
  --phosphor: #b7caa5;
  --bright: #d9e4cb;
  --muted: #8f9684;
  --line: #343b2b;
  --paper: #c5b690;
  --ink: #28281e;
  --amber: #b9a373;
  --red: #a7816f;
  --frame: 13px;
  --mono: "Courier New", Courier, monospace;
  --serif: Georgia, "Times New Roman", serif;
  color-scheme: dark;
  font-family: var(--mono);
  font-synthesis: none;
  font-size: 16px;
  background: var(--black);
  color: var(--phosphor);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: #646851 #14170f;
  scrollbar-width: thin;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  overflow-x: hidden;
}
html.booting,
body.booting {
  touch-action: none;
  overflow: hidden;
  overscroll-behavior: none;
}
body.booting {
  position: fixed;
  width: 100%;
  top: 0;
}
.boot-screen {
  touch-action: pinch-zoom;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 1px solid var(--bright);
  outline-offset: 6px;
}
button:hover,
a:hover {
  color: var(--bright);
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
figure {
  margin: 0;
}
h1,
h2 {
  font-weight: normal;
}
::selection {
  color: #080a06;
  background: #c0cba7;
}
[hidden] {
  display: none !important;
}
.sr-only {
  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 {
  position: fixed;
  z-index: 200;
  top: -100px;
  left: 30px;
  padding: 20px;
  background: var(--black);
  border: 1px solid var(--phosphor);
}
.skip-link:focus {
  top: 30px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  line-height: 1.7;
}
.cursor {
  animation: cursor 1.1s steps(1) infinite;
}
.cursor.stopped {
  animation: none;
  opacity: 1;
}
@keyframes cursor {
  50% {
    opacity: 0;
  }
}
/* The glass belongs to the viewport; typography remains native, selectable, and accessible. */
.crt-frame {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  border: var(--frame) solid #030403;
  border-radius: 3.8% / 5.3%;
  box-shadow:
    inset 0 0 10px 5px #000,
    0 0 0 45px #030403;
}
.crt-glass {
  position: fixed;
  inset: var(--frame);
  z-index: 99;
  pointer-events: none;
  border-radius: 3.2% / 4.7%;
  overflow: hidden;
  box-shadow:
    inset 0 0 65px 20px #0008,
    inset 2px 0 5px #ba683814,
    inset -2px 0 4px #6b978427;
  background: radial-gradient(
    ellipse at 50% 45%,
    transparent 42%,
    #06080515 70%,
    #000b 100%
  );
}
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    #000 3px,
    transparent 4px
  );
  opacity: 0.12;
  animation: luminance 13s infinite;
}
.crt-glass canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  image-rendering: pixelated;
}
.glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    122deg,
    #c5d3bb07 0%,
    transparent 31%,
    transparent 71%,
    #9bbaaa03 100%
  );
  box-shadow: inset 0 1px 4px #d2dfc51a;
}
.tracking-line {
  position: absolute;
  width: 100%;
  height: 7px;
  background: #d7edc609;
  top: -20%;
  animation: tracking 28s linear infinite;
  box-shadow: 0 14px 1px #0001;
}
.signal-slip .tracking-line {
  animation: interference 0.75s steps(5);
  height: 45px;
  background: repeating-linear-gradient(
    0deg,
    #c2d8aa18 0 1px,
    transparent 1px 7px
  );
}
.signal-slip .crt-glass {
  transform: translateX(0.4px);
}
@keyframes luminance {
  0%,
  100% {
    opacity: 0.12;
  }
  47% {
    opacity: 0.14;
  }
  48% {
    opacity: 0.1;
  }
  49% {
    opacity: 0.12;
  }
}
@keyframes tracking {
  0%,
  92% {
    top: -20%;
  }
  100% {
    top: 110%;
  }
}
@keyframes interference {
  0% {
    top: 20%;
  }
  40% {
    top: 62%;
  }
  60% {
    top: 25%;
  }
  100% {
    top: 110%;
  }
}
#sighting {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  pointer-events: none;
  background: #080a07c9;
  place-items: center;
}
#sighting.visible {
  display: grid;
}
#sighting img {
  height: 94%;
  width: auto;
  opacity: 0.19;
  filter: grayscale(1);
  mix-blend-mode: screen;
}
/* System furniture */
.system-header {
  position: absolute;
  z-index: 20;
  top: 38px;
  left: 4.3%;
  right: 4.3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #d5d4c0;
}
.system-brand {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.brand-mark {
  font: 2.3rem/0.8 var(--serif);
  border: 0;
  width: 40px;
  height: 43px;
  display: grid;
  place-items: center;
}
.brand-sub {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  margin-top: 6px;
  color: #b0af99;
}
.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-right time {
  font-variant-numeric: tabular-nums;
}
.header-right button {
  border-left: 1px solid #8b8c7055;
  padding: 15px 0 15px 24px;
  font-size: 0.6875rem;
}
.system-date {
  color: #a6a68e;
}
.archive-nav {
  position: fixed;
  left: 4.3%;
  bottom: 36px;
  z-index: 40;
  display: flex;
  gap: 22px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #a9ae99;
  background: #090b08bd;
  padding: 9px 14px;
  margin-left: -14px;
}
.archive-nav a {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.archive-nav a span {
  font-size: 0.625rem;
  color: #797e6c;
}
.archive-nav a[aria-current] {
  color: #e1e6d1;
}
.archive-nav a[aria-current]::after {
  content: "";
  height: 3px;
  width: 3px;
  background: var(--phosphor);
  margin-left: 1px;
}
.balance-feed {
  position: fixed;
  right: 4.3%;
  bottom: 41px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 15px;
  align-items: baseline;
  background: #090b08bd;
  padding: 10px 0 8px 15px;
}
.balance-feed > span:first-child {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: #a3a88f;
}
.balance-feed strong {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.balance-feed #balance-delta {
  position: absolute;
  right: 0;
  bottom: 37px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.25s,
    transform 0.4s;
}
.balance-feed #balance-delta.show {
  opacity: 1;
  transform: translateY(0);
}
.tracking-progress {
  position: fixed;
  right: 18px;
  top: 24%;
  height: 52%;
  width: 1px;
  background: #a7b48c16;
  z-index: 60;
}
.tracking-progress span {
  display: block;
  width: 1px;
  height: 100%;
  background: #a7b48c66;
  transform: scaleY(0);
  transform-origin: top;
}
.scene {
  position: relative;
}
.scene-pin {
  height: 100svh;
  min-height: 640px;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.title-period {
  color: #aaab83;
}
/* Warm-up */
.boot-screen {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #050704;
  color: var(--phosphor);
}
.boot-screen::backdrop {
  background: #030403;
}
.boot-screen,
.boot-screen::backdrop {
  opacity: 1;
  transition: opacity 1.2s ease;
}
.boot-screen.is-revealing,
.boot-screen.is-revealing::backdrop {
  opacity: 0;
}
.boot-screen[open] {
  display: block;
  animation: power-on 0.65s both;
}
.boot-content {
  position: absolute;
  top: 29%;
  left: 15%;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  line-height: 2.1;
}
.boot-system {
  color: #7f8b72;
  margin-bottom: 34px;
  font-size: 0.75rem;
}
.boot-system span {
  padding-left: 24px;
}
.boot-welcome {
  margin-top: 25px;
  color: #d4e1c0;
}
.boot-corner {
  position: absolute;
  bottom: 6%;
  right: 6%;
  font-size: 0.625rem;
  color: #66715e;
}
@keyframes power-on {
  0% {
    clip-path: inset(49.9% 49%);
    filter: brightness(2);
  }
  35% {
    clip-path: inset(49.8% 0);
  }
  100% {
    clip-path: inset(0);
    filter: brightness(1);
  }
}
/* Office camera. A genuine layer set is inserted at the same scene coordinates. */
.office-scene {
  height: 280svh;
}
.office-pin {
  background: #080907;
}
.office-world {
  position: absolute;
  width: 1920px;
  height: 1080px;
  transform-origin: 0 0;
  will-change: transform;
}
.office-world > img,
.office-world > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.office-world > video {
  opacity: 0;
  pointer-events: none;
}
.office-world > video.ready {
  opacity: 1;
}
.office-world #office-depth {
  position: absolute;
  inset: 0;
}
.office-depth-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.office-monitor {
  position: absolute;
  left: 87.7%;
  top: 43.1%;
  width: 7.6%;
  height: 26.6%;
  background: radial-gradient(ellipse, #0e1910, #080c08);
  border-radius: 8% / 7%;
  color: #a4cf9e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: skewY(-2deg);
  box-shadow: inset 0 0 17px #000;
  font-size: 7px;
  text-align: center;
  text-shadow: 0 0 3px #8cdd8266;
  overflow: hidden;
}
.office-monitor time {
  font-size: 17px;
  letter-spacing: -0.6px;
}
.monitor-small {
  font-size: 5px;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.office-illumination {
  position: absolute;
  left: 45%;
  top: 34%;
  width: 9%;
  height: 37%;
  background: radial-gradient(ellipse, #b0d4a006, transparent 70%);
  animation: office-light 8s infinite;
  pointer-events: none;
}
.office-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #070a078c 0%,
    transparent 33%,
    #05070522 58%,
    #050805dc 100%
  );
  pointer-events: none;
}
.hero-topline {
  position: absolute;
  top: 145px;
  left: 4.5%;
  right: 4.5%;
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: #d4cbb1a8;
}
.hero-copy {
  position: absolute;
  left: 7.5%;
  bottom: 20.5%;
  color: #e0ddc8;
}
.hero-copy .eyebrow {
  font-size: 0.625rem;
  color: #b6c6a7;
  display: flex;
  gap: 8px;
  align-items: center;
}
.status-light {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #bbc9a4;
  box-shadow: 0 0 8px #b7c99566;
}
.hero-copy h1 {
  font: clamp(6rem, 13.5vw, 13rem)/0.88 var(--serif);
  letter-spacing: -0.065em;
  margin: 21px 0 19px;
  text-shadow: 0 5px 40px #0005;
}
.hero-copy h1 .title-period {
  margin-left: 0.025em;
}
.hero-tagline {
  font-size: clamp(0.8rem, 1.03vw, 1rem);
  letter-spacing: 0.21em;
  line-height: 1.6;
  color: #cfcdb8;
}
.hero-bottom {
  position: absolute;
  bottom: 112px;
  left: 7.5%;
  right: 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: #b9bfaa;
}
.enter-link {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 12px;
  font-size: 0.6875rem;
}
.enter-link span {
  font-size: 1.3rem;
  animation: enter-caret 4s ease-in-out infinite;
}
.record-mark {
  font-size: 0.6875rem;
  display: flex;
  gap: 9px;
  align-items: center;
}
.record-mark i {
  height: 4px;
  width: 4px;
  background: #a68870;
  border-radius: 50%;
  animation: cursor 3s steps(1) infinite;
}
.monitor-entry {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #0a0f09;
  opacity: 0;
  pointer-events: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.office-scene .hero-copy,
.hero-topline,
.hero-bottom {
  will-change: opacity, transform;
}
@keyframes office-light {
  0%,
  100% {
    opacity: 0.4;
  }
  49% {
    opacity: 0.65;
  }
  50% {
    opacity: 0.8;
  }
  51% {
    opacity: 0.5;
  }
}
@keyframes enter-caret {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}
/* Banking mainframe / paper feed */
.financial-scene {
  height: 430svh;
  background: #0a0f09;
}
.terminal-pin {
  background: #0a0f09;
  padding: 10vh 9%;
  color: var(--phosphor);
}
.terminal-top,
.terminal-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #8b9c7d;
}
.terminal-top {
  padding-bottom: 20px;
  border-bottom: 1px solid #36432e;
}
.terminal-body {
  position: absolute;
  top: 29%;
  left: 12%;
  right: 12%;
}
.terminal-body > .eyebrow {
  font-size: 0.625rem;
  color: #7f9473;
  letter-spacing: 0.12em;
}
.terminal-body h2 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  margin: 31px 0 24px;
}
.account-value {
  font-size: clamp(2.2rem, 7.1vw, 7rem);
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px #a3ca7220;
  white-space: nowrap;
  line-height: 1.2;
}
.account-value.refresh {
  animation: refresh 0.15s steps(2);
}
.terminal-rule {
  height: 1px;
  background: #36432e;
  margin: 32px 0;
  max-width: 730px;
}
.terminal-line {
  font-size: clamp(1rem, 2vw, 1.7rem);
  letter-spacing: 0.06em;
  opacity: 0;
  margin: 24px 0;
}
.terminal-line .cursor {
  font-size: 1rem;
  margin-left: 15px;
}
.terminal-reply {
  color: #d4ddc7;
}
.terminal-bottom {
  position: absolute;
  bottom: 17%;
  left: 9%;
  right: 9%;
  font-size: 0.625rem;
}
.paper-transfer {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 43%;
  height: 25%;
  padding: 32px;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: scaleY(0.005);
  box-shadow: 0 20px 80px #0007;
}
.paper-transfer::before,
.paper-transfer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  border-left: 1px dashed #302e2344;
  background: radial-gradient(circle, #24291a 3px, transparent 4px) 0 0/12px
    22px;
}
.paper-transfer::before {
  left: 6px;
}
.paper-transfer::after {
  right: 6px;
}
@keyframes refresh {
  0% {
    opacity: 0.55;
    transform: translateY(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Archive interfaces take their shape from the objects they control. */
.tapes-scene {
  height: 190svh;
  background: #141610;
}
.tapes-pin {
  background: radial-gradient(
    ellipse at 53% 70%,
    #35372b 0%,
    #1d2018 40%,
    #10130e 80%
  );
  padding: 10vh 9%;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 22px;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
  color: #969e85;
}
.section-heading h2 {
  font: clamp(2.6rem, 4.6vw, 4.7rem)/0.98 var(--serif);
  letter-spacing: -0.035em;
  color: #d5d3bc;
}
.small-note {
  justify-self: end;
  align-self: end;
  font-size: 0.6875rem;
  letter-spacing: 0.09em;
  line-height: 1.8;
  color: #a3a88f;
}
.cabinet {
  position: relative;
  width: 90%;
  margin: 5vh auto 0;
  perspective: 1500px;
  filter: drop-shadow(0 30px 30px #0007);
}
.cabinet-header {
  display: flex;
  justify-content: space-between;
  border: 1px solid #5b5c46;
  background: #3c3f31;
  padding: 12px 24px;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 2px 0 #6f705455;
}
.drawer-interior {
  background: #0a0c08;
  padding: 38px 22px 0;
  border-left: 10px solid #343729;
  border-right: 10px solid #343729;
  border-top: 10px solid #1a1d15;
  box-shadow: inset 0 12px 25px #000;
  transform: rotateX(11deg);
  transform-origin: top center;
}
.tape-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  align-items: end;
}
.tape {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  background: #20221b;
  border: 1px solid #3e4232;
  padding: 18px 12px 12px;
  min-height: 220px;
  transform-origin: bottom;
  box-shadow:
    inset 4px 0 2px #33342b,
    inset -5px 0 0 #11140e,
    4px 0 6px #0009;
  color: var(--ink);
  transition:
    transform 0.3s ease,
    filter 0.3s;
}
.tape::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  right: 7px;
  height: 3px;
  border-top: 1px solid #56574855;
  border-bottom: 1px solid #111;
}
.tape:nth-child(2) {
  transform: translateY(6px) rotate(0.6deg);
}
.tape:nth-child(3) {
  transform: rotate(-0.8deg);
}
.tape:nth-child(4) {
  transform: translateY(3px) rotate(0.7deg);
}
.tape:hover,
.tape:focus-visible {
  transform: translateY(-16px) rotate(-1deg);
  filter: brightness(1.12);
  color: var(--ink);
}
.tape-label {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  background: #b6af92;
  width: 100%;
  padding: 12px 9px;
  min-height: 128px;
  box-shadow: 1px 2px 1px #0005;
  transform: rotate(-1deg);
  text-align: left;
}
.tape:nth-child(2n) .tape-label {
  transform: rotate(1.5deg);
  background: #a9aa8e;
}
.tape-number {
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.08em;
}
.tape-caption {
  font-size: 0.625rem;
  letter-spacing: 0.05em;
}
.tape-date {
  font-size: 0.625rem;
  margin-top: auto;
  white-space: nowrap;
}
.tape-state {
  font-size: 0.625rem;
  color: #a8af91;
  margin-top: 22px;
  letter-spacing: 0.05em;
}
.tape-state::before {
  content: "■";
  font-size: 7px;
  margin-right: 7px;
}
.tape[data-status="CLASSIFIED"] .tape-state {
  color: #c0ac8a;
}
.tape[data-status="DAMAGED"] {
  opacity: 0.68;
}
.tape[data-status="SEALED"] .tape-label {
  background: #353b2c;
  color: #c1c4a8;
}
.drawer-front {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: linear-gradient(#4a4e3b, #313628);
  border: 1px solid #696b50;
  border-bottom: 8px solid #1d2117;
  box-shadow:
    inset 0 2px 1px #82856733,
    0 16px 22px #0009;
  position: relative;
  z-index: 1;
}
.drawer-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 4px ridge #565b46;
  background: #b2ad8e;
  color: #36382b;
  padding: 7px 14px;
  transform: rotate(-0.6deg);
}
.drawer-handle {
  height: 20px;
  width: 130px;
  border: 4px solid #787e65;
  border-bottom: 5px solid #282e20;
  border-radius: 2px;
  box-shadow:
    0 3px 5px #000b,
    inset 0 3px 4px #0c100a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.drawer-screw {
  font-size: 1.3rem;
  color: #8a8d72;
}
.archive-footnote {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: #939d83;
  max-width: 90%;
  margin: 32px auto;
}
.tape-list .tape:focus-visible {
  outline-offset: 4px;
}
/* Personnel / folding cover */
.personnel-scene {
  height: 190svh;
  background: #1c1b14;
}
.personnel-pin {
  background: radial-gradient(
    ellipse at 50% 50%,
    #363328 0,
    #222119 45%,
    #14160f 95%
  );
  padding: 9vh 5%;
  display: grid;
  place-items: center;
}
.file-section-label {
  position: absolute;
  left: 7%;
  top: 10%;
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #9e9f89;
}
.file-section-label > .eyebrow {
  margin-bottom: 14px;
}
.folder {
  position: relative;
  width: min(760px, 67vw);
  perspective: 1800px;
  background: #8c7952;
  padding: 13px 16px 18px;
  box-shadow: 7px 15px 60px #0008;
  transform: rotate(-2deg);
  margin-top: 50px;
}
.folder-tab {
  position: absolute;
  top: -24px;
  right: 0;
  background: #8c7952;
  color: #27291e;
  padding: 8px 20px 9px;
  font-size: 0.625rem;
  letter-spacing: 0.07em;
  border-radius: 4px 4px 0 0;
}
.file-paper {
  position: relative;
  padding: 25px 33px;
  background: #c9bd9b;
  color: #28291f;
  box-shadow: 1px 2px 3px #0007;
  transform: rotate(0.7deg);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    #4d442503 4px 5px
  );
}
.paper-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #777359;
  padding-bottom: 19px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}
.stamp {
  font-size: 0.6875rem;
  border: 2px solid #805c45;
  color: #805c45;
  padding: 5px 9px;
  transform: rotate(-7deg);
  letter-spacing: 0.1em;
}
.file-grid {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 30px;
  margin: 30px 0 20px;
}
.file-photo {
  position: relative;
  background: #ae9e7e;
  padding: 6px 6px 17px;
  transform: rotate(-3deg);
  box-shadow: 2px 4px 5px #28251c55;
}
.file-photo::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 10px;
  z-index: 1;
  width: 35px;
  height: 5px;
  border-top: 2px solid #75735c;
  box-shadow: 1px 2px 2px #0006;
}
.file-photo img {
  width: 100%;
  aspect-ratio: 4/4.7;
  object-fit: cover;
  filter: sepia(0.2) contrast(0.92);
}
.file-photo figcaption {
  font-size: 0.625rem;
  text-align: center;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.file-fields h2 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 5px;
  line-height: 1.8;
}
.file-fields dl {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 17px 16px;
  font-size: 0.6875rem;
  margin: 22px 0 0;
}
.file-fields dt {
  font-size: 0.625rem;
  color: #575846;
}
.file-fields dd {
  margin: 0;
}
.file-fields dd button {
  padding: 0;
  color: inherit;
  min-height: 30px;
  min-width: 44px;
  margin-top: -7px;
  margin-bottom: -7px;
}
.file-fields dd button:hover {
  color: #11140c;
  text-decoration: underline;
}
.file-fields dd.unknown {
  color: #733e2d;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.redaction {
  position: relative;
  background: #24241c;
  color: #24241c;
  min-width: 80px;
  min-height: 26px;
  transform: rotate(-1.5deg);
  vertical-align: middle;
  padding: 0 7px;
  display: inline-grid;
  place-items: center;
}
.redaction span {
  opacity: 0;
}
.redaction.inspecting {
  color: #bbb592;
}
.redaction.inspecting span {
  opacity: 1;
  font-size: 0.75rem;
}
.redaction.small-redaction {
  min-width: 55px;
  min-height: 16px;
}
.file-fields .redaction:focus-visible {
  outline-color: #333e25;
}
.file-lines {
  border-top: 1px solid #858067;
  padding-top: 17px;
  font-size: 0.625rem;
  line-height: 2.4;
  letter-spacing: 0.04em;
}
.ink-bar {
  display: inline-block;
  background: #2b2c21;
  vertical-align: middle;
  transform: rotate(-0.6deg);
  width: 150px;
  height: 12px;
  margin-left: 10px;
}
.short-bar {
  width: 110px;
  transform: rotate(0.4deg);
}
.tiny-bar {
  width: 25px;
}
.file-annotation {
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  color: #514d34;
  transform: rotate(-5deg);
  margin: 17px 0 19px 39%;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.paper-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #858067;
  padding-top: 15px;
  font-size: 0.5625rem;
  color: #64634f;
}
.folder-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 13%;
  background: linear-gradient(110deg, #9b8860, #b19d70 75%, #a28c5c);
  color: #343729;
  transform-origin: left center;
  backface-visibility: hidden;
  box-shadow:
    inset 3px 0 5px #64502c66,
    2px 3px 9px #0006;
  transition: filter 0.3s;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.folder-cover:hover {
  filter: brightness(1.06);
  color: #282d1f;
}
.folder-cover strong {
  font: bold clamp(5rem, 10vw, 8rem)/1 var(--serif);
  letter-spacing: -0.07em;
  margin: 20px 0 25px;
}
.cover-stamp {
  border: 2px solid #6b523a;
  color: #6b523a;
  transform: rotate(-10deg);
  padding: 8px;
  position: absolute;
  bottom: 18%;
  right: 9%;
  font-size: 0.65rem;
}
.folder-open-label {
  position: absolute;
  bottom: 8%;
  left: 13%;
  font-size: 0.625rem;
}
.file-margin-note {
  position: absolute;
  right: 6%;
  bottom: 16%;
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #9da18b;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.file-margin-note span {
  color: #c4b79a;
}
/* Presence / locked object / end */
.watchers {
  padding: 150px 24px 170px;
  text-align: center;
  background: #0d110b;
  border-top: 1px solid #353d2a;
  min-height: 70svh;
}
.watcher-sigil {
  font-size: 2rem;
  letter-spacing: -0.1em;
  color: #687b5d;
  margin: 0 0 35px;
}
.watchers > p {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.12em;
  line-height: 2;
}
.watchers > #watcher-ordinal {
  font-size: 0.6875rem;
  color: #8d9c7e;
  margin-top: 8px;
}
.status-access {
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  color: #8b9b7c;
  margin-top: 39px;
  padding: 16px;
  min-height: 44px;
}
.status-access:hover {
  color: #d8e1c9;
}
#unlocked-records {
  margin: 45px auto 0;
  max-width: 600px;
  border-top: 1px solid #374230;
  padding-top: 24px;
}
#unlock-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
#unlock-list button {
  font-size: 0.6875rem;
  border: 1px solid #546547;
  padding: 14px 18px;
}
.asset-scene {
  height: 140svh;
  background: #080b07;
}
.asset-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1e241711, transparent 65%);
  text-align: center;
  padding: 80px 30px 120px;
}
.asset-pin > .eyebrow {
  font-size: 0.625rem;
  color: #77896a;
  letter-spacing: 0.2em;
  margin-bottom: 38px;
}
.asset-seal {
  width: 165px;
  height: 165px;
  border: 1px solid #3b442844;
  border-radius: 50%;
  box-shadow:
    inset 4px 0 12px #d6c79605,
    3px 0 4px #0a0d05;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 34px;
  transform: rotateY(-25deg);
}
.asset-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid #2c341e55;
  border-radius: 50%;
}
.asset-seal span {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: #7a805145;
}
.asset-pin h2 {
  font: clamp(3rem, 6vw, 6rem)/1 var(--serif);
  letter-spacing: -0.04em;
  color: #c0c3aa;
}
.access-denied {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin: 27px 0 23px;
  color: #ab9f78;
}
.asset-condition {
  font-size: 0.625rem;
  color: #839074;
  letter-spacing: 0.07em;
  line-height: 2;
}
.asset-condition span {
  color: #b8bf9e;
}
.asset-index {
  position: absolute;
  bottom: 16%;
  font-size: 0.625rem;
  color: #747e67;
  letter-spacing: 0.1em;
}
.recovered-visual {
  height: 210px;
  max-width: 260px;
  object-fit: contain;
  margin: 25px auto;
}
.asset-contract {
  overflow-wrap: anywhere;
  max-width: min(80vw, 600px);
  font-size: 0.75rem;
  display: block;
  margin: 25px auto;
}
.asset-link {
  display: inline-block;
  padding: 12px;
  margin: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}
.end-scene {
  min-height: 125svh;
  padding: 29vh 12% 140px;
  background: #070a06;
  position: relative;
  color: #899c7c;
}
.end-terminal {
  font-size: 0.75rem;
  line-height: 2;
}
.end-terminal > p:first-child {
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  color: #b1c2a0;
}
.end-terminal dl {
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 8px 20px;
  margin: 35px 0 55px;
  letter-spacing: 0.025em;
}
.end-terminal dd {
  margin: 0;
}
.end-terminal dt {
  color: #6d8062;
}
.end-whisper {
  font: 1rem var(--serif);
  color: #8c9980;
  margin-bottom: 32px;
}
.end-controls {
  display: flex;
  gap: 35px;
  font-size: 0.625rem;
  margin-top: 80px;
  color: #869577;
}
.end-controls button,
.end-controls a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.fiction-note {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 100px;
  font-size: 0.5625rem;
  color: #708263;
  line-height: 1.8;
  letter-spacing: 0.035em;
}
/* Native dialogs retain modal focus, keyboard dismissal, and return-focus behavior. */
.archive-dialog {
  width: min(880px, calc(100vw - 70px));
  padding: 0;
  border: 1px solid #5b674a;
  color: var(--phosphor);
  background: #10170d;
  max-height: calc(100svh - 80px);
  overflow: auto;
  box-shadow:
    0 35px 150px #000e,
    0 0 0 5px #10150e;
}
.archive-dialog::backdrop {
  background: #020502e8;
  backdrop-filter: blur(4px);
}
.dialog-header {
  padding: 24px 28px;
  border-bottom: 1px solid #38482b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dialog-header .eyebrow {
  font-size: 0.625rem;
  color: #879b73;
}
.dialog-header h2 {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.dialog-header button {
  font-size: 0.6875rem;
  padding: 12px;
  min-height: 44px;
}
.video-screen {
  position: relative;
  aspect-ratio: 16/9;
  background: #040603;
  overflow: hidden;
}
.video-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-screen::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 4px, #b4d39408 5px);
  transform: translateY(var(--track, 0px));
  opacity: var(--track-opacity, 0.1);
}
#tape-unavailable {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(ellipse, #1a2311, #070b05);
  text-align: center;
  padding: 25px;
  gap: 22px;
}
.signal-symbol {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #62734d;
}
#tape-message {
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  letter-spacing: 0.17em;
}
#tape-detail {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: #7a8d65;
}
.video-osd {
  position: absolute;
  top: 20px;
  left: 22px;
  right: 22px;
  display: flex;
  gap: 18px;
  font-size: 0.75rem;
  pointer-events: none;
}
.video-osd time {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}
.player-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 27px;
  border-top: 1px solid #3f4e31;
  font-size: 0.6875rem;
}
.player-controls button {
  min-height: 44px;
}
.player-controls label {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.625rem;
}
.player-controls input {
  width: 90px;
  accent-color: #a6b48d;
}
.player-footnote {
  font-size: 0.625rem;
  line-height: 1.8;
  text-align: center;
  color: #718762;
  padding: 0 20px 20px;
}
.command-dialog {
  width: min(720px, calc(100vw - 70px));
  padding: 0 0 30px;
}
.command-dialog .dialog-header h2 {
  font-size: 0.875rem;
}
.command-greeting {
  font-size: 0.75rem;
  padding: 30px 30px 0;
  letter-spacing: 0.05em;
  color: #96ac83;
}
.command-history {
  padding: 25px 30px;
  max-height: 240px;
  overflow: auto;
  font-size: 0.75rem;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.command-history p {
  margin-bottom: 10px;
}
.command-history button {
  border: 1px solid #63794e;
  padding: 8px 15px;
  font-size: 0.6875rem;
  margin-top: 9px;
  display: block;
}
#command-form {
  padding: 0 30px;
}
#command-form label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}
.command-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #647b4e;
  margin-top: 14px;
  gap: 15px;
}
.command-input-row input {
  min-width: 0;
  width: 100%;
  border: 0;
  color: #c5d7b3;
  background: transparent;
  padding: 12px 0;
  caret-color: #c4dba7;
  text-transform: uppercase;
  border-radius: 0;
}
.command-input-row button {
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
}
.command-hint {
  font-size: 0.625rem;
  color: #7f966c;
  padding: 21px 30px 0;
  line-height: 1.8;
}
.record-dialog {
  width: min(670px, calc(100vw - 70px));
  background: var(--paper);
  color: var(--ink);
  border-color: #968560;
  padding-bottom: 35px;
  box-shadow: 0 35px 150px #000e;
}
.record-dialog .dialog-header {
  border-color: #8a8264;
  font-size: 0.625rem;
}
.record-dialog h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  padding: 30px 35px 20px;
  letter-spacing: -0.05em;
}
.record-dialog #record-body {
  padding: 10px 35px;
  font-size: 0.8rem;
  line-height: 2;
  white-space: pre-wrap;
}
.record-dialog #record-body img,
.record-dialog #record-body video {
  max-height: 420px;
  max-width: 100%;
  margin: 20px auto;
}
.record-dialog #record-body audio {
  width: 100%;
  margin: 20px 0;
}
.record-dialog #record-modified {
  padding: 30px 35px 0;
  font-size: 0.625rem;
  color: #615f48;
}
.record-dialog button:hover {
  color: #000;
}
.record-dialog button:focus-visible {
  outline-color: #2e3826;
}
.no-script {
  padding: 20vh 10%;
  line-height: 2;
}
@media (min-width: 1800px) {
  .hero-copy {
    left: 11%;
  }
  .hero-bottom {
    left: 11%;
    right: 11%;
  }
  .cabinet {
    width: 85%;
    max-width: 1200px;
  }
  .folder {
    width: 850px;
  }
  .file-grid {
    grid-template-columns: 175px 1fr;
  }
  .file-paper {
    padding: 35px 45px;
  }
  .file-fields dl {
    font-size: 0.875rem;
  }
  .file-lines {
    font-size: 0.8rem;
  }
  .file-fields h2 {
    font-size: 1.1rem;
  }
  .scene-pin {
    min-height: 800px;
  }
}
@media (max-width: 1050px) {
  .system-date,
  .brand-sub {
    display: none;
  }
  .system-header {
    top: 32px;
  }
  .header-right {
    gap: 16px;
  }
  .archive-nav {
    gap: 14px;
  }
  .hero-copy {
    left: 8%;
    bottom: 25%;
  }
  .hero-copy h1 {
    font-size: 8rem;
  }
  .hero-bottom {
    bottom: 120px;
    left: 8%;
    right: 8%;
  }
  .observation {
    display: none;
  }
  .enter-link {
    padding-left: 0;
  }
  .cabinet {
    width: 100%;
  }
  .tapes-pin {
    padding: 11vh 6%;
  }
  .tape-list {
    gap: 8px;
  }
  .tape {
    padding: 17px 8px 10px;
    min-height: 210px;
  }
  .tape-label {
    padding: 12px 6px;
  }
  .tape-date {
    font-size: 0.5625rem;
  }
  .folder {
    width: 76vw;
  }
  .file-section-label {
    top: 8%;
    left: 9%;
    display: flex;
    justify-content: space-between;
    width: 82%;
  }
  .file-section-label > p:last-child {
    font-size: 0.5625rem;
    text-align: right;
  }
  .file-margin-note {
    right: 4%;
    font-size: 0.5rem;
  }
  .archive-footnote {
    max-width: 100%;
  }
  .balance-feed {
    column-gap: 10px;
  }
  .balance-feed > span:first-child {
    font-size: 0.5625rem;
  }
  .balance-feed strong {
    font-size: 0.75rem;
  }
  .terminal-body {
    left: 9%;
    right: 9%;
  }
  .asset-index {
    bottom: 17%;
  }
}
@media (max-width: 700px) {
  :root {
    --frame: 7px;
  }
  .crt-frame {
    border-radius: 5% / 3%;
  }
  .crt-glass {
    border-radius: 4% / 2.5%;
    box-shadow: inset 0 0 32px 8px #0008;
  }
  .crt-glass canvas {
    opacity: 0.13;
  }
  .system-header {
    top: 25px;
    left: 7%;
    right: 7%;
    align-items: start;
    gap: 10px;
  }
  .brand-mark {
    width: 29px;
    height: 32px;
    font-size: 1.9rem;
  }
  .system-brand {
    font-size: 0.625rem;
    gap: 9px;
    letter-spacing: 0.08em;
    align-items: center;
  }
  .header-right {
    flex-direction: column;
    align-items: end;
    gap: 0;
    font-size: 0.625rem;
  }
  .header-right button {
    padding: 8px 0 8px 8px;
    border-left: 0;
    font-size: 0.5625rem;
    min-height: 36px;
  }
  .archive-nav {
    left: 7%;
    right: 7%;
    bottom: 17px;
    gap: 0;
    justify-content: space-between;
    padding: 4px 8px;
    margin-left: -8px;
    font-size: 0.625rem;
  }
  .archive-nav a {
    min-height: 38px;
    gap: 5px;
  }
  .archive-nav a span {
    font-size: 0.5625rem;
  }
  .balance-feed {
    right: 7%;
    left: 7%;
    bottom: 63px;
    justify-content: space-between;
    padding: 7px 0;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #66754f33;
    background: #080c07c9;
  }
  .balance-feed > span:first-child {
    font-size: 0.5625rem;
  }
  .balance-feed strong {
    font-size: 0.75rem;
  }
  .balance-feed #balance-delta {
    bottom: 28px;
  }
  .tracking-progress {
    right: 10px;
    width: 1px;
  }
  .scene-pin {
    min-height: 590px;
  }
  .office-scene {
    height: 230svh;
  }
  .hero-topline {
    top: 112px;
    left: 8%;
    right: 8%;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .hero-copy {
    left: 9%;
    bottom: 24%;
  }
  .hero-copy h1 {
    font-size: 6.6rem;
    margin: 20px 0 16px;
  }
  .hero-copy .eyebrow {
    font-size: 0.5rem;
    gap: 6px;
  }
  .hero-tagline {
    font-size: 0.7rem;
    line-height: 1.7;
    letter-spacing: 0.14em;
  }
  .hero-bottom {
    bottom: 119px;
    left: 9%;
    right: 9%;
    font-size: 0.5625rem;
  }
  .enter-link {
    font-size: 0.5625rem;
    gap: 18px;
  }
  .record-mark {
    font-size: 0.5rem;
    gap: 5px;
  }
  .office-shade {
    background: linear-gradient(
      180deg,
      #070a07a6 0,
      transparent 27%,
      #05080555 48%,
      #050805ed 95%
    );
  }
  .monitor-entry {
    font-size: 0.6875rem;
    gap: 8px;
  }
  .financial-scene {
    height: 380svh;
  }
  .terminal-pin {
    padding: 13vh 9%;
  }
  .terminal-top {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
    gap: 15px;
    line-height: 1.6;
  }
  .terminal-protocol {
    display: none;
  }
  .terminal-body {
    top: 31%;
    left: 9%;
    right: 9%;
  }
  .terminal-body > .eyebrow {
    font-size: 0.5rem;
    max-width: 230px;
    line-height: 1.8;
  }
  .terminal-body h2 {
    font-size: 0.6875rem;
    margin: 27px 0 20px;
  }
  .account-value {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    letter-spacing: -0.08em;
  }
  .terminal-rule {
    margin: 28px 0;
  }
  .terminal-line {
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
  .terminal-bottom {
    bottom: 22%;
    flex-direction: column;
    gap: 10px;
    font-size: 0.5rem;
  }
  .paper-transfer {
    left: 8%;
    right: 8%;
    font-size: 0.5625rem;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    height: 30%;
  }
  .tapes-scene {
    height: 145svh;
  }
  .tapes-pin {
    padding: 11vh 8% 115px;
    min-height: 720px;
  }
  .section-heading {
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .section-heading > .eyebrow {
    font-size: 0.5625rem;
  }
  .section-heading h2 {
    font-size: 2.7rem;
  }
  .small-note {
    font-size: 0.5rem;
    position: absolute;
    top: 17%;
    right: 8%;
    text-align: right;
    max-width: 120px;
  }
  .cabinet {
    margin: 40px auto 0;
    width: 100%;
  }
  .cabinet-header {
    font-size: 0.5rem;
    padding: 12px 13px;
  }
  .drawer-interior {
    padding: 23px 10px 0;
    border-left-width: 6px;
    border-right-width: 6px;
  }
  .tape-list {
    gap: 7px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 18px 4px 10px;
    margin-top: -18px;
    grid-template-columns: repeat(5, 106px);
    scrollbar-width: thin;
    scrollbar-color: #6c725b #1b2115;
  }
  .tape {
    min-height: 205px;
    scroll-snap-align: center;
    padding: 18px 7px 10px;
    transition: transform 0.2s;
  }
  .tape-number {
    font-size: 2rem;
  }
  .tape-label {
    min-height: 125px;
    gap: 9px;
    padding: 12px 6px;
  }
  .tape-date {
    font-size: 0.5625rem;
  }
  .tape-caption {
    font-size: 0.5625rem;
  }
  .tape-state {
    font-size: 0.5625rem;
    margin-top: 20px;
  }
  .drawer-front {
    height: 62px;
    padding: 0 13px;
  }
  .drawer-label {
    font-size: 0.625rem;
    padding: 6px 9px;
  }
  .drawer-handle {
    width: 70px;
    left: 74%;
    height: 17px;
  }
  .drawer-screw {
    font-size: 0.75rem;
  }
  .archive-footnote {
    flex-direction: column;
    gap: 10px;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    margin-top: 22px;
  }
  .personnel-scene {
    height: 170svh;
  }
  .personnel-pin {
    padding: 90px 7% 125px;
    min-height: 810px;
  }
  .file-section-label {
    top: 55px;
    left: 8%;
    width: 84%;
  }
  .file-section-label > .eyebrow {
    font-size: 0.5625rem;
  }
  .folder {
    width: 100%;
    margin-top: 50px;
    padding: 9px;
    transform: rotate(-1.3deg);
  }
  .folder-tab {
    top: -22px;
    font-size: 0.5rem;
    padding: 7px 11px;
  }
  .file-paper {
    padding: 19px 17px 20px;
  }
  .paper-heading {
    font-size: 0.5rem;
    gap: 5px;
    padding-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .stamp {
    font-size: 0.5rem;
    padding: 4px;
    border-width: 1px;
  }
  .file-grid {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    margin: 25px 0 23px;
  }
  .file-photo {
    padding: 4px 4px 10px;
    align-self: start;
  }
  .file-photo figcaption {
    font-size: 0.4375rem;
  }
  .file-fields h2 {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
  }
  .file-fields .redaction {
    min-width: 50px;
    min-height: 17px;
    margin-top: 5px;
  }
  .file-fields dl {
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 15px 0 0;
    font-size: 0.625rem;
  }
  .file-fields dt {
    font-size: 0.5rem;
    margin-top: 8px;
  }
  .file-fields dd {
    line-height: 1.6;
  }
  .file-fields dd button {
    min-height: 25px;
    min-width: 44px;
    margin-top: -4px;
    margin-bottom: -4px;
    text-align: left;
  }
  .file-fields dd .small-redaction {
    min-width: 40px;
    min-height: 12px;
    margin: 0;
    vertical-align: middle;
  }
  .file-lines {
    font-size: 0.5rem;
    letter-spacing: 0;
    line-height: 2.5;
    padding-top: 14px;
  }
  .ink-bar {
    width: 60px;
    height: 10px;
    margin-left: 4px;
  }
  .short-bar {
    width: 43px;
  }
  .tiny-bar {
    width: 13px;
  }
  .file-annotation {
    font-size: 1rem;
    margin: 25px 0 25px 10%;
    line-height: 1.5;
  }
  .paper-footer {
    font-size: 0.4375rem;
    gap: 5px;
  }
  .paper-footer > span:last-child {
    display: none;
  }
  .folder-cover {
    padding: 12%;
    font-size: 0.5625rem;
  }
  .folder-cover strong {
    font-size: 6rem;
  }
  .cover-stamp {
    font-size: 0.5rem;
    bottom: 21%;
    right: 8%;
  }
  .folder-open-label {
    font-size: 0.5625rem;
  }
  .file-margin-note {
    display: none;
  }
  .watchers {
    padding: 105px 35px 130px;
    min-height: 65svh;
  }
  .watchers > p {
    font-size: 0.625rem;
    letter-spacing: 0.055em;
  }
  .watchers > #watcher-ordinal {
    font-size: 0.5625rem;
  }
  .status-access {
    font-size: 0.5625rem;
    margin-top: 27px;
  }
  .asset-scene {
    height: 125svh;
  }
  .asset-pin {
    min-height: 660px;
    padding-bottom: 130px;
  }
  .asset-pin > .eyebrow {
    font-size: 0.5rem;
  }
  .asset-seal {
    height: 120px;
    width: 120px;
    margin-bottom: 34px;
  }
  .asset-pin h2 {
    font-size: 3.1rem;
  }
  .access-denied {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
  }
  .asset-condition {
    font-size: 0.5625rem;
    line-height: 2.1;
    max-width: 230px;
  }
  .asset-index {
    font-size: 0.5rem;
    bottom: 21%;
  }
  .end-scene {
    min-height: 120svh;
    padding: 26vh 10% 165px;
  }
  .end-terminal {
    font-size: 0.5625rem;
    line-height: 2;
  }
  .end-terminal > p:first-child {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
  .end-terminal dl {
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 29px 0 45px;
  }
  .end-terminal dd {
    margin-bottom: 15px;
    font-size: 0.6875rem;
  }
  .end-terminal dt {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }
  .end-whisper {
    font-size: 0.9rem;
  }
  .end-controls {
    gap: 20px;
    font-size: 0.5rem;
    margin-top: 55px;
    justify-content: space-between;
  }
  .fiction-note {
    bottom: 120px;
    left: 10%;
    right: 10%;
    font-size: 0.4375rem;
  }
  .boot-content {
    left: 10%;
    right: 8%;
    top: 28%;
    font-size: 0.6875rem;
    line-height: 2.3;
  }
  .boot-system {
    font-size: 0.5625rem;
    margin-bottom: 28px;
  }
  .boot-system span {
    padding-left: 12px;
  }
  .boot-corner {
    font-size: 0.4375rem;
    bottom: 8%;
    right: 10%;
  }
  .archive-dialog {
    width: calc(100vw - 34px);
    max-height: calc(100svh - 48px);
  }
  .dialog-header {
    padding: 16px;
    gap: 10px;
  }
  .dialog-header .eyebrow {
    font-size: 0.5rem;
  }
  .dialog-header h2 {
    font-size: 0.9rem;
  }
  .dialog-header button {
    font-size: 0.5625rem;
    padding: 8px;
  }
  .video-screen {
    aspect-ratio: 4/3;
  }
  .video-osd {
    font-size: 0.5625rem;
    top: 15px;
    left: 15px;
    right: 15px;
  }
  .player-controls {
    flex-wrap: wrap;
    gap: 4px 15px;
    padding: 12px 18px;
  }
  .player-controls button {
    font-size: 0.5625rem;
  }
  .player-controls label {
    font-size: 0.5rem;
  }
  .player-controls input {
    width: 70px;
  }
  .player-controls #video-audio {
    margin-left: auto;
  }
  .player-footnote {
    font-size: 0.4375rem;
    padding: 5px 16px 18px;
  }
  .signal-symbol {
    font-size: 2rem;
  }
  #tape-message {
    font-size: 0.75rem;
  }
  #tape-detail {
    font-size: 0.5rem;
  }
  .command-greeting {
    padding: 25px 20px 0;
    font-size: 0.625rem;
  }
  .command-history {
    padding: 22px 20px;
    font-size: 0.625rem;
    max-height: 180px;
  }
  #command-form {
    padding: 0 20px;
  }
  #command-form label {
    font-size: 0.5625rem;
  }
  .command-input-row input {
    font-size: 1rem;
  }
  .command-hint {
    font-size: 0.5rem;
    padding: 20px 20px 0;
  }
  .record-dialog #record-body {
    padding: 10px 22px;
    font-size: 0.625rem;
  }
  .record-dialog h2 {
    padding: 25px 22px 15px;
    font-size: 1.6rem;
  }
  .record-dialog #record-modified {
    padding: 25px 22px 0;
    font-size: 0.5rem;
  }
}
@media (max-height: 650px) and (min-width: 701px) {
  .hero-copy {
    bottom: 23%;
  }
  .hero-copy h1 {
    font-size: 6.3rem;
  }
  .hero-tagline {
    font-size: 0.65rem;
  }
  .hero-topline {
    top: 110px;
  }
  .hero-bottom {
    bottom: 90px;
  }
  .scene-pin {
    min-height: 540px;
  }
  .tapes-pin {
    padding-top: 8vh;
  }
  .section-heading h2 {
    font-size: 2.6rem;
  }
  .cabinet {
    margin-top: 25px;
  }
  .tape {
    min-height: 175px;
  }
  .tape-label {
    min-height: 108px;
  }
  .tape-state {
    margin-top: 13px;
  }
  .archive-footnote {
    margin-top: 20px;
  }
  .folder {
    transform: rotate(-2deg) scale(0.78);
  }
  .asset-seal {
    width: 110px;
    height: 110px;
    margin: 15px 0;
  }
  .asset-pin > .eyebrow {
    margin-bottom: 15px;
  }
  .asset-pin h2 {
    font-size: 3rem;
  }
  .terminal-body {
    top: 25%;
  }
}
html[data-motion="still"] {
  scroll-behavior: auto;
}
html[data-motion="still"] *,
html[data-motion="still"] *::before,
html[data-motion="still"] *::after {
  animation: none !important;
  transition-duration: 0.01ms !important;
}
html[data-motion="still"] .crt-glass canvas,
html[data-motion="still"] .tracking-line {
  display: none;
}
html[data-motion="still"] .folder-cover {
  display: none;
}
html[data-motion="still"] .personnel-scene {
  height: auto;
}
html[data-motion="still"] .personnel-pin {
  position: relative;
}
html[data-motion="still"] .tape:hover {
  transform: none;
}
html.page-hidden *,
html.page-hidden *::before,
html.page-hidden *::after {
  animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* A gentle dissolve replaces abrupt removal even with spatial motion disabled. */
html[data-motion="still"] .boot-screen,
html[data-motion="still"] .boot-screen::backdrop {
  transition: opacity 1.2s ease !important;
}
/* Readability pass: subtle glass and full-size functional labels. */
.crt-glass canvas {
  opacity: 0.12;
  image-rendering: auto;
}
.scanlines {
  opacity: 0.07;
  animation: none;
}
.monitor-small {
  opacity: 0.85;
}
.tape[data-status="DAMAGED"] {
  opacity: 1;
}
.tape[data-status="DAMAGED"] .tape-label {
  background: #93947f;
}
.tape[data-status="DAMAGED"] .tape-state {
  color: #b1b99f;
}
.folder-tab {
  color: #12180d;
}
.stamp {
  color: #62442c;
  border-color: #62442c;
  background: #c9bd9b;
}
.archive-nav {
  font-size: 0.8125rem;
}
.archive-nav a {
  min-height: 44px;
}
.archive-nav a span {
  font-size: 0.6875rem;
}
.balance-feed > span:first-child {
  font-size: 0.6875rem;
}
.balance-feed strong {
  font-size: 0.875rem;
}
.system-brand {
  font-size: 0.875rem;
}
.brand-sub {
  font-size: 0.625rem;
}
.header-right button {
  font-size: 0.75rem;
}
.hero-topline {
  font-size: 0.6875rem;
}
.hero-copy .eyebrow {
  font-size: 0.75rem;
}
.hero-tagline {
  font-size: 1rem;
}
.hero-bottom {
  font-size: 0.75rem;
}
.enter-link {
  font-size: 0.75rem;
}
.record-mark {
  font-size: 0.75rem;
}
.terminal-top,
.terminal-bottom {
  font-size: 0.75rem;
}
.terminal-body > .eyebrow {
  font-size: 0.75rem;
}
.small-note,
.archive-footnote,
.cabinet-header {
  font-size: 0.75rem;
}
.tape-caption,
.tape-date,
.tape-state {
  font-size: 0.75rem;
}
.tape-label {
  min-height: 143px;
}
.tape {
  min-height: 235px;
}
.file-fields dl {
  font-size: 0.8125rem;
}
.file-fields dt {
  font-size: 0.6875rem;
}
.file-lines {
  font-size: 0.75rem;
}
.paper-heading {
  font-size: 0.75rem;
}
.paper-footer {
  font-size: 0.625rem;
}
.file-photo figcaption {
  font-size: 0.625rem;
}
.status-access,
.asset-condition,
.asset-pin > .eyebrow {
  font-size: 0.75rem;
}
.end-terminal {
  font-size: 0.8125rem;
}
.end-controls {
  font-size: 0.75rem;
}
.fiction-note {
  font-size: 0.6875rem;
}
.command-greeting,
.command-history {
  font-size: 0.875rem;
}
.command-hint,
#command-form label {
  font-size: 0.75rem;
}
.player-controls,
.player-controls label,
.player-controls button,
.player-footnote {
  font-size: 0.75rem;
}
.dialog-header button {
  font-size: 0.75rem;
}
.folder-cover {
  font-size: 0.875rem;
}
.folder-open-label {
  font-size: 0.75rem;
}
@media (max-width: 1050px) and (min-width: 701px) {
  .tape-date {
    font-size: 0.625rem;
  }
  .tape-state {
    font-size: 0.625rem;
  }
  .balance-feed > span:first-child {
    font-size: 0.625rem;
  }
  .balance-feed strong {
    font-size: 0.8125rem;
  }
  .archive-nav {
    gap: 10px;
    font-size: 0.75rem;
  }
  .archive-nav a span {
    display: none;
  }
  .file-fields dl {
    font-size: 0.75rem;
  }
}
@media (max-width: 700px) {
  .crt-glass canvas {
    opacity: 0.08;
  }
  .system-brand {
    font-size: 0.6875rem;
  }
  .header-right {
    font-size: 0.6875rem;
  }
  .header-right button {
    font-size: 0.625rem;
  }
  .archive-nav {
    font-size: 0.75rem;
    bottom: 14px;
  }
  .archive-nav a span {
    font-size: 0.625rem;
  }
  .archive-nav a {
    gap: 5px;
  }
  .balance-feed {
    bottom: 64px;
  }
  .balance-feed > span:first-child {
    font-size: 0.6875rem;
  }
  .balance-feed strong {
    font-size: 0.8125rem;
  }
  .hero-topline {
    font-size: 0.625rem;
  }
  .hero-copy {
    bottom: 26%;
  }
  .hero-copy .eyebrow {
    font-size: 0.625rem;
  }
  .hero-tagline {
    font-size: 0.8rem;
  }
  .hero-bottom {
    bottom: 124px;
  }
  .enter-link {
    font-size: 0.6875rem;
    gap: 15px;
  }
  .record-mark {
    font-size: 0.5625rem;
  }
  .terminal-top {
    font-size: 0.625rem;
  }
  .terminal-body > .eyebrow {
    font-size: 0.625rem;
  }
  .terminal-bottom {
    font-size: 0.625rem;
    bottom: 23%;
  }
  .tapes-pin {
    min-height: 770px;
  }
  .section-heading > .eyebrow {
    font-size: 0.6875rem;
  }
  .small-note {
    font-size: 0.625rem;
    line-height: 1.8;
    max-width: 120px;
    top: 16%;
  }
  .section-heading h2 {
    font-size: 2.6rem;
    max-width: 200px;
  }
  .cabinet-header {
    font-size: 0.5625rem;
  }
  .tape-caption,
  .tape-state {
    font-size: 0.6875rem;
  }
  .tape-date {
    font-size: 0.5625rem;
  }
  .tape-list {
    grid-template-columns: repeat(5, 112px);
  }
  .tape-label {
    min-height: 131px;
  }
  .tape {
    min-height: 214px;
  }
  .archive-footnote {
    font-size: 0.625rem;
    line-height: 1.6;
  }
  .file-section-label > .eyebrow {
    font-size: 0.6875rem;
  }
  .folder-tab {
    font-size: 0.625rem;
  }
  .file-fields dl {
    font-size: 0.6875rem;
    gap: 4px;
  }
  .file-fields dt {
    font-size: 0.5625rem;
  }
  .file-fields h2 {
    font-size: 0.8125rem;
  }
  .paper-heading {
    font-size: 0.625rem;
  }
  .file-lines {
    font-size: 0.5625rem;
  }
  .paper-footer {
    font-size: 0.5rem;
  }
  .file-photo figcaption {
    font-size: 0.5rem;
  }
  .folder-cover {
    font-size: 0.6875rem;
  }
  .folder-open-label {
    font-size: 0.6875rem;
  }
  .watchers > p {
    font-size: 0.75rem;
  }
  .watchers > #watcher-ordinal {
    font-size: 0.6875rem;
  }
  .status-access {
    font-size: 0.6875rem;
  }
  .asset-pin > .eyebrow {
    font-size: 0.625rem;
  }
  .asset-condition {
    font-size: 0.6875rem;
    max-width: 270px;
  }
  .access-denied {
    font-size: 0.75rem;
  }
  .end-terminal > p:first-child {
    font-size: 0.8125rem;
  }
  .end-terminal dt {
    font-size: 0.6875rem;
  }
  .end-terminal dd {
    font-size: 0.8125rem;
  }
  .end-controls {
    font-size: 0.625rem;
    gap: 15px;
  }
  .fiction-note {
    font-size: 0.5625rem;
  }
  .command-greeting,
  .command-history {
    font-size: 0.75rem;
  }
  .command-hint,
  #command-form label {
    font-size: 0.6875rem;
  }
  .player-controls label,
  .player-controls button {
    font-size: 0.625rem;
  }
  .player-footnote {
    font-size: 0.5625rem;
  }
  .dialog-header button {
    font-size: 0.6875rem;
  }
  .record-dialog #record-body {
    font-size: 0.75rem;
  }
  .record-dialog #record-modified {
    font-size: 0.625rem;
  }
}
@media (max-width: 380px) {
  .brand-mark {
    display: none;
  }
  .system-brand {
    max-width: 105px;
    line-height: 1.5;
  }
  .archive-nav {
    font-size: 0.6875rem;
  }
  .archive-nav a span {
    font-size: 0.5625rem;
  }
  .small-note {
    display: none;
  }
  .file-grid {
    grid-template-columns: 75px 1fr;
    gap: 11px;
  }
  .paper-heading {
    font-size: 0.5625rem;
  }
  .stamp {
    font-size: 0.4375rem;
  }
  .player-controls label {
    width: 100%;
    justify-content: space-between;
  }
  .player-controls input {
    width: 135px;
  }
}
img {
  height: auto;
}
.office-world > img {
  height: 100%;
}
.archive-nav,
.balance-feed {
  background: #090b08;
}
.archive-nav a span {
  color: #a4ad94;
}
.folder-tab {
  color: #070c04;
}
.boot-screen::after,
.archive-dialog::after {
  content: "";
  position: fixed;
  inset: var(--frame);
  pointer-events: none;
  border-radius: 3.2% / 4.7%;
  box-shadow: inset 0 0 65px 20px #0008;
  opacity: 0.6;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    #00000012 4px
  );
  z-index: 100;
}
.boot-screen::after {
  border: 1px solid #85906e10;
}
.boot-content,
.boot-corner {
  z-index: 1;
}
.boot-screen::after {
  z-index: 0;
}
.record-dialog::after {
  opacity: 0.3;
}
.video-screen video {
  height: 100%;
}
#sighting img {
  height: 94%;
}
.asset-pin .recovered-visual {
  height: 210px;
}
@media (max-width: 700px) {
  .hero-copy {
    bottom: 23%;
  }
  .small-note {
    display: none;
  }
  .section-heading h2 {
    max-width: none;
  }
  .file-photo img {
    height: auto;
    aspect-ratio: 4/4.7;
    object-fit: cover;
  }
  .boot-screen::after,
  .archive-dialog::after {
    border-radius: 4% / 2.5%;
    box-shadow: inset 0 0 32px 8px #0008;
  }
}
.file-annotation {
  background: #c9bd9b;
}
@media (max-width: 700px) and (max-height: 650px) {
  .hero-copy {
    bottom: 31%;
  }
  .hero-copy h1 {
    font-size: 5.1rem;
    margin: 15px 0;
  }
  .hero-tagline {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
  }
  .hero-bottom {
    bottom: 124px;
  }
  .hero-topline {
    top: 104px;
  }
}
.player-timeline {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 28px 5px;
  font-size: 0.6875rem;
}
.player-timeline input {
  min-width: 0;
  flex: 1;
  accent-color: #a6b48d;
  height: 24px;
}
.player-timeline button {
  font-size: 0.625rem;
  min-height: 44px;
}
.player-timeline input:disabled {
  opacity: 0.3;
}
.asset-scene:has(.is-recovered) {
  height: auto;
}
.asset-pin.is-recovered {
  position: relative;
  height: auto;
  min-height: 100svh;
  padding: 130px 8% 170px;
}
.asset-pin.is-recovered h2 {
  font: clamp(1rem, 2.3vw, 2rem)/1.5 var(--mono);
  max-width: 740px;
  letter-spacing: 0.08em;
}
.is-recovered .asset-index {
  position: static;
  margin-top: 45px;
}
@media (max-width: 700px) {
  .player-timeline {
    padding: 15px 18px 5px;
    gap: 10px;
    font-size: 0.5625rem;
  }
  .player-timeline button {
    font-size: 0.5rem;
  }
  .asset-pin.is-recovered {
    padding: 95px 8% 160px;
  }
}
@media (max-width: 700px) and (max-height: 650px) {
  .hero-copy .eyebrow {
    position: absolute;
    top: -142px;
    left: 0;
    white-space: nowrap;
  }
}

/* Bob's public channel: the terminal opens a line to the outside world. */
.signal-scene { height: 165svh; background: #10130e; }
.signal-pin { padding: 7vh 9% 110px; min-height: 850px; display: flex; flex-direction: column; justify-content: center; }
.signal-topline, .signal-bottomline { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #a2ad91; font-size: .75rem; letter-spacing: .09em; line-height: 1.6; }
.signal-topline { padding-bottom: 18px; border-bottom: 1px solid #58634766; }
.signal-layout { display: grid; grid-template-columns: 1.25fr 1fr; align-items: center; gap: 7%; margin: 32px 0; }
.signal-copy { min-width: 0; position: relative; }
.signal-copy > .eyebrow { color: var(--amber); margin-bottom: 26px; }
.signal-copy h2 { font: clamp(2.7rem, 5.2vw, 5.8rem)/1.04 var(--serif); letter-spacing: -.045em; color: #d5d3bc; }
.signal-copy h2 em { display: inline-block; font-weight: normal; font-size: .72em; color: #aebc97; }
.signal-note { color: #a2ad91; font-size: .8125rem; line-height: 1.9; letter-spacing: .07em; margin-top: 28px; }
.signal-frequency { display: block; margin-top: 32px; color: #89957b; font-size: .875rem; letter-spacing: .36em; }
.signal-profile { display: block; width: 100%; max-width: 450px; justify-self: end; background: #141a11; border: 1px solid #65734d; color: #d4ddc5; box-shadow: 12px 12px 0 #080b0780; transition: border-color .25s, box-shadow .25s; }
.signal-profile:hover { border-color: #b7caa5; box-shadow: 12px 12px 0 #080b0780, 0 0 30px #87996512; }
.signal-profile-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 21px; font-size: .75rem; letter-spacing: .08em; border-bottom: 1px solid #65734d88; }
.signal-portrait { position: relative; overflow: hidden; margin: 18px 18px 0; background: #090b08; aspect-ratio: 1.2; }
.signal-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: grayscale(.5) sepia(.18); opacity: .87; transition: opacity .35s; }
.signal-profile:hover .signal-portrait img { opacity: 1; }
.signal-image-label { position: absolute; bottom: 12px; left: 12px; background: #10150ed9; padding: 6px 8px; color: #c5d4b3; font-size: .6875rem; letter-spacing: .1em; }
.signal-crosshair { position: absolute; inset: 12px; border: 1px solid #bdc8a82b; pointer-events: none; }
.signal-identity { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin: 22px 22px 12px; }
.signal-identity strong { font: 2rem/1 var(--serif); letter-spacing: -.025em; }
.signal-identity > span { font-size: .875rem; color: #b4c19f; }
.signal-motto { margin: 0 22px 22px; font-size: .75rem; letter-spacing: .04em; line-height: 1.8; }
.signal-connect { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 18px 22px; border-top: 1px solid #65734d; font-size: .8125rem; letter-spacing: .08em; background: #b7caa5; color: #11180c; transition: background .25s; }
.signal-connect > span:last-child { font-size: 1.3rem; }
.signal-profile:hover .signal-connect { background: #d4e1c0; }
.signal-bottomline { padding-top: 18px; border-top: 1px solid #58634766; }
.signal-bottomline > span:last-child { white-space: nowrap; }
@media (max-width: 1050px) { .signal-pin { padding-left: 7%; padding-right: 7%; } .signal-layout { gap: 5%; } .signal-identity { margin-left: 18px; margin-right: 18px; } }
@media (max-width: 700px) {
  .signal-scene { height: auto; }
  .signal-pin { position: relative; height: auto; min-height: 0; padding: 80px 9% 150px; }
  .signal-topline, .signal-bottomline { font-size: .6875rem; gap: 14px; flex-wrap: wrap; }
  .signal-topline > span:last-child { display: none; }
  .signal-layout { grid-template-columns: 1fr; gap: 38px; margin: 32px 0; }
  .signal-copy h2 { font-size: clamp(2.5rem, 10.8vw, 4.5rem); }
  .signal-copy h2 em { font-size: .69em; }
  .signal-copy > .eyebrow { font-size: .75rem; margin-bottom: 18px; }
  .signal-note { font-size: .75rem; margin-top: 20px; }
  .signal-frequency { position: absolute; right: 0; bottom: 0; font-size: .6875rem; letter-spacing: .12em; }
  .signal-profile { max-width: none; transform: none !important; box-shadow: 7px 7px 0 #080b0780; }
  .signal-profile-bar { font-size: .6875rem; padding: 14px 16px; }
  .signal-portrait { margin: 13px 13px 0; aspect-ratio: 1.12; }
  .signal-identity > span { font-size: .8125rem; }
  .signal-motto { font-size: .6875rem; margin-left: 18px; margin-right: 18px; }
  .signal-connect { padding: 16px 18px; font-size: .75rem; }
  .signal-bottomline { display: grid; gap: 14px; overflow-wrap: anywhere; }
}
@media (max-height: 750px) and (min-width: 701px) {
  .signal-pin { min-height: 680px; padding-top: 45px; }
  .signal-layout { margin: 20px 0; }
  .signal-profile { max-width: 345px; }
  .signal-portrait { aspect-ratio: 1.55; }
  .signal-copy h2 { font-size: 3.6rem; }
}
