:root {
  --ink: #090908;
  --ink-soft: #111110;
  --paper: #f2ecdf;
  --paper-dim: #bdb7aa;
  --red: #e43c2f;
  --red-dark: #9d1d17;
  --line: rgba(242, 236, 223, 0.22);
  --pointer-x: 50%;
  --pointer-y: 45%;
  color-scheme: dark;
  font-family: "Courier New", Courier, monospace;
  background: var(--ink);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
}

html {
  overflow: hidden;
}

body {
  min-width: 280px;
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.boot-screen {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #050504;
  animation: bootAway 1050ms 650ms cubic-bezier(.77, 0, .18, 1) forwards;
}

.boot-mark {
  position: relative;
  width: 74px;
  height: 74px;
  border: 2px solid var(--paper);
  opacity: 0;
  transform: scale(.82);
  animation: bootMark 680ms 80ms steps(2, end) forwards;
}

.boot-mark::before,
.boot-mark::after,
.boot-mark i::before,
.boot-mark i::after {
  content: "";
  position: absolute;
  display: block;
}

.boot-mark::before {
  inset: 20px 17px 27px;
  border: 3px solid var(--paper);
}

.boot-mark::after {
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 8px;
  border: 3px solid var(--paper);
}

.boot-mark i::before {
  left: 35px;
  top: 8px;
  width: 3px;
  height: 14px;
  background: var(--paper);
}

.boot-mark i::after {
  top: -8px;
  right: 10px;
  width: 8px;
  height: 90px;
  background: var(--red);
  transform: rotate(7deg);
}

.site-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  background: #070706;
}

.film-still,
.background-film,
.signal-noise,
.signal-scan,
.pointer-light,
.signal-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-still {
  z-index: -9;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, .08), rgba(5, 5, 4, .72)),
    url("assets/media/company-background-poster.webp") center center / cover no-repeat;
  filter: grayscale(.7) contrast(1.2) brightness(.55);
  transform: scale(1.04);
  animation: filmBreath 18s ease-in-out infinite alternate;
  transition: opacity 900ms ease;
  will-change: transform, opacity;
}

.background-film {
  z-index: -8;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  filter: grayscale(.7) contrast(1.2) brightness(.55);
  transform: scale(1.025);
  transition: opacity 900ms ease;
  will-change: opacity;
}

.film-ready .background-film {
  opacity: 1;
}

.film-ready .film-still {
  opacity: 0;
}

.signal-dust {
  z-index: -4;
  pointer-events: none;
  opacity: .55;
}

.signal-noise {
  z-index: -3;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 27% 38%, transparent 0 1px, rgba(255,255,255,.14) 1px 2px),
    repeating-linear-gradient(91deg, transparent 0 12px, rgba(255,255,255,.025) 13px 14px);
  background-size: 6px 7px, 113px 100%;
  animation: noiseStep 240ms steps(2, end) infinite;
}

.signal-scan {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 48%, rgba(228, 60, 47, .13) 49.2%, transparent 51%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.022) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(0,0,0,.72), transparent 26%, transparent 70%, rgba(0,0,0,.82));
  background-size: 100% 180%, 100% 100%, 100% 100%;
  animation: scanDrop 7s linear infinite;
}

.pointer-light {
  z-index: -1;
  pointer-events: none;
  opacity: .75;
  background:
    radial-gradient(circle 35vw at var(--pointer-x) var(--pointer-y), rgba(242, 236, 223, .11), transparent 72%),
    linear-gradient(180deg, transparent 48%, rgba(0,0,0,.84) 100%);
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  margin: 0 clamp(20px, 4vw, 72px);
  padding-top: max(14px, env(safe-area-inset-top));
  border-bottom: 1px solid var(--line);
  animation: headerIn 850ms 1450ms cubic-bezier(.2,.8,.2,1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
}

.company-emblem {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(242,236,223,.12));
}

.brand-mark .company-emblem {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: grid;
  line-height: .82;
}

.brand-the {
  font: 800 10px/1 "Courier New", monospace;
  letter-spacing: .45em;
}

.brand-company {
  font: 900 clamp(19px, 1.65vw, 26px)/1 "Arial Black", Impact, sans-serif;
  letter-spacing: -.045em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(242,236,223,.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(242,236,223,.35);
  color: var(--paper);
  background: rgba(7,7,6,.55);
  font: 900 13px/1 Arial, sans-serif;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.social-link:hover {
  color: var(--ink);
  background: var(--paper);
}

.status-lamp {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(228,60,47,.7);
  animation: lamp 2.2s ease-out infinite;
}

.header-chain {
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid rgba(242,236,223,.32);
  background: rgba(7,7,6,.55);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: center;
  min-height: calc(100dvh - 156px);
  padding: clamp(28px, 5vh, 64px) clamp(20px, 6vw, 108px) clamp(80px, 11vh, 122px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 900px;
  padding-bottom: clamp(8px, 3vh, 38px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(242,236,223,.72);
  font-size: clamp(9px, .82vw, 12px);
  font-weight: 700;
  letter-spacing: .2em;
  animation: copyReveal 650ms 1850ms both;
}

.eyebrow span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(228,60,47,.65);
}

.hero-title {
  position: relative;
  display: grid;
  width: fit-content;
  margin: 0;
  color: var(--paper);
  text-transform: uppercase;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.7));
}

.hero-title span {
  margin-left: .08em;
  font: 900 clamp(24px, 3vw, 48px)/.9 "Arial Black", Impact, sans-serif;
  letter-spacing: .34em;
  animation: titleSlice 700ms 1950ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-title strong {
  font: 900 clamp(76px, 11.2vw, 190px)/.78 "Arial Black", Impact, sans-serif;
  letter-spacing: -.085em;
  animation: titleSlice 850ms 2040ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-title::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -.14em;
  left: .5%;
  height: clamp(5px, .72vw, 12px);
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: ruleDraw 620ms 2440ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-statement {
  max-width: 38ch;
  margin: clamp(24px, 3.4vh, 44px) 0 0;
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .14em;
  text-wrap: balance;
  animation: tonerResolve 950ms 2650ms both;
}

.launch-line {
  display: grid;
  grid-template-columns: auto minmax(36px, 120px) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 690px);
  margin-top: 20px;
  color: rgba(242,236,223,.68);
  font-size: clamp(9px, .78vw, 11px);
  font-weight: 800;
  letter-spacing: .18em;
  animation: copyReveal 750ms 3050ms both;
}

.launch-line i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.launch-line strong {
  color: var(--paper);
  white-space: nowrap;
}

.chain-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.chain-lockup img {
  display: block;
  width: 14px;
  height: 19px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 4vh, 46px);
  animation: copyReveal 750ms 3340ms both;
}

.details-button {
  min-height: 52px;
  padding: 0 19px;
  cursor: pointer;
  border: 1px solid var(--paper);
  background: rgba(8,8,7,.74);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.details-button:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.details-button {
  border-color: var(--red);
  background: var(--red);
}

.chair-signal {
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: center;
  display: grid;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  place-items: center;
  opacity: .95;
  animation: chairEnter 1450ms 1250ms cubic-bezier(.15,.8,.1,1) both;
}

.chair-signal .company-emblem {
  position: relative;
  z-index: 2;
  width: 54%;
  height: 54%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(242,236,223,.15));
}

.chair-signal::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(242,236,223,.44);
  background: rgba(8,8,7,.32);
  transform: rotate(45deg);
  box-shadow: 0 0 90px rgba(0,0,0,.8);
  animation: chairFrame 12s ease-in-out infinite alternate;
}

.chair-orbit {
  position: absolute;
  border: 1px solid rgba(242,236,223,.16);
  border-radius: 50%;
}

.chair-orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.chair-orbit-one {
  inset: 5%;
  animation: orbit 22s linear infinite;
}

.chair-orbit-two {
  inset: 14%;
  animation: orbitReverse 14s linear infinite;
}

.chair-beam {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: 49.7%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(228,60,47,.52), transparent);
  animation: beamBlink 4s steps(2,end) infinite;
}

.hero-filing {
  position: absolute;
  top: 13%;
  right: 4.2%;
  display: grid;
  width: 126px;
  padding: 9px;
  border: 1px solid rgba(242,236,223,.26);
  color: rgba(242,236,223,.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  transform: rotate(2deg);
  animation: copyReveal 500ms 3300ms both;
}

.hero-filing i {
  display: block;
  height: 7px;
  margin-top: 6px;
  background: var(--red-dark);
}

.floating-filings {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.filing {
  position: absolute;
  display: block;
  width: 92px;
  aspect-ratio: 1.38;
  border: 1px solid rgba(242,236,223,.2);
  background: rgba(242,236,223,.035);
  box-shadow: 0 16px 50px rgba(0,0,0,.34);
}

.filing::before,
.filing::after {
  content: "";
  position: absolute;
  left: 12%;
  height: 1px;
  background: rgba(242,236,223,.17);
}

.filing::before {
  top: 26%;
  right: 14%;
}

.filing::after {
  top: 39%;
  right: 40%;
}

.filing-a {
  top: 18%;
  left: 4%;
  transform: rotate(-13deg);
  animation: paperA 11s ease-in-out infinite alternate;
}

.filing-b {
  top: 29%;
  right: 17%;
  width: 70px;
  transform: rotate(18deg);
  animation: paperB 14s ease-in-out infinite alternate;
}

.filing-c {
  right: 3%;
  bottom: 18%;
  width: 114px;
  transform: rotate(-6deg);
  animation: paperA 17s ease-in-out infinite alternate-reverse;
}

.filing-d {
  bottom: 12%;
  left: 42%;
  width: 62px;
  transform: rotate(30deg);
  animation: paperB 9s ease-in-out infinite alternate-reverse;
}

.signal-footer {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 72px);
  bottom: max(12px, env(safe-area-inset-bottom));
  left: clamp(20px, 4vw, 72px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  border-top: 1px solid var(--line);
  color: rgba(242,236,223,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  animation: headerIn 700ms 3350ms both;
}

.footer-code {
  padding-right: 20px;
  color: var(--paper);
  white-space: nowrap;
}

.footer-ticker {
  position: relative;
  min-width: 0;
  height: 14px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.footer-ticker i {
  position: absolute;
  left: 22px;
  width: max-content;
  font-style: normal;
  opacity: 0;
  animation: ticker 9s steps(1,end) infinite;
}

.footer-ticker i:nth-child(2) { animation-delay: 3s; }
.footer-ticker i:nth-child(3) { animation-delay: 6s; }

.motion-toggle {
  min-height: 34px;
  padding: 0 0 0 16px;
  cursor: pointer;
  color: rgba(242,236,223,.62);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.motion-toggle:hover {
  color: var(--paper);
}

.essentials-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: #050504;
}

.essentials-dialog::backdrop {
  background: #050504;
}

.essentials-dialog[open] {
  animation: dialogIn 300ms cubic-bezier(.2,.8,.2,1) both;
}

.dialog-close {
  min-width: 74px;
  min-height: 44px;
  cursor: pointer;
  color: var(--paper);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.dialog-close:hover {
  color: var(--red);
}

.essentials-dialog {
  background: rgba(5,5,4,.88);
}

.records-sheet {
  width: min(720px, 100%);
  min-height: 100dvh;
  margin-left: auto;
  padding: max(26px, env(safe-area-inset-top)) clamp(22px, 5vw, 62px) max(30px, env(safe-area-inset-bottom));
  overflow-y: auto;
  color: #151412;
  background:
    radial-gradient(circle at 16% 8%, rgba(120,95,58,.12), transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(26,24,21,.035) 28px 29px),
    #eee6d7;
  box-shadow: -28px 0 90px rgba(0,0,0,.7);
}

.records-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 6px solid #151412;
}

.records-heading p {
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.records-heading h2 {
  max-width: 12ch;
  margin: 0;
  font: 900 clamp(40px, 7vw, 78px)/.85 "Arial Black", Impact, sans-serif;
  letter-spacing: -.065em;
}

.records-close {
  color: #151412;
  border: 1px solid #151412;
}

.records-close:hover {
  color: #eee6d7;
  background: #151412;
}

.records-warning {
  margin: 20px 0 0;
  padding: 12px;
  color: #eee6d7;
  background: var(--red-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.records-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0 0;
  border-top: 1px solid rgba(21,20,18,.35);
  border-left: 1px solid rgba(21,20,18,.35);
}

.records-grid > div {
  min-width: 0;
  padding: 17px;
  border-right: 1px solid rgba(21,20,18,.35);
  border-bottom: 1px solid rgba(21,20,18,.35);
}

.records-grid .record-address {
  grid-column: 1 / -1;
}

.records-grid dt,
.contract-record dt {
  margin-bottom: 8px;
  color: rgba(21,20,18,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.records-grid dd,
.contract-record dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.records-grid code,
.contract-record code {
  display: block;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.45;
}

.records-grid button,
.contract-record button {
  margin-top: 14px;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid #151412;
  color: #151412;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.records-grid button:hover,
.contract-record button:hover {
  color: #eee6d7;
  background: #151412;
}

.contract-records {
  display: grid;
  margin-top: 26px;
  border-top: 4px solid #151412;
}

.contract-record {
  display: grid;
  grid-template-columns: minmax(100px, .45fr) minmax(0, 1.55fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(21,20,18,.35);
}

.contract-record div {
  min-width: 0;
}

.contract-record a {
  display: inline-block;
  margin-top: 8px;
  color: #151412;
  font-size: 9px;
  font-weight: 700;
}

.records-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.records-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #151412;
  color: #151412;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.records-actions a:hover {
  color: #eee6d7;
  background: #151412;
}

.noscript-message {
  position: fixed;
  z-index: 110;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  color: var(--paper);
  background: var(--red-dark);
  font: 700 12px/1.4 "Courier New", monospace;
  text-align: center;
}

.signal-reduced .signal-dust,
.signal-reduced .background-film,
.signal-reduced .floating-filings,
.signal-reduced .signal-noise,
.signal-reduced .signal-scan,
.signal-reduced .chair-orbit,
.signal-reduced .chair-beam {
  display: none;
}

.signal-reduced *,
.signal-reduced *::before,
.signal-reduced *::after {
  animation-play-state: paused !important;
}

@keyframes bootMark {
  0% { opacity: 0; transform: scale(.82); }
  48% { opacity: 1; transform: scale(1.06); }
  64% { opacity: .2; }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bootAway {
  0% { opacity: 1; clip-path: inset(0); }
  60% { opacity: 1; clip-path: inset(0 0 48% 0); }
  100% { opacity: 0; visibility: hidden; clip-path: inset(50% 0 50% 0); }
}

@keyframes filmBreath {
  from { transform: scale(1.04) translate3d(-.3%, -.4%, 0); }
  to { transform: scale(1.105) translate3d(.5%, .45%, 0); }
}

@keyframes noiseStep {
  0% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-2px,1px,0); }
  100% { transform: translate3d(1px,-1px,0); }
}

@keyframes scanDrop {
  from { background-position: 0 -120%, 0 0, 0 0; }
  to { background-position: 0 220%, 0 0, 0 0; }
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleSlice {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-24px); }
  55% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(4px); }
  72% { transform: translateX(-2px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes ruleDraw { to { transform: scaleX(1); } }

@keyframes tonerResolve {
  from { opacity: 0; filter: blur(9px); letter-spacing: .34em; }
  to { opacity: 1; filter: blur(0); letter-spacing: .14em; }
}

@keyframes copyReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lamp {
  0% { box-shadow: 0 0 0 0 rgba(228,60,47,.7); }
  70% { box-shadow: 0 0 0 9px rgba(228,60,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(228,60,47,0); }
}

@keyframes chairEnter {
  from { opacity: 0; transform: translateY(26px) scale(.88); filter: blur(10px); }
  55% { opacity: 1; filter: blur(0); }
  to { opacity: .95; transform: translateY(0) scale(1); }
}

@keyframes chairFrame {
  from { transform: rotate(45deg) scale(.94); }
  to { transform: rotate(45deg) scale(1.04); }
}

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }

@keyframes beamBlink {
  0%, 72%, 100% { opacity: .42; }
  75% { opacity: 1; }
  78% { opacity: .08; }
  82% { opacity: .7; }
}

@keyframes paperA {
  from { translate: 0 0; rotate: -3deg; }
  to { translate: 22px -28px; rotate: 5deg; }
}

@keyframes paperB {
  from { translate: 0 0; rotate: 2deg; }
  to { translate: -18px 25px; rotate: -7deg; }
}

@keyframes ticker {
  0%, 32% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes dialogIn {
  from { opacity: 0; clip-path: inset(50% 0 50% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .header-status > span:not(.status-lamp):not(.header-chain) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: calc(100dvh - 124px);
    padding: 36px 22px 96px;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 0;
  }

  .chair-signal {
    position: absolute;
    top: 4%;
    right: -5%;
    width: min(68vw, 430px);
    opacity: .48;
  }

  .hero-title strong {
    font-size: clamp(64px, 18vw, 124px);
  }

  .hero-title span {
    font-size: clamp(20px, 5.7vw, 38px);
  }

  .hero-filing,
  .filing-b,
  .filing-d {
    display: none;
  }

  .signal-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-ticker {
    display: none;
  }

  .footer-code {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 560px) {
  .site-header {
    margin: 0 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark .company-emblem {
    width: 44px;
    height: 44px;
  }

  .brand-copy {
    display: none;
  }

  .header-chain {
    font-size: 8px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .hero-title strong {
    font-size: clamp(58px, 20vw, 92px);
  }

  .hero-title span {
    font-size: clamp(18px, 6vw, 28px);
  }

  .hero-statement {
    max-width: 30ch;
    font-size: 11px;
  }

  .launch-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .launch-line i {
    width: 64px;
  }

  .details-button {
    width: 100%;
    justify-content: space-between;
  }

  .chair-signal {
    top: 6%;
    right: -18%;
    width: 86vw;
  }

  .filing-a {
    top: 19%;
    left: -12%;
  }

  .filing-c {
    right: -12%;
    bottom: 25%;
  }

  .signal-footer {
    right: 18px;
    left: 18px;
  }

  .footer-code {
    font-size: 8px;
  }

  .motion-toggle {
    font-size: 0;
  }

  .motion-toggle::after {
    content: "MOTION";
    font-size: 8px;
  }

  .records-sheet {
    width: 100%;
    min-height: min(88dvh, 820px);
    margin-top: 12dvh;
    border-radius: 18px 18px 0 0;
  }

  .records-heading h2 {
    font-size: 46px;
  }

  .records-grid {
    grid-template-columns: 1fr;
  }

  .records-grid .record-address {
    grid-column: auto;
  }

  .contract-record {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .signal-dust,
  .background-film,
  .signal-noise,
  .signal-scan,
  .floating-filings,
  .chair-orbit,
  .chair-beam {
    display: none !important;
  }

  .boot-screen {
    display: none;
  }
}

@media (forced-colors: active) {
  .film-still,
  .background-film,
  .signal-noise,
  .signal-scan,
  .pointer-light,
  .signal-dust,
  .floating-filings {
    display: none;
  }

  .site-shell {
    background: Canvas;
    color: CanvasText;
  }
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  overflow: auto;
  background: radial-gradient(circle at 50% 30%, #24110f, #090908 58%);
}

.error-filing {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid #625f58;
  background: #0c0c0b;
  box-shadow: 16px 16px 0 var(--red);
}

.error-filing p {
  margin: 0 0 14px;
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.error-filing h1 {
  margin: 0 0 30px;
  font: 900 clamp(48px, 10vw, 94px)/.85 "Arial Black", Impact, sans-serif;
  letter-spacing: -.07em;
}

.error-filing a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
}

.error-filing a:hover {
  color: var(--ink);
  background: var(--paper);
}
