:root {
  color-scheme: dark;
  --ink: #080808;
  --paper: #fffef7;
  --newsprint: #f2efe6;
  --red: #f0142f;
  --deep-red: #8d0617;
  --gold: #f5c542;
  --cyan: #00d1ff;
  --acid: #b7ff2a;
  --blue: #164cff;
  --muted: #c7c7c7;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 72px
    ),
    linear-gradient(180deg, #141414 0%, #050505 42%, #15050a 100%);
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.screen-noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.screen-noise {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 12px 18px, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 22px 6px, rgba(255, 0, 72, 0.12) 1px, transparent 1px);
  background-size: 34px 34px, 29px 29px;
  mix-blend-mode: screen;
}

.scanlines {
  opacity: 0.18;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px,
    transparent 4px
  );
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem 1.5rem;
  border-bottom: 5px solid var(--red);
  background:
    linear-gradient(90deg, rgba(240, 20, 47, 0.22), transparent 38%),
    var(--ink);
  box-shadow: 0 10px 30px var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 3px solid var(--paper);
  background: var(--red);
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(-6deg);
  box-shadow: 5px 5px 0 var(--gold);
}

.brand-lockup strong {
  display: block;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.topnav a,
.chaos-toggle {
  min-width: 84px;
  padding: 0.62rem 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.chaos-toggle {
  background: var(--red);
  box-shadow: 4px 4px 0 var(--gold);
  cursor: pointer;
}

.topnav a:hover,
.topnav a:focus-visible,
.chaos-toggle:hover,
.chaos-toggle:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.12) 100%),
    repeating-linear-gradient(135deg, rgba(240, 20, 47, 0.28) 0 12px, transparent 12px 24px),
    #080808;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background:
    repeating-linear-gradient(
      90deg,
      var(--red) 0 18px,
      var(--gold) 18px 29px,
      var(--cyan) 29px 41px,
      transparent 41px 56px
    );
  opacity: 0.22;
  transform: skewY(-5deg) translateY(28%);
  z-index: -2;
}

.hero::after {
  content: "PR";
  position: absolute;
  right: min(7vw, 6rem);
  top: 16%;
  z-index: -1;
  display: grid;
  place-items: center;
  width: min(34vw, 420px);
  aspect-ratio: 4 / 5;
  border: 5px solid var(--paper);
  background:
    linear-gradient(155deg, rgba(245, 197, 66, 0.92) 0 18%, transparent 18%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 3px, transparent 3px 16px),
    var(--newsprint);
  color: rgba(240, 20, 47, 0.82);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  transform: rotate(3deg);
  box-shadow: 14px 14px 0 var(--red), -10px -10px 0 var(--cyan);
}

.hero-copy {
  width: min(720px, 58vw);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  color: var(--paper);
  font-size: 5.8rem;
  animation: headlineJolt 5.2s steps(1) infinite;
}

.hero-lede {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: #f7f7f7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button,
.mini-button,
.hold-button,
.strike-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button {
  min-width: 210px;
  padding: 0.92rem 1.1rem;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 7px 7px 0 var(--red);
}

.button-primary {
  background: var(--gold);
}

.button-primary span {
  margin-right: 0.45rem;
}

.button-ghost {
  border: 2px solid var(--paper);
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--blue);
}

.button:hover,
.button:focus-visible,
.mini-button:hover,
.mini-button:focus-visible,
.hold-button:hover,
.hold-button:focus-visible,
.strike-button:hover,
.strike-button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  transform: translate(-2px, -2px);
}

.button:active,
.mini-button:active,
.hold-button:active {
  transform: translate(2px, 2px);
}

.vinyl-badge {
  position: absolute;
  right: min(9vw, 8rem);
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 13%, #080808 14% 23%, var(--paper) 24% 26%, #080808 27% 100%);
  box-shadow: 0 0 0 10px rgba(240, 20, 47, 0.55);
  animation: recordSpin 7s linear infinite;
}

.vinyl-badge span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
}

.ticker {
  overflow: hidden;
  border-block: 4px solid var(--paper);
  background: var(--red);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-inline: 2rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.notice-band,
.evidence-band,
.tribunal-band {
  padding: 5rem 0;
}

.notice-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--ink);
}

.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

h2 {
  max-width: 12ch;
  color: var(--paper);
  font-size: 4rem;
}

.notice-grid p,
.tribunal-copy p,
.classified-card p,
.price-vault p {
  color: #f1f1f1;
  font-size: 1rem;
}

.notice-ledger {
  margin: 0;
  border: 4px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.notice-ledger div {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 64px;
  border-bottom: 3px solid var(--ink);
}

.notice-ledger div:last-child {
  border-bottom: 0;
}

.notice-ledger dt,
.notice-ledger dd {
  margin: 0;
  padding: 0.9rem;
}

.notice-ledger dt {
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.notice-ledger dd {
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.evidence-band {
  background:
    repeating-linear-gradient(45deg, rgba(245, 197, 66, 0.12) 0 10px, transparent 10px 26px),
    #130409;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.classified-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.classified-card {
  min-height: 330px;
  padding: 1.2rem;
  border: 4px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(240, 20, 47, 0.12), transparent 40%),
    var(--newsprint);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
}

.classified-card:nth-child(2) {
  transform: rotate(1deg);
}

.classified-card:nth-child(3) {
  transform: rotate(-1deg);
}

.headline-card {
  background:
    linear-gradient(135deg, rgba(240, 20, 47, 0.24), transparent 48%),
    var(--paper);
}

.paper-label {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.5rem;
  background: var(--red);
  color: var(--paper) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem !important;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.classified-card h3 {
  color: var(--ink);
  font-size: 2.25rem;
}

.classified-card p:not(.paper-label) {
  color: #1f1f1f;
}

.proposal-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.16), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 4px, transparent 4px 18px),
    #050505;
}

.proposal-band::before {
  content: "PROPOSAL PROPOSAL PROPOSAL PROPOSAL";
  position: absolute;
  left: -4rem;
  top: 1rem;
  width: 120%;
  color: rgba(255, 255, 255, 0.08);
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-5deg);
  white-space: nowrap;
}

.proposal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: start;
}

.proposal-copy p {
  color: #f1f1f1;
}

.proposal-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proposal-slip {
  min-height: 190px;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  transform: rotate(var(--slip-rotate, -1deg));
  animation: slipBuzz 4.8s steps(1) infinite;
}

.proposal-slip:nth-child(2n) {
  --slip-rotate: 1deg;
  box-shadow: 7px 7px 0 var(--cyan);
}

.proposal-slip:nth-child(3n) {
  --slip-rotate: -2deg;
  box-shadow: 7px 7px 0 var(--gold);
}

.proposal-slip span {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  min-height: 48px;
  margin-bottom: 0.8rem;
  padding: 0.3rem;
  background: var(--ink);
  color: var(--gold);
  font-size: 1.9rem;
  line-height: 1;
}

.proposal-slip strong {
  display: block;
  color: var(--red);
  font-size: 1.28rem;
  line-height: 1;
  text-transform: uppercase;
}

.proposal-slip p {
  margin: 0.55rem 0 0;
  color: #222;
  font-size: 0.86rem;
}

.tribunal-band {
  background:
    linear-gradient(90deg, rgba(0, 209, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #050505, #111);
}

.tribunal-layout {
  width: min(1380px, calc(100% - 2rem));
  container-type: inline-size;
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(1.25rem, 2vw, 2.5rem);
  align-items: start;
}

.tribunal-copy {
  position: sticky;
  top: 100px;
}

.status-board {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  min-height: 62px;
  padding: 1rem;
  border: 3px solid var(--paper);
  background: rgba(0, 0, 0, 0.65);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
}

.status-light {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.status-board.is-complete .status-light {
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.gate-machine {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.4vw, 1.2rem);
  align-items: start;
  padding: 1rem;
  border: 5px solid var(--paper);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 9px),
    #060606;
  box-shadow: 14px 14px 0 var(--deep-red);
}

.turntable {
  position: sticky;
  top: 100px;
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(22, 76, 255, 0.22), transparent),
    #111;
}

.record {
  position: relative;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 15%, #050505 16% 28%, var(--paper) 29% 31%, #050505 32% 100%);
  box-shadow: inset 0 0 0 8px #1d1d1d, 0 12px 30px rgba(0, 0, 0, 0.65);
  animation: recordSpin 2.8s linear infinite;
}

.record::before,
.record::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.record::after {
  inset: 54px;
}

.record span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
}

.tonearm {
  position: absolute;
  right: 26px;
  top: 46px;
  width: 70px;
  height: 10px;
  background: var(--paper);
  transform: rotate(33deg);
  transform-origin: right center;
  box-shadow: 0 0 0 3px var(--ink);
}

.tonearm::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -6px;
  width: 18px;
  height: 22px;
  background: var(--red);
}

.gate-list {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.gate-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, clamp(11rem, 34%, 16rem));
  gap: 1rem;
  align-items: start;
  min-height: 118px;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
  opacity: 0.55;
}

.gate-step > * {
  min-width: 0;
}

.gate-step > :last-child {
  width: 100%;
  justify-self: stretch;
}

.gate-step.is-active,
.gate-step.is-complete {
  border-color: var(--gold);
  opacity: 1;
}

.gate-step.is-complete {
  background: rgba(183, 255, 42, 0.1);
}

.gate-step strong {
  display: block;
  color: var(--paper);
  font-size: 1.35rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gate-step p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-button {
  min-width: 150px;
  padding: 0.72rem 0.9rem;
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--red);
}

.split-panel {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.split-panel label,
.split-panel output {
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.split-panel input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.split-panel .mini-button {
  width: 100%;
}

.seal-button {
  will-change: transform;
}

.seal-button.is-dodging {
  animation: sealPanic 420ms ease;
}

.checks {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.checks label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.55rem;
  align-items: start;
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.35;
}

.checks input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.quiz {
  display: grid;
  gap: 0.55rem;
}

.quiz[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}

.strike-panel {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.strike-panel[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}

.strike-button {
  min-width: 0;
  min-height: 44px;
  padding: 0.64rem 0.8rem;
  border: 2px solid var(--paper);
  background: var(--red);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  overflow-wrap: anywhere;
  box-shadow: 5px 5px 0 var(--gold);
}

.strike-button.is-cleared {
  background: var(--acid);
  color: var(--ink);
  text-decoration: line-through;
  transform: rotate(-2deg);
}

.mini-button.is-wrong {
  background: var(--deep-red);
  color: var(--paper);
  animation: legalShake 340ms ease;
}

.hold-button {
  width: 100%;
  min-width: 190px;
  max-width: 260px;
  min-height: 58px;
  overflow: hidden;
  border: 3px solid var(--paper);
  background: #1f1f1f;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 6px 6px 0 var(--blue);
}

.hold-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hold-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background:
    repeating-linear-gradient(90deg, var(--gold) 0 12px, var(--acid) 12px 24px);
  transition: width 70ms linear;
}

.hold-label {
  position: relative;
  z-index: 1;
}

.price-vault {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  padding: 1.2rem;
  border: 5px double var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

.price-vault h3 {
  color: var(--red);
  font-size: 4.8rem;
  text-shadow: 3px 3px 0 var(--ink);
}

.price-vault p:not(.paper-label) {
  max-width: 62ch;
  color: #1f1f1f;
}

.price-vault .button {
  margin-top: 0.45rem;
}

.offer-fallback {
  margin: 1rem 0 0;
  padding: 0.75rem;
  border: 2px dashed var(--red);
  background: rgba(240, 20, 47, 0.08);
  color: var(--ink) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  user-select: text;
}

.site-footer {
  padding: 2rem 1rem;
  border-top: 4px solid var(--red);
  background: var(--ink);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.confetti {
  position: fixed;
  top: -16px;
  z-index: 40;
  width: 10px;
  height: 18px;
  pointer-events: none;
  animation: confettiDrop 1.7s ease-in forwards;
}

.falling-clause {
  position: fixed;
  top: -60px;
  z-index: 35;
  max-width: 260px;
  padding: 0.45rem 0.6rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.1;
  pointer-events: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--red);
  animation: clauseFall 3.4s linear forwards;
}

.cursor-stamp {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  display: none;
  padding: 0.35rem 0.5rem;
  border: 3px solid var(--paper);
  background: var(--red);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(18px, 18px) rotate(-8deg);
  box-shadow: 4px 4px 0 var(--gold);
}

body.chaos-mode .cursor-stamp {
  display: block;
}

body.chaos-mode .proposal-slip,
body.chaos-mode .classified-card {
  animation-duration: 1.2s;
}

body.chaos-mode .gate-machine {
  box-shadow:
    14px 14px 0 var(--deep-red),
    -9px -9px 0 var(--cyan),
    0 0 38px rgba(245, 197, 66, 0.28);
}

@keyframes headlineJolt {
  0%,
  86%,
  100% {
    transform: none;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  }
  88% {
    transform: translate(3px, -2px) skewX(-3deg);
    text-shadow: -5px 4px 0 var(--red), 4px -3px 0 var(--cyan);
  }
  90% {
    transform: translate(-2px, 2px) skewX(2deg);
  }
}

@keyframes slipBuzz {
  0%,
  91%,
  100% {
    transform: rotate(var(--slip-rotate, -1deg));
  }
  94% {
    transform: rotate(calc(var(--slip-rotate, -1deg) * -1)) translate(3px, -2px);
  }
  97% {
    transform: rotate(var(--slip-rotate, -1deg)) translate(-2px, 2px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes recordSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes clauseFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(-7deg);
  }
  8% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(16deg);
  }
}

@keyframes sealPanic {
  0% {
    transform: rotate(0deg) scale(1);
  }
  40% {
    transform: rotate(-6deg) scale(1.08);
  }
  100% {
    transform: rotate(4deg) scale(1);
  }
}

@keyframes legalShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

@keyframes confettiDrop {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(720deg);
  }
}

@media (max-width: 1200px) {
  .tribunal-layout {
    grid-template-columns: 1fr;
  }

  .tribunal-copy,
  .turntable {
    position: static;
  }
}

@container (max-width: 1250px) {
  .gate-machine {
    grid-template-columns: 1fr;
  }

  .turntable {
    position: static;
    min-height: 180px;
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topnav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    align-items: end;
    min-height: 86svh;
    padding-top: 18rem;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.82) 48%, #050505 100%),
      repeating-linear-gradient(135deg, rgba(240, 20, 47, 0.28) 0 12px, transparent 12px 24px),
      #080808;
  }

  .hero::after {
    right: 1rem;
    top: 5rem;
    width: min(38vw, 220px);
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 11ch;
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .vinyl-badge {
    right: 1rem;
    bottom: 1rem;
    width: 106px;
    height: 106px;
  }

  .notice-grid,
  .tribunal-layout,
  .classified-grid,
  .proposal-layout,
  .gate-machine {
    grid-template-columns: 1fr;
  }

  .proposal-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tribunal-copy,
  .turntable {
    position: static;
  }

  .classified-card {
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 0.75rem 1rem;
  }

  .brand-lockup strong {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .topnav a {
    flex: 1 1 88px;
    min-width: 0;
  }

  .hero {
    min-height: 88svh;
    padding: 16rem 1rem 4rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lede,
  .notice-grid p,
  .tribunal-copy p,
  .classified-card p,
  .price-vault p {
    font-size: 0.95rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .notice-ledger div,
  .gate-step {
    grid-template-columns: 1fr;
  }

  .proposal-stack {
    grid-template-columns: 1fr;
  }

  .notice-ledger dt {
    min-height: 40px;
  }

  .gate-step {
    min-height: 0;
  }

  .gate-step strong {
    font-size: 1.1rem;
  }

  .mini-button,
  .hold-button {
    width: 100%;
    max-width: none;
  }

  .price-vault h3 {
    font-size: 3rem;
  }
}

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