@font-face {
  font-family: "Natural Mono";
  src: url("../Fonts/NaturalMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Natural Mono";
  src: url("../Fonts/NaturalMono-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Michroma";
  src: url("../Fonts/Michroma-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #0b0d0f;
  --bg-2: #121517;
  --bone: #ece5d8;
  --bone-soft: rgba(236, 229, 216, 0.62);
  --bone-faint: rgba(236, 229, 216, 0.22);
  --text: #e7dfd2;
  --muted: #a9a395;
  --accent: #ff8a2a;
  --font-ui: "Michroma", "Segoe UI", sans-serif;
  --font-mono: "Michroma", "Segoe UI", sans-serif;
  --frame-width: min(1760px, calc(100vw - 72px));
  --panel-width: 40vw;
  --copy-column-width: 38ch;
  --column-text-drop: 26px;
  --site-scale-y: 0.88;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #090b0d 0%, #101315 100%);
  color: var(--text);
  font-family: var(--font-ui);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

p,
label,
input,
textarea,
.utility-list p,
.site-nav button,
.action-link,
.brand-word {
  letter-spacing: 0.025em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  color: inherit;
}

.site-shell {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  flex: 0 0 auto;
  transform: scaleY(var(--site-scale-y));
  transform-origin: center center;
}

.ghost-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  transform: scaleY(var(--site-scale-y));
  transform-origin: center center;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.ghost-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ghost-splash-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.ghost-splash-copy {
  position: absolute;
  left: clamp(22px, 2.2vw, 42px);
  bottom: clamp(20px, 2.4vw, 44px);
  display: grid;
  gap: 6px;
  max-width: min(42ch, 38vw);
  color: #f7f3ec;
  font-family: var(--font-ui);
  font-size: clamp(12px, calc(1.2vw - 2px), 16px);
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: none;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 720ms ease 220ms, transform 720ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
}

.ghost-splash-copy-title {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--accent);
}

.ghost-splash-copy-strong {
  font-weight: 700;
}

.ghost-splash-copy p {
  margin: 0;
}

.ghost-splash-enter {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 720ms ease 220ms, transform 720ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
}

.ghost-splash-enter::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ghost-splash-enter.is-ready {
  animation: breathe 2.2s ease-in-out infinite;
}

.ghost-splash.is-ready .ghost-splash-copy,
.ghost-splash.is-ready .ghost-splash-enter {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ghost-splash-copy {
    left: 18px;
    bottom: 18px;
    max-width: 34ch;
    font-size: 9px;
  }

  .ghost-splash-enter {
    right: 18px;
    bottom: 18px;
  }
}

@keyframes breathe {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 1; }
}

@keyframes blackroomPulse {
  0%, 100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes riseInSoft {
  0% {
    opacity: 0;
    transform: translateY(42px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRightSoft {
  0% {
    opacity: 0;
    transform: translate(320px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes slideInLeftSoft {
  0% {
    opacity: 0;
    transform: translateX(-48px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInPage2GraphicLeft {
  0% {
    opacity: 0;
    transform: translateX(calc(-1cm - 72px)) scale(1.25);
  }
  100% {
    opacity: 1;
    transform: translateX(-1cm) scale(1.25);
  }
}

@keyframes riseInPage2Case {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInCarryCopySoft {
  0% {
    opacity: 0;
    transform: translateX(48px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes riseInCarryModuleCard {
  0% {
    opacity: 0;
    transform: translateY(clamp(140px, 18vh, 220px));
  }
  72% {
    opacity: 1;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInPage2TextRight {
  0% {
    opacity: 0;
    transform: translateX(36px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes materializeSoft {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - 2px + 1cm));
  width: var(--frame-width);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 10px;
  z-index: 20;
  background: rgba(11, 13, 15, 0.9);
  border-bottom: 0;
}

.brand {
  border: 0;
  background: transparent;
  padding: 0;
  width: 80px;
  height: 80px;
  margin-top: 10px;
  margin-left: -1.05cm;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
}

.brand-mask-shell {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.brand-mask-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  opacity: 0.68;
  transform: translateY(-14px) scale(0.9);
  transform-origin: center center;
}

.brand-word {
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-nav {
  position: absolute;
  left: calc(100% - (calc(clamp(42px, 4vw, 92px) - 0.6in) + min(52vw, 48ch)) + 1.28in - 0.9cm);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav button,
.header-cta,
.action-link {
  background: transparent;
  border: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
}

.site-nav button.is-active {
  color: var(--bone);
  font-weight: 700;
}

.stage {
  min-height: 100vh;
  padding-top: 78px;
  overflow: hidden;
}

.frame-shell {
  position: relative;
  width: var(--frame-width);
  height: calc(100vh - 112px);
  margin: 12px auto;
  border: 0;
  background: transparent;
  display: block;
  overflow: hidden;
}

.signal-screen {
  position: absolute;
  inset: 0;
  display: none;
  background: #000;
  z-index: 4;
  overflow: hidden;
}

.blackout-hero {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 3;
  background-color: #000;
  isolation: isolate;
  transform: translateX(-0.5cm);
}

.blackout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../page 1 matte ghost.png");
  background-repeat: no-repeat;
  background-size: min(78vw, 1040px) auto;
  background-position: calc(100% + 1in) calc(100% + 190px);
  opacity: 0.84;
  pointer-events: none;
}

.blackout-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.44) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  pointer-events: none;
}

.blackout-left {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(54vw, 980px);
  transform: translate(calc(8px + 1cm), -88px);
  z-index: 2;
}

.blackout-hero-image {
  position: absolute;
  left: clamp(-203px, -10.4vw, -90px);
  top: calc(50% - 40px);
  width: min(80.6vw, 1228px);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.blackout-copy {
  position: absolute;
  left: clamp(18px, 4vw, 88px);
  top: calc(50% + clamp(126px, 14vh, 210px) + 82px);
  width: min(52vw, 48ch);
  max-width: min(52vw, 48ch);
  display: grid;
  gap: 18px;
  opacity: 0;
  transform: translateY(42px);
}

.blackout-copy-body,
.blackout-copy-emphasis {
  margin: 0;
  text-transform: none;
  max-width: 100%;
}

.blackout-copy-body {
  color: var(--muted);
  font-size: clamp(11px, 1.08vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: justify;
}

.blackout-copy-body-normal {
  font-family: var(--font-ui);
  font-weight: 400;
  text-transform: none !important;
}

.blackout-copy-body-caps {
  font-family: "Michroma", var(--font-ui);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase !important;
}

.blackout-copy-emphasis {
  color: var(--text);
  font-size: clamp(16px, 1.48vw, 22px);
  line-height: 1.36;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-top: 1.1em;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
}

.blackout-copy-emphasis::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.blackout-case {
  position: absolute;
  right: clamp(452px, 33.55vw, 640px);
  top: calc(50% - 8px + 1cm);
  width: min(30vw, 500px);
  height: min(72vh, 760px);
  transform: translate(0, -50%);
  will-change: transform, opacity;
  z-index: 2;
}

.blackout-case-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(42px);
}

.blackout-capabilities {
  position: absolute;
  left: calc(100% - (calc(clamp(42px, 4vw, 92px) - 0.6in) + min(52vw, 48ch)) + 0.18in + 1cm);
  top: calc(50% - 142px - 2in + 76px + 0.55in + 100px);
  width: 520px;
  max-width: 520px;
  display: grid;
  height: min(53vh, 508px);
  align-content: start;
  gap: 10px;
  padding-left: 0;
  justify-items: start;
  text-align: left;
  z-index: 2;
}

.blackout-capability {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(236, 229, 216, 0.08);
  opacity: 0;
  transform: translateY(18px);
}

.blackout-capability:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blackout-capability-label,
.blackout-capability-text {
  margin: 0;
}

.blackout-capability-label {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1.14;
  letter-spacing: 0.055em;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 4px;
}

.blackout-capability-text {
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: 0.02em;
  max-width: none;
  text-align: justify;
}

.signal-screen-stack {
  width: 100%;
  height: 200%;
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-screen-horizontal,
.signal-screen-final {
  width: 100%;
  height: 50%;
}

.signal-screen-final {
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image: none;
  isolation: isolate;
}

.signal-screen-final::before,
.signal-screen-final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.signal-screen-final::before {
  background-image: url("../1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 92% auto;
}

.signal-screen-final::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.signal-screen-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 300%;
  height: 100%;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-screen-panel {
  width: 100%;
  height: 100%;
}

.signal-screen-panel-signal {
  background: linear-gradient(180deg, #e67d2a 0%, #d96f20 100%);
}

.signal-screen-panel-blank {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(360px, 1fr) minmax(320px, 0.92fr);
  grid-template-areas: "graphic case copy";
  align-items: start;
  gap: clamp(20px, 2.8vw, 56px);
  padding: 24px 48px;
  justify-content: stretch;
  position: relative;
}

.page2-graphic-stack {
  grid-area: graphic;
  display: grid;
  gap: 18px;
  justify-self: start;
  align-self: start;
  margin-top: 0.85in;
  transform: translate(calc(-1cm + 0.5cm + 0.45cm), 1.3in) scale(1.25);
  transform-origin: top left;
  width: fit-content;
}

.page2-hero-model {
  grid-area: case;
  justify-self: start;
  align-self: center;
  width: min(100%, 1200px);
  height: min(90vh, 980px);
  border: 0;
  background: transparent;
  display: block;
  opacity: 0;
  transform: translateY(0);
  order: 0;
  margin-left: calc(clamp(-110px, -6vw, -42px) + 0.92in + 1.5cm);
}

.page2-stop-noise {
  width: min(100%, 728px);
  height: auto;
  pointer-events: none;
  z-index: 5;
  transform: translate(calc(-84px - 1cm), calc(-18px - 1cm)) scale(1.72);
  transform-origin: top left;
}

.page2-comparison {
  width: min(100%, 728px);
  height: auto;
  display: block;
  pointer-events: none;
  margin-top: 24px;
  transform: translate(8px, -20px) scale(1.2);
  transform-origin: top left;
}

.page2-copy {
  grid-area: copy;
  justify-self: start;
  align-self: center;
  margin-top: -8px;
  margin-left: calc(clamp(-112px, -5.8vw, -44px) + 1cm);
  text-align: left;
  order: 0;
}

body.post-splash-signal:not(.post-splash-signal-step-2) .page2-hero-model {
  animation: riseInPage2Case 1180ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

body.post-splash-signal:not(.post-splash-signal-step-2) .page2-graphic-stack {
  opacity: 0;
  animation: slideInPage2GraphicLeft 1120ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}

body.post-splash-signal:not(.post-splash-signal-step-2) .page2-copy {
  opacity: 0;
  animation: slideInCarryCopySoft 1120ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

body.post-splash-signal:not(.post-splash-signal-step-2) .page2-subhead,
body.post-splash-signal:not(.post-splash-signal-step-2) .page2-pillar-label {
  opacity: 0;
  animation: materializeSoft 720ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

.page2-pillar-text {
  width: 100%;
  display: block;
  text-align: justify;
  text-align-last: auto;
  text-justify: inter-word;
  hyphens: auto;
}

.page2-copy {
  display: grid;
  gap: 16px;
  color: #0b0d0f;
  width: min(100%, 48ch);
  max-width: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page2-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 700;
  color: rgba(9, 11, 13, 0.7);
}

.page2-headline {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 74px);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page2-subhead {
  margin: 0;
  font-size: clamp(16px, 1.44vw, 22px);
  line-height: 1.36;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-transform: uppercase;
  color: #0b0d0f;
  width: 100%;
}

.page2-subhead-line {
  display: block;
  text-align: center;
}

.page2-subhead-line:first-child {
  white-space: nowrap;
}

.page2-title-rule {
  width: calc(100% - 192px);
  max-width: 100%;
  height: 2px;
  background: #ffffff;
  display: block;
  margin: 6px 0 10px;
  transform: none;
}

.page2-pillars {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  width: 100%;
}

.page2-pillar {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 0;
}

.page2-pillar:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page2-pillar-label {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
}

.page2-pillar-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: 0.04em;
  text-align: justify;
  color: #23170f;
}

@media (max-width: 1300px) {
  .signal-screen-panel-blank {
    grid-template-columns: minmax(200px, 0.78fr) minmax(320px, 1fr);
    grid-template-areas:
      "graphic case"
      "copy copy";
    align-items: start;
  }

  .page2-copy {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .signal-screen-panel-blank {
    grid-template-columns: 1fr;
    grid-template-areas:
      "graphic"
      "case"
      "copy";
    padding: 22px 18px 20px;
    gap: 22px;
  }

  .page2-stop-noise,
  .page2-comparison,
  .page2-hero-model,
  .page2-copy {
    justify-self: start;
    width: 100%;
    max-width: 100%;
  }

  .page2-graphic-stack {
    transform: none;
    animation: none;
    opacity: 1;
    width: auto;
    gap: 12px;
  }

  .page2-stop-noise {
    left: 0;
    transform: none;
  }

  .page2-comparison {
    margin-top: 18px;
    transform: none;
  }

  .page2-hero-model {
    margin-left: 0;
    animation: none;
    opacity: 1;
    transform: none;
    height: min(72vh, 760px);
  }

  .page2-copy {
    margin-top: 0;
    margin-left: 0;
    animation: none;
    opacity: 1;
    transform: none;
    align-self: start;
  }

  .page2-subhead,
  .page2-pillar-label,
  .page2-pillar-text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.signal-screen-panel-carry {
  position: relative;
  isolation: isolate;
  background-color: #090b0d;
  background-image: linear-gradient(180deg, rgba(6, 8, 10, 0.14) 0%, rgba(6, 8, 10, 0.24) 100%);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.carry-module-overlays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.carry-module-overlay {
  position: absolute;
  left: 0;
  top: calc(-2in + 2cm);
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 260ms ease;
}

.carry-module-overlay.is-active {
  opacity: 1;
}

.signal-screen-inner {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 38ch) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 110px);
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 44px 48px 36px;
}

.signal-screen-panel-carry .signal-screen-inner {
  grid-template-columns: minmax(280px, 38ch);
  justify-content: start;
}

.signal-screen-panel-carry .signal-screen-inner-carry {
  position: relative;
  z-index: 1;
  width: var(--frame-width);
  grid-template-columns: minmax(180px, 15vw) minmax(760px, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 120px);
  padding: 48px 56px 40px 10px;
}

.carry-module-nav {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(100%, 252px);
  padding-top: 18px;
  padding-bottom: 26px;
  padding-left: 32px;
  padding-right: 34px;
  isolation: isolate;
}

.carry-module-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: min(100%, 520px);
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 138, 42, 0.34) 0%,
    rgba(255, 138, 42, 0.24) 18%,
    rgba(255, 138, 42, 0.16) 42%,
    rgba(255, 138, 42, 0.08) 68%,
    rgba(255, 138, 42, 0.03) 86%,
    rgba(255, 138, 42, 0) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 187, 120, 0.2),
    0 0 28px rgba(255, 138, 42, 0.14);
  pointer-events: none;
  z-index: -1;
}

.carry-module-nav .panel-kicker {
  margin: 0 0 12px;
}

.carry-module-tab {
  position: relative;
  appearance: none;
  width: fit-content;
  min-height: 36px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.24;
  transition: color 180ms ease, opacity 180ms ease;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-48px);
}

.carry-module-tab:not(.is-active) {
  font-size: 16px;
}

.carry-module-tab:hover,
.carry-module-tab:focus-visible {
  color: rgba(255, 255, 255, 1);
  outline: none;
}

.carry-module-tab.is-active {
  color: var(--accent);
  font-weight: 700;
  font-size: 28px;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab {
  animation: slideInLeftSoft 1480ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab:nth-of-type(1) {
  animation-delay: 120ms;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab:nth-of-type(2) {
  animation-delay: 300ms;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab:nth-of-type(3) {
  animation-delay: 480ms;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab:nth-of-type(4) {
  animation-delay: 660ms;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-tab:nth-of-type(5) {
  animation-delay: 840ms;
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .carry-module-copy-shell {
  animation: slideInCarryCopySoft 1480ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.carry-module-copy-shell {
  width: 100%;
  min-height: 340px;
  justify-self: stretch;
  align-self: start;
  display: grid;
  padding: 10px 0 0 1.5in;
  contain: layout paint;
}

.carry-module-copy {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: clamp(28px, 3.4vw, 68px);
  row-gap: clamp(20px, 2.6vw, 36px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    visibility 0s linear 220ms;
}

.carry-module-copy.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    visibility 0s linear 0s;
}

.carry-module-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  opacity: 0;
  transform: translate3d(0, clamp(140px, 18vh, 220px), 0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.carry-module-copy.is-active .carry-module-card {
  animation: riseInCarryModuleCard 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carry-module-copy.is-active .carry-module-card:nth-child(2) {
  animation-delay: 70ms;
}

.carry-module-copy.is-active .carry-module-card:nth-child(3) {
  animation-delay: 140ms;
}

.carry-module-copy.is-active .carry-module-card:nth-child(4) {
  animation-delay: 210ms;
}

.carry-module-copy > .carry-module-card:nth-child(2n) {
  padding-left: clamp(60px, 4vw, 76px);
}

.carry-module-title,
.carry-module-utility,
.carry-module-specs p,
.carry-module-line {
  margin: 0;
}

.carry-module-title {
  color: var(--bone);
  font-family: var(--font-ui);
  font-size: clamp(20px, 1.72vw, 28px);
  letter-spacing: 0.11em;
  line-height: 1.18;
  text-transform: uppercase;
}

.carry-module-utility {
  max-width: 56ch;
  color: rgba(231, 223, 210, 0.96);
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.55;
}

.carry-module-specs {
  display: grid;
  gap: 10px;
}

.carry-module-specs p {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.5;
}

.carry-module-specs span {
  display: inline-block;
  min-width: 92px;
  margin-right: 10px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.carry-module-copy[data-module-panel] {
  row-gap: 2px;
}

.carry-module-copy[data-module-panel] .carry-module-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.28;
  margin-bottom: 6px;
}

.carry-module-copy[data-module-panel] .carry-module-line {
  color: var(--bone);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 400;
  text-shadow: none;
  filter: none;
}

.carry-module-copy[data-module-panel] .carry-module-meta-stack {
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.carry-module-copy[data-module-panel] .carry-module-meta-stack .carry-module-line {
  line-height: 1.22;
}

.carry-module-copy[data-module-panel] .carry-module-line-label {
  color: var(--accent);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.025em;
  text-shadow: none;
  filter: none;
  line-height: 1.22;
}

.carry-module-copy[data-module-panel] .carry-module-title + .carry-module-line {
  white-space: normal;
  max-width: 380px;
  color: white;
}

.signal-screen-panel-signal .signal-screen-inner {
  position: relative;
  grid-template-columns: minmax(320px, 42ch) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 140px);
}

.signal-screen-model-inline {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(136vw, 2480px);
  height: min(136vh, 1920px);
  min-height: 1260px;
  margin: 0;
  transform: translate(-50%, -50%);
  align-self: auto;
  z-index: 3;
  pointer-events: none;
}

.signal-screen-model-inline .panel-model-frame {
  pointer-events: auto;
}

.signal-screen-copy {
  display: grid;
  gap: 18px;
  align-self: center;
}

.signal-screen-copy-signal {
  gap: 20px;
}

.signal-screen-copy-signal h2 {
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 0.94;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin: 0;
}

.signal-subhead {
  color: rgba(9, 11, 13, 0.78);
  font-family: var(--font-ui);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.48;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 34ch;
}

.signal-logic-strip {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.signal-logic-step {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(9, 11, 13, 0.16);
}

.signal-logic-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.signal-logic-label,
.signal-logic-text,
.signal-bottom-line {
  margin: 0;
}

.signal-logic-label {
  color: rgba(9, 11, 13, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.signal-logic-text {
  color: rgba(9, 11, 13, 0.92);
  font-size: 15px;
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.signal-bottom-line {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.signal-map {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1;
  margin: 0 auto;
  align-self: center;
}

.signal-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-map-lines line {
  stroke: rgba(236, 229, 216, 0.18);
  stroke-width: 1.1;
}

.signal-map-core,
.signal-map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-map-core {
  left: 50%;
  top: 50%;
  min-width: 128px;
  padding: 16px 24px;
  background: rgba(255, 138, 42, 0.14);
  border: 1px solid rgba(255, 138, 42, 0.42);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 138, 42, 0.12);
}

.signal-map-node {
  padding: 10px 14px;
  background: rgba(236, 229, 216, 0.04);
  border: 1px solid rgba(236, 229, 216, 0.14);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.signal-map-node-comms { left: 19%; top: 24%; }
.signal-map-node-calendar { left: 50%; top: 14%; }
.signal-map-node-files { left: 79%; top: 24%; }
.signal-map-node-travel { left: 85%; top: 50%; }
.signal-map-node-payments { left: 79%; top: 78%; }
.signal-map-node-home { left: 50%; top: 86%; }
.signal-map-node-work { left: 21%; top: 78%; }
.signal-map-node-vehicle { left: 15%; top: 50%; }

.signal-screen-copy h2,
.signal-screen-copy .panel-text,
.signal-screen-copy .utility-list {
  max-width: 100%;
  width: 100%;
}

.signal-screen-model {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 380px;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.signal-screen-panel-model .signal-screen-inner {
  grid-template-columns: 1fr;
  justify-items: center;
}

.signal-screen-model-centered {
  width: min(86vw, 1180px);
  height: min(86vh, 980px);
  min-height: 620px;
}

.signal-screen-inner-final {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(280px, 38ch) minmax(260px, 0.72fr);
  align-items: start;
  width: 100%;
  min-height: 100%;
  padding-top: 34px;
  padding-left: calc(10px + 1.8cm);
}

.signal-screen-form {
  margin-top: 16px;
}

.signal-screen-copy-blackroom-visible {
  align-self: start;
  margin-top: 18px;
}

.signal-screen-final-logo-row {
  position: absolute;
  left: calc(10px + 1.8cm);
  bottom: 82px;
  display: grid;
  gap: 12px;
  max-width: min(68vw, 1100px);
  z-index: 1;
}

.signal-screen-final-logo-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: none;
}

.signal-screen-final-logo-rule {
  display: block;
  width: min(100%, 720px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.signal-screen-final-logo-strip {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.signal-screen-final-logo-link {
  display: inline-flex;
  align-items: flex-end;
  text-decoration: none;
}

.signal-screen-final-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(54vw, 840px);
  max-height: 72px;
  object-fit: contain;
  object-position: left bottom;
  opacity: 1;
}

.signal-screen-final-logo-ocad {
  filter: brightness(0) invert(1);
  transform: translateX(12px);
}

.signal-screen-final-logo-pcbway {
  transform: translateX(12px);
}

.blackroom-visible-line {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: var(--font-ui);
}

.blackroom-visible-form {
  margin: 0;
}

.blackroom-visible-label {
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: nowrap;
}

.blackroom-visible-code-shell {
  display: inline-flex;
  align-items: center;
}

.blackroom-visible-code-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blackroom-visible-code {
  width: 12ch;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.blackroom-visible-code::placeholder {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.blackroom-visible-code:focus {
  outline: none;
}

.blackroom-visible-code.is-invalid::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.signal-screen-final-mark {
  width: min(100%, 340px);
}

.signal-screen-graphic {
  width: min(100%, 520px);
  margin: 0 auto;
  align-self: center;
}

.signal-screen-graphic svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--bone);
  stroke-width: 3;
  opacity: 0.9;
}

.page-back,
.page-advance {
  position: absolute;
  bottom: 24px;
  z-index: 6;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  opacity: 0.92;
}

.page-advance.is-hidden {
  display: none;
}

.page-back {
  left: 28px;
}

.page-advance {
  right: 28px;
}

.page-back::after,
.page-advance::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.page-back::after {
  transform: rotate(-135deg);
}

.page-advance::after {
  transform: rotate(45deg);
}

.panel-kicker,
.panel-step {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

.panel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-top: 4px;
  gap: 18px;
  overflow: hidden;
  width: min(100%, 92%);
  margin: 0 auto;
}

.signal-screen-panel-join {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.signal-screen-panel-join::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e67d2a;
  z-index: 0;
  pointer-events: none;
}

.signal-screen-join-bg {
  position: absolute;
  inset: 0;
  background: url("../page4backgroundtrial.png") right center / 92% auto no-repeat;
  z-index: 1;
  pointer-events: none;
}

.signal-screen-panel-join .signal-screen-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(340px, 46ch);
  justify-content: start;
  align-items: start;
  width: min(100%, 1120px);
  padding-top: 0;
  margin-left: calc(10px - 0.2cm + 1cm);
}

.signal-screen-panel-join .panel-content {
  position: relative;
  z-index: 2;
}

.join-page-copy {
  display: grid;
  gap: 22px;
  width: min(38vw, 720px);
  color: #f7f3ec;
  text-align: left;
  margin-top: 34px;
}

.join-page-copy > h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 0.95;
  letter-spacing: 0.045em;
  color: #f7f3ec;
  max-width: 12ch;
}

.join-page-card,
.join-page-footer {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.join-page-card-secondary {
  background: transparent;
  margin-top: 1in;
}

.join-page-kicker {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join-page-card h3,
.join-page-footer h3 {
  margin: 0;
  color: #f7f3ec;
  font-family: "Michroma", var(--font-ui);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.06;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-page-body {
  margin: 0;
  color: rgba(247, 243, 236, 0.9);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.join-page-meta {
  display: grid;
  gap: 8px;
}

.join-page-meta p {
  margin: 0;
  color: rgba(247, 243, 236, 0.84);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.38;
  text-align: justify;
  text-align-last: auto;
  text-justify: inter-word;
}

.join-page-meta span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-screen-panel-join .join-page-kicker,
.signal-screen-panel-join .join-page-meta span {
  color: #000;
}

.join-page-actions {
  margin-top: 6px;
}

.join-page-actions .action-link {
  border-bottom: 0;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.join-page-actions .action-link::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 18px;
}

.join-page-actions .action-link-primary {
  color: var(--bone);
}

.join-page-footer {
  margin-top: 6px;
  border: 0;
}

.join-page-footer .join-page-body {
  max-width: 72ch;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.panel-blackroom .panel-content {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 8px;
  gap: 20px;
  color: var(--text);
  font-family: var(--font-ui);
}

.panel-blackroom {
  position: relative;
  isolation: isolate;
  background-color: #000;
  background-image: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.panel-blackroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.16));
  pointer-events: none;
  z-index: 0;
}

.panel-blackroom .panel-content {
  position: relative;
  z-index: 1;
}

.hidden-blackroom-screen {
  display: none;
}

.black-room-shell {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.black-room-visible {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.black-room-visible-bg {
  position: absolute;
  inset: 0;
  background-image: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.black-room-visible-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34));
}

.black-room-lock {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.black-room-gate {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.black-room-kicker {
  margin: 0;
  color: rgba(247, 243, 236, 0.82);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.black-room-enter-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ffffff;
  font-family: "Michroma", var(--font-ui);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.58),
    0 0 34px rgba(255, 255, 255, 0.28);
  animation: blackroomPulse 2.2s ease-in-out infinite;
}

.black-room-enter-button:hover,
.black-room-enter-button:focus-visible {
  outline: none;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 24px rgba(255, 255, 255, 0.72),
    0 0 44px rgba(255, 255, 255, 0.38);
}

.black-room-access-form {
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
}

.black-room-access-form label {
  display: grid;
  gap: 8px;
}

.black-room-access-form span {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.black-room-access-form input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #222;
  color: var(--accent);
  padding: 12px 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  outline: none;
}

.black-room-access-form button {
  width: fit-content;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.black-room-panel {
  display: block;
  width: 100%;
  height: 100%;
}

.black-room-internal {
  display: none;
  min-height: 100%;
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.7));
  overflow: auto;
}

.panel-blackroom.is-unlocked .black-room-visible {
  display: none;
}

.panel-blackroom.is-unlocked .black-room-internal {
  display: block;
}

.black-room-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #222;
}

.black-room-header h2 {
  color: var(--accent);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
  letter-spacing: 0.12em;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.black-room-subhead,
.black-room-encryption {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #666;
  text-transform: uppercase;
}

.black-room-encryption {
  color: #800;
  white-space: nowrap;
}

.black-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.black-room-folder {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 20px 20px 42px;
  border: 1px solid #111;
  background: rgba(7, 7, 7, 0.38);
  backdrop-filter: blur(4px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.black-room-folder:hover,
.black-room-folder:focus-within {
  border-color: var(--accent);
  background: rgba(10, 10, 10, 0.54);
}

.black-room-folder h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.12em;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.black-room-folder p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

.black-room-folder code {
  color: #a8a8a8;
}

.black-room-status {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  color: #222;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.black-room-forge {
  margin-top: 18px;
  border: 1px dashed #333;
  padding: 28px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.black-room-forge h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.black-room-forge p {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.5;
  color: #888;
  letter-spacing: 0.025em;
}

.black-room-form {
  display: grid;
  gap: 12px;
}

.black-room-form label {
  display: grid;
  gap: 8px;
}

.black-room-form span {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.black-room-form input,
.black-room-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #222;
  color: var(--accent);
  padding: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  outline: none;
}

.black-room-form button {
  width: fit-content;
  margin-top: 4px;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Courier New", monospace;
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Michroma", var(--font-ui);
  font-weight: 700;
  line-height: 0.94;
  color: var(--text);
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(34px, 4.8vw, 70px);
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  font-size: 0.42em;
  line-height: 0.86;
  text-transform: none;
}

h1 span:nth-child(3) {
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1;
}

h2 {
  font-size: clamp(18px, 2.1vw, 28px);
  width: 100%;
  max-width: none;
}

.panel-lede,
.panel-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.2;
  width: 100%;
  max-width: none;
}

.panel-lede {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.intro-manifesto {
  font-size: 14px;
  font-family: "Natural Mono", "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: none !important;
}

.intro-manifesto-caps {
  font-family: "Michroma", var(--font-ui);
  text-transform: uppercase !important;
}

.utility-list {
  display: grid;
  gap: 4px;
  padding-top: 8px;
  width: 100%;
  max-width: none;
}

.utility-list p {
  margin: 0;
  color: var(--text);
  line-height: 1.18;
  padding-top: 0;
  border-top: 0;
  font-size: 10px;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.utility-list p::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.5em;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
}

.future-list {
  margin-top: 8px;
}

.panel-graphic-image {
  display: block;
  width: 73.34%;
  height: auto;
  margin: 12px auto 0;
}

.panel-model-shell {
  width: 62%;
  aspect-ratio: 0.84;
  min-height: 300px;
  margin: 12px auto 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.panel-model-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.action-stack {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.action-link {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bone);
}

.action-link-primary {
  color: var(--text);
}

body.post-splash-blackout {
  background: #000;
}

body.post-splash-blackout .stage {
  background: #000;
}

body.post-splash-blackout .site-header {
  background: #000;
}

body.post-splash-blackout .frame-shell {
  width: 100%;
  height: calc(100vh - 78px);
  margin: 0;
  background: #000;
}

body.post-splash-blackroom {
  background: #000;
}

body.post-splash-blackroom .stage {
  background: #000;
}

body.post-splash-blackroom .site-header {
  background: #000;
}

body.post-splash-blackroom .frame-shell {
  width: 100%;
  height: calc(100vh - 78px);
  margin: 0;
  background: #000;
}

body.post-splash-blackroom .blackout-hero,
body.post-splash-blackroom .signal-screen,
body.post-splash-blackroom .page-back,
body.post-splash-blackroom .page-advance {
  display: none;
}

body.post-splash-blackroom .hidden-blackroom-screen {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.post-splash-blackroom .hidden-blackroom-screen .panel-content {
  width: min(100%, 1120px);
  height: 100%;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  overflow: auto;
}

body.post-splash-signal .signal-screen {
  display: block;
}

body.post-splash-blackout .page-advance {
  display: block;
  opacity: 0.34;
  animation: breathe 2.2s ease-in-out infinite;
}

body.post-splash-blackout .page-back {
  display: block;
  opacity: 0.34;
  animation: breathe 2.2s ease-in-out infinite;
}

body.post-splash-blackout:not(.post-splash-signal) .blackout-hero {
  display: block;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-copy {
  animation: riseInSoft 1180ms cubic-bezier(0.16, 1, 0.3, 1) 220ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-case-frame {
  animation: riseInSoft 1180ms cubic-bezier(0.16, 1, 0.3, 1) 220ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(1) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1160ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(2) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1300ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(3) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1440ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(4) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1580ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(5) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1720ms forwards;
}

body.post-splash-blackout.post-splash-blackout-intro-ready:not(.post-splash-signal) .blackout-capability:nth-child(6) {
  animation: riseInSoft 820ms cubic-bezier(0.16, 1, 0.3, 1) 1860ms forwards;
}

body.post-splash-signal:not(.post-splash-signal-step-2) .page-back,
body.post-splash-signal:not(.post-splash-signal-step-2) .page-advance {
  color: rgba(10, 12, 14, 0.92);
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .page-back,
body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .page-advance {
  color: rgba(10, 12, 14, 0.92);
}

body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .page-back::after,
body.post-splash-signal-step-2:not(.post-splash-signal-step-3) .page-advance::after {
  border-top-color: rgba(10, 12, 14, 0.92);
  border-right-color: rgba(10, 12, 14, 0.92);
}

body.post-splash-signal-step-3:not(.post-splash-signal-step-4) .page-back,
body.post-splash-signal-step-3:not(.post-splash-signal-step-4) .page-advance {
  color: rgba(10, 12, 14, 0.92);
  opacity: 1;
  z-index: 12;
}

body.post-splash-signal-step-3:not(.post-splash-signal-step-4) .page-back::after,
body.post-splash-signal-step-3:not(.post-splash-signal-step-4) .page-advance::after {
  border-top-color: rgba(10, 12, 14, 0.92);
  border-right-color: rgba(10, 12, 14, 0.92);
}

body.post-splash-signal-step-2 .signal-screen-track {
  transform: translateX(-33.333333%);
}

body.post-splash-signal-step-3 .signal-screen-track {
  transform: translateX(-66.666667%);
}

body.post-splash-signal-step-4 .signal-screen-stack {
  transform: translateY(-50%);
}

body.post-splash-signal-step-5 .signal-screen-stack {
  transform: translateY(-50%);
}

body.post-splash-signal-step-4 .page-advance,
body.post-splash-signal-step-5 .page-advance {
  display: none;
}

body.post-splash-signal-step-4 .page-back {
  display: block;
  color: transparent;
  z-index: 12;
  opacity: 1;
}

body.post-splash-signal-step-4 .page-advance,
body.post-splash-signal-step-4 .page-advance.is-hidden {
  display: none;
}

body.post-splash-signal-step-4 .page-back::after {
  content: none;
}

body.post-splash-signal-step-4 .page-back::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  opacity: 1;
  z-index: 20;
  transform-origin: center center;
}

body.post-splash-signal-step-4 .page-back::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

@media (max-width: 1100px) {
  :root {
    --frame-width: calc(100vw - 24px);
    --panel-width: 62vw;
  }

  .site-header {
    width: var(--frame-width);
  }

  .site-nav {
    gap: 18px;
  }

  .signal-screen-panel-carry .signal-screen-inner-carry {
    grid-template-columns: minmax(170px, 210px) minmax(320px, 1fr);
    gap: 36px;
    padding: 40px 36px 34px 10px;
  }

.carry-module-copy-shell {
  width: min(100%, 400px);
  padding-left: 0.35in;
}

.carry-module-copy-shell .carry-module-card,
.carry-module-copy-shell .carry-module-card p,
.carry-module-copy-shell .carry-module-card .carry-module-title,
.carry-module-copy-shell .carry-module-card .carry-module-line,
.carry-module-copy-shell .carry-module-card .carry-module-line-label {
  font-size: 0.8em;
}

.carry-module-copy[data-module-panel="brain"] .carry-module-card,
.carry-module-copy[data-module-panel="brain"] .carry-module-card p,
.carry-module-copy[data-module-panel="brain"] .carry-module-card .carry-module-title,
.carry-module-copy[data-module-panel="brain"] .carry-module-card .carry-module-line,
.carry-module-copy[data-module-panel="brain"] .carry-module-card .carry-module-line-label {
  font-size: 0.75em;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .site-header {
    height: auto;
    min-height: 68px;
    padding: 10px 12px;
    gap: 12px;
    align-items: flex-start;
  }

  .site-nav {
    overflow-x: auto;
    width: calc(100% - 72px);
    padding-bottom: 4px;
  }

  .stage {
    padding-top: 92px;
    overflow: visible;
  }

  .frame-shell {
    height: auto;
    min-height: calc(100vh - 110px);
    grid-template-rows: auto 54px;
  }

  .signal-screen-panel-carry .signal-screen-inner-carry {
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 24px;
    width: calc(100% - 24px);
    padding: 24px 12px 30px;
  }

  .carry-module-nav,
  .carry-module-copy-shell {
    width: min(100%, 100%);
    justify-self: start;
  }

  .carry-module-copy-shell {
    min-height: 0;
    padding-left: 0;
  }

  .carry-module-copy > .carry-module-card:nth-child(2n) {
    padding-left: 0;
  }

  .panel-blackroom .panel-content {
    gap: 16px;
  }

  .black-room-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .black-room-grid {
    grid-template-columns: 1fr;
  }

  .black-room-forge {
    padding: 20px;
  }

  .black-room-gate {
    gap: 14px;
  }

  .signal-screen-panel-join .signal-screen-inner {
    width: 100%;
    padding-top: 28px;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .signal-screen-join-bg {
    background-size: 86% auto;
    background-position: right calc(50% - 1cm);
  }

  .join-page-copy {
    width: 100%;
    gap: 18px;
    margin-top: 18px;
  }

  .join-page-card-secondary,
  .join-page-footer {
    margin-top: 18px;
  }

  .join-page-copy > h2 {
    max-width: none;
  }
}
