:root {
  --black: #08090b;
  --ink: #101217;
  --paper: #f4f1dc;
  --acid: #d9ff2f;
  --acid-dark: #93b500;
  --pink: #ff2ebd;
  --cyan: #25ebff;
  --orange: #ff792f;
  --gold: #ffce45;
  --purple: #7f5cff;
  --red: #ff3157;
  --line: rgba(244, 241, 220, 0.28);
  --muted: #a7a79d;
  --shadow-hard: 8px 8px 0 var(--black);
  --shadow-neon: 0 0 20px rgba(217, 255, 47, 0.35);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 46, 189, 0.1), transparent 28rem),
    radial-gradient(circle at 12% 64%, rgba(37, 235, 255, 0.08), transparent 30rem),
    var(--black);
  color: var(--paper);
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.4;
}

body::before,
body::after,
.scanline-layer {
  pointer-events: none;
  position: fixed;
  z-index: 20;
  inset: 0;
}

body::before {
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  opacity: 0.08;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.2) 4px,
    transparent 5px
  );
}

.scanline-layer {
  opacity: 0.3;
  background: linear-gradient(90deg, transparent 0 48%, rgba(217, 255, 47, 0.035) 49%, transparent 51% 100%);
  mix-blend-mode: color-dodge;
}

::selection {
  background: var(--pink);
  color: var(--black);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 40;
  padding: 8px 12px;
  transform: translateY(-180%);
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
}

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

.system-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding: 8px 18px;
  border-bottom: 2px solid var(--acid);
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-path,
.system-status,
.system-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.system-prompt,
.system-status strong {
  color: var(--acid);
}

.system-time {
  color: var(--muted);
}

.system-controls {
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.menubar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  padding: 0 10px;
  border-bottom: 2px solid var(--acid);
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.menubar-item,
.menubar-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 10px;
}

.menubar-item {
  color: var(--muted);
  cursor: default;
}

.menubar-link {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease;
}

.menubar-link::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.menubar-link:hover,
.menubar-link:focus-visible,
.menubar-link.is-active {
  color: var(--acid);
}

.menubar-link.is-active::after {
  transform: scaleX(1);
}

.menubar-link.is-pending {
  color: var(--muted);
  cursor: not-allowed;
}

.menubar-spacer {
  flex: 1 1 auto;
}

.menubar-right {
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (max-width: 640px) {
  .menubar {
    font-size: 9px;
  }

  .menubar-item,
  .menubar-link {
    padding: 8px 7px;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(770px, calc(100svh - 40px));
  margin: 14px;
  overflow: hidden;
  border: 2px solid var(--acid);
  background: #0d0d13;
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-hard);
}

.hero-bg,
.hero-vignette,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-bg {
  display: block;
  z-index: -3;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0d0d13;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.25) contrast(1.08);
  transform: scale(1.035) translate3d(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px), 0);
  transition: transform 500ms var(--ease);
  pointer-events: none;
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.88) 0%, rgba(8, 9, 11, 0.62) 32%, rgba(8, 9, 11, 0.08) 66%, transparent 82%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.82), transparent 34%),
    linear-gradient(110deg, rgba(127, 92, 255, 0.18), transparent 34%, rgba(255, 46, 189, 0.2));
  mix-blend-mode: screen;
}

.hero-noise {
  z-index: -1;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(850px, 82%);
  min-height: min(770px, calc(100svh - 40px));
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 92px);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}

.hero-brand-mark {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--gold);
  background: var(--black);
  box-shadow: 6px 6px 0 var(--pink), 0 0 20px rgba(217, 255, 47, 0.24);
}

.hero-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-brand-meta {
  display: grid;
  gap: 3px;
}

.hero-brand-meta strong {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-shadow: 3px 3px 0 var(--black);
}

.hero-brand-meta small {
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow,
.section-kicker,
.module-label,
.quote-badge,
.manifesto-kicker {
  margin: 0;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--acid);
  background: rgba(8, 9, 11, 0.78);
  box-shadow: 4px 4px 0 var(--pink);
}

.blink,
.command-cursor {
  animation: blink 860ms steps(1, end) infinite;
}

.hero-title {
  position: relative;
  width: fit-content;
  margin: 24px 0 14px -7px;
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.3rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  white-space: nowrap;
  text-shadow:
    5px 5px 0 var(--pink),
    10px 10px 0 var(--black),
    0 0 24px rgba(217, 255, 47, 0.35);
  transform: skew(-5deg);
}

.hero-title::before,
.hero-title::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  content: attr(data-text);
  pointer-events: none;
}

.hero-title::before {
  color: var(--cyan);
  clip-path: inset(34% 0 49% 0);
  transform: translate(-3px, 2px);
  mix-blend-mode: screen;
}

.hero-title::after {
  color: var(--pink);
  clip-path: inset(68% 0 12% 0);
  transform: translate(5px, -1px);
  mix-blend-mode: screen;
}

.hero-title-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.nas-dim {
  color: var(--paper);
  opacity: 0.36;
}

.dafuq-letter {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 150ms ease, text-shadow 150ms ease, transform 150ms ease;
}

.dafuq-letter:hover,
.dafuq-letter:focus-visible,
.dafuq-letter.slot-active {
  color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan), 0 0 38px rgba(37, 235, 255, 0.55);
  transform: translateY(-0.05em);
}

.slot-card {
  display: inline-block;
  max-width: 420px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 2px solid var(--cyan);
  background: var(--black);
  box-shadow: 5px 5px 0 var(--pink);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: normal;
}

.slot-card.is-idle {
  border-color: var(--muted);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--muted);
}

.hero-dek {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-shadow: 3px 3px 0 var(--black);
}

.hero-oneliner {
  margin: 10px 0 0;
  color: var(--acid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.chip {
  padding: 7px 9px;
  border: 1px solid currentColor;
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--black);
}

.chip-acid {
  background: var(--acid);
  color: var(--black);
}

.chip-pink {
  background: var(--pink);
  color: var(--black);
}

.chip-cyan {
  background: var(--cyan);
  color: var(--black);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.command-button,
.noise-button,
.manifesto-button,
.deck-button,
.text-button {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.command-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--acid);
  background: var(--acid);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--black), 7px 7px 0 var(--pink);
  font-size: 12px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.command-button:hover {
  background: var(--cyan);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black), 5px 5px 0 var(--pink);
}

.command-ghost {
  border-color: var(--pink);
  background: rgba(8, 9, 11, 0.72);
  color: var(--pink);
  box-shadow: 5px 5px 0 var(--black);
}

.command-ghost:hover {
  background: var(--pink);
  color: var(--black);
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.hero-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 120px;
  min-height: 120px;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 3px solid var(--black);
  color: var(--black);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 7px 7px 0 var(--black);
}

.hero-sticker span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.hero-sticker small {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.sticker-yellow {
  top: 8%;
  right: 8%;
  background: var(--acid);
}

.sticker-pink {
  right: 19%;
  bottom: 11%;
  background: var(--pink);
  transform: rotate(-11deg);
}

.hero-corner-code {
  position: absolute;
  right: 15px;
  bottom: 13px;
  display: grid;
  gap: 4px;
  color: rgba(244, 241, 220, 0.65);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
}

.ticker-rail {
  display: flex;
  align-items: stretch;
  min-height: 38px;
  margin: 28px 0 0;
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  background: var(--acid);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-label,
.ticker-end {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 15px;
  background: var(--pink);
  color: var(--black);
}

.ticker-end {
  background: var(--cyan);
}

.ticker-window {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 38px;
  min-height: 34px;
  padding: 0 36px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span:nth-child(3n) {
  color: var(--pink);
}

.section-shell {
  width: min(1340px, calc(100% - 28px));
  margin: 90px auto 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
  color: var(--muted);
}

.section-kicker span:first-child {
  color: var(--acid);
}

.terminal-window,
.small-window,
.manifesto-card {
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-hard);
}

.terminal-window {
  background: rgba(16, 18, 23, 0.92);
}

.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 7px 11px;
  background: var(--acid);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.window-title,
.window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-controls {
  gap: 11px;
  font-size: 16px;
}

.window-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  background: var(--black);
  color: var(--acid);
  font-size: 10px;
}

.terminal-commandline {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.prompt-symbol {
  color: var(--acid);
  font-weight: 900;
}

.command-cursor {
  color: var(--pink);
}

.terminal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
}

.chart-module,
.event-module {
  min-width: 0;
  padding: 22px;
}

.chart-module {
  border-right: 1px solid var(--line);
}

.module-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.module-head h2 {
  margin: 4px 0 0;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.module-price {
  display: grid;
  justify-items: end;
  gap: 3px;
  color: var(--acid);
  text-align: right;
}

.module-price strong {
  font-size: clamp(1.25rem, 3vw, 2.4rem);
  letter-spacing: -0.08em;
}

.module-price span,
.quote-change {
  color: var(--pink);
  font-weight: 900;
}

.chart-stage {
  position: relative;
  min-height: 335px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(217, 255, 47, 0.46);
  background:
    linear-gradient(rgba(217, 255, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 255, 47, 0.09) 1px, transparent 1px),
    #11150e;
  background-size: 40px 40px;
}

.chart-stage::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 46, 189, 0.12), transparent 65%);
  content: "";
  animation: chart-sweep 5s ease-in-out infinite;
}

.chart-stage svg {
  position: absolute;
  inset: 13% 5% 7%;
  width: 90%;
  height: 80%;
  overflow: visible;
}

.chart-area {
  fill: url("#chart-fill");
}

.chart-line {
  fill: none;
  stroke: var(--acid);
  stroke-width: 5;
  stroke-linecap: square;
  filter: drop-shadow(0 0 8px rgba(217, 255, 47, 0.8));
}

.candles line {
  stroke: var(--pink);
  stroke-width: 4;
}

.candles rect {
  fill: var(--pink);
  stroke: var(--black);
  stroke-width: 2;
}

.chart-watermark {
  position: absolute;
  top: 43%;
  left: 8%;
  color: rgba(244, 241, 220, 0.08);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: -0.08em;
  transform: rotate(-7deg);
}

.chart-axis {
  position: absolute;
  right: 8px;
  z-index: 1;
  color: var(--acid);
  font-size: 9px;
}

.chart-axis-top {
  top: 8px;
}

.chart-axis-bottom {
  bottom: 8px;
  color: var(--muted);
}

.chart-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 9px 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.chart-badge {
  padding: 3px 6px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.chart-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.acid-text {
  color: var(--acid);
}

.event-module {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(255, 46, 189, 0.08), transparent 34%),
    rgba(8, 9, 11, 0.66);
}

.compact-head {
  align-items: center;
}

.compact-head h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.1rem;
  letter-spacing: -0.06em;
  text-transform: none;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.event-log {
  display: grid;
  gap: 0;
  min-height: 270px;
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-log p {
  display: grid;
  grid-template-columns: 70px 48px 1fr;
  gap: 6px;
  align-items: start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(244, 241, 220, 0.16);
  color: var(--paper);
  font-size: 10px;
}

.event-log p:last-child {
  border-bottom: 0;
}

.event-log time {
  color: var(--muted);
}

.event-tag {
  color: var(--black);
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.tag-pink {
  background: var(--pink);
}

.tag-acid {
  background: var(--acid);
}

.tag-orange {
  background: var(--orange);
}

.tag-cyan {
  background: var(--cyan);
}

.noise-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid var(--pink);
  background: transparent;
  color: var(--pink);
  font-size: 10px;
  transition: background 150ms ease, color 150ms ease;
}

.noise-button:hover {
  background: var(--pink);
  color: var(--black);
}

.terminal-footerline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.footerline-right {
  margin-left: auto;
  color: var(--acid);
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1280px) {
  .quote-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.board-section {
  position: relative;
}

.board-watermark {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 0;
  color: rgba(244, 241, 220, 0.05);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  letter-spacing: -0.06em;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-6deg);
  pointer-events: none;
}

.quote-wall,
.board-note {
  position: relative;
  z-index: 1;
}

.quote-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-hard);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.quote-card:hover,
.quote-card.slot-active {
  transform: translate(-3px, -4px) rotate(-1deg);
  box-shadow: 0 0 0 3px var(--cyan), 12px 14px 0 var(--black);
}

.quote-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 14px;
  background: var(--acid);
  content: "";
}

.quote-card-featured {
  background: var(--acid);
  color: var(--black);
}

.quote-card-featured::before {
  background: var(--pink);
}

.quote-card-cyan {
  border-color: var(--cyan);
}

.quote-card-cyan::before {
  background: var(--cyan);
}

.quote-card-orange {
  border-color: var(--orange);
}

.quote-card-pink {
  border-color: var(--pink);
}

.quote-card-pink::before {
  background: var(--pink);
}

.quote-card-pink .card-stamp {
  color: var(--pink);
}

.quote-card-gold {
  border-color: var(--gold);
}

.quote-card-gold::before {
  background: var(--gold);
}

.quote-card-gold .card-stamp {
  color: var(--gold);
}

.quote-card-orange::before {
  background: var(--orange);
}

.quote-card-top,
.quote-card-middle,
.quote-card-bottom {
  position: relative;
  z-index: 1;
}

.quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 0;
}

.quote-badge {
  color: var(--pink);
  font-size: 10px;
}

.quote-card-featured .quote-badge {
  color: var(--black);
}

.quote-symbol {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.07em;
}

.quote-card-middle {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px 24px;
}

.quote-name {
  margin: 0 0 7px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quote-card-featured .quote-name {
  color: var(--pink);
}

.quote-card h2 {
  max-width: 8ch;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  letter-spacing: -0.06em;
  line-height: 0.83;
  text-transform: uppercase;
}

.quote-description {
  max-width: 38ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.quote-card-featured .quote-description {
  color: rgba(8, 9, 11, 0.78);
}

.quote-card-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px 19px;
  border-top: 2px solid currentColor;
}

.quote-price {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.card-scribble,
.card-stamp {
  position: absolute;
  z-index: 0;
  color: rgba(8, 9, 11, 0.14);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
  line-height: 0.8;
  pointer-events: none;
  transform: rotate(-16deg);
}

.card-scribble {
  right: -7px;
  bottom: 70px;
}

.card-stamp {
  right: 19px;
  bottom: 90px;
  color: var(--cyan);
  font-size: 4rem;
  opacity: 0.65;
  transform: rotate(-22deg);
}

.quote-card-orange .card-stamp {
  color: var(--orange);
}

.board-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 13px 15px;
  border: 1px dashed var(--muted);
  color: var(--muted);
  font-size: 10px;
}

.note-mark {
  color: var(--pink);
  font-weight: 900;
}

.text-button {
  margin-left: auto;
  padding: 0;
  border-bottom: 1px solid var(--acid);
  background: transparent;
  color: var(--acid);
  font-size: 10px;
}

.text-button:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.chaos-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.5fr) minmax(220px, 0.8fr);
  align-items: stretch;
  gap: 18px;
}

.small-window {
  overflow: hidden;
}

.receipt-window {
  align-self: end;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--black);
  transform: rotate(-2deg);
}

.window-titlebar-white {
  background: var(--paper);
  border-bottom: 2px solid var(--black);
}

.receipt-content {
  padding: 24px 20px 27px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(8, 9, 11, 0.08) 23px),
    var(--paper);
}

.receipt-heading {
  margin: 0 0 27px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 0.9;
}

.receipt-line,
.receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(8, 9, 11, 0.45);
  font-size: 10px;
  text-transform: uppercase;
}

.receipt-line b {
  color: var(--pink);
}

.receipt-total {
  margin-top: 17px;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  font-weight: 900;
}

.receipt-foot {
  margin: 24px 0 0;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.manifesto-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255, 46, 189, 0.95), rgba(127, 92, 255, 0.88)),
    var(--pink);
  color: var(--black);
  transform: rotate(1deg);
}

.manifesto-card::before,
.manifesto-card::after {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 2px solid var(--black);
  content: "";
  opacity: 0.25;
  transform: rotate(23deg);
}

.manifesto-card::before {
  top: -92px;
  right: -65px;
}

.manifesto-card::after {
  right: -120px;
  bottom: -145px;
}

.manifesto-card .manifesto-kicker {
  color: var(--black);
}

.manifesto-card h2 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 32px 0 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.manifesto-card h2 span {
  color: var(--acid);
  text-shadow: 4px 4px 0 var(--black);
}

.manifesto-card p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.manifesto-quote {
  margin-top: 20px !important;
  color: var(--acid);
  font-size: 15px !important;
  text-shadow: 2px 2px 0 var(--black);
}

.manifesto-button {
  position: relative;
  z-index: 1;
  margin-top: 27px;
  padding: 12px 14px;
  border: 2px solid var(--black);
  background: var(--acid);
  color: var(--black);
  font-size: 10px;
  box-shadow: 5px 5px 0 var(--black);
}

.manifesto-button:hover {
  background: var(--cyan);
}

.radio-window {
  align-self: start;
  border-color: var(--purple);
  background: #181426;
  color: var(--paper);
  transform: rotate(2.5deg);
}

.radio-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(244, 241, 220, 0.22);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.radio-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
}

.radio-display {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 16px 19px;
}

.radio-frequency {
  color: var(--cyan);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.8;
  text-shadow: 0 0 15px rgba(37, 235, 255, 0.8);
}

.radio-unit {
  color: var(--muted);
  font-size: 9px;
}

.radio-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 66px;
  padding: 0 16px;
  border-top: 1px solid rgba(244, 241, 220, 0.22);
  border-bottom: 1px solid rgba(244, 241, 220, 0.22);
}

.radio-bars i {
  display: block;
  width: 100%;
  height: 20%;
  background: var(--pink);
  animation: equalizer 640ms ease-in-out infinite alternate;
}

.radio-bars i:nth-child(2n) {
  height: 60%;
  background: var(--acid);
  animation-delay: -200ms;
}

.radio-bars i:nth-child(3n) {
  height: 34%;
  background: var(--cyan);
  animation-delay: -420ms;
}

.radio-track {
  margin: 19px 16px 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.25;
}

.radio-track strong {
  color: var(--paper);
}

.radio-foot {
  margin: 32px 16px 20px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 1.4fr) minmax(160px, 210px) auto;
  gap: 24px;
  align-items: start;
  margin-top: 120px;
  padding: 28px 22px 100px;
  border-top: 2px solid var(--acid);
  background: var(--ink);
  color: var(--muted);
  font-size: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--acid);
}

.xexe-window {
  border-color: var(--cyan);
  background: rgba(16, 18, 23, 0.92);
  color: var(--paper);
}

.xexe-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px;
}

.xexe-handle {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.xexe-handle:hover {
  color: var(--acid);
}

.xexe-handle.is-pending {
  color: var(--muted);
  cursor: not-allowed;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  box-shadow: 3px 3px 0 var(--pink);
}

.footer-logo {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.footer-disclosure {
  max-width: 50ch;
  line-height: 1.45;
}

.footer-system {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
  font-weight: 900;
}

.control-deck {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 28px);
  padding: 7px;
  border: 1px solid var(--acid);
  background: rgba(8, 9, 11, 0.92);
  box-shadow: 4px 4px 0 var(--pink);
  backdrop-filter: blur(12px);
}

.deck-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 9px;
}

.deck-button:hover,
.deck-button[aria-pressed="true"] {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.deck-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.deck-button[aria-pressed="true"] .deck-led {
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.volume-control input {
  width: 70px;
  accent-color: var(--pink);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 76px;
  z-index: 35;
  max-width: min(360px, calc(100vw - 40px));
  padding: 10px 13px;
  border: 2px solid var(--acid);
  background: var(--black);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.strobe-on .hero-title {
  animation: title-jolt 4.6s steps(1, end) infinite;
}

.strobe-on .hero-sticker {
  animation: sticker-wiggle 2.7s ease-in-out infinite;
}

.strobe-on .status-dot,
.strobe-on .live-label .status-dot {
  animation: pulse-dot 940ms steps(2, end) infinite;
}

.motion-reduced * {
  animation-play-state: paused !important;
}

@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;
  }
}

.motion-reduced *,
.motion-reduced *::before,
.motion-reduced *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

@keyframes blink {
  0%,
  43% {
    opacity: 1;
  }
  44%,
  100% {
    opacity: 0;
  }
}

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

@keyframes title-jolt {
  0%,
  88%,
  100% {
    transform: skew(-5deg) translate(0);
  }
  89% {
    transform: skew(-5deg) translate(-5px, 1px);
  }
  90% {
    transform: skew(-5deg) translate(4px, -1px);
  }
  91% {
    transform: skew(-5deg) translate(0);
  }
}

@keyframes sticker-wiggle {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -8px;
  }
}

@keyframes pulse-dot {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0.18;
  }
}

@keyframes chart-sweep {
  0%,
  100% {
    transform: translateX(-80%);
    opacity: 0;
  }
  38%,
  62% {
    opacity: 1;
  }
  75% {
    transform: translateX(80%);
    opacity: 0;
  }
}

@keyframes equalizer {
  from {
    transform: scaleY(0.35);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@media (max-width: 960px) {
  .terminal-grid,
  .chaos-grid {
    grid-template-columns: 1fr;
  }

  .chart-module {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-module {
    min-height: auto;
  }

  .quote-wall {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 300px;
  }

  .quote-card h2 {
    max-width: 11ch;
  }

  .receipt-window,
  .radio-window,
  .manifesto-card {
    transform: none;
  }

  .receipt-window {
    max-width: 450px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 13px;
  }

  .system-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 9px 12px;
  }

  .system-controls {
    display: none;
  }

  .hero {
    min-height: 680px;
    margin: 10px;
  }

  .hero-content {
    width: 100%;
    min-height: 680px;
    justify-content: flex-end;
    padding: 28px 20px 44px;
  }

  .hero-bg {
    object-position: 65% center;
  }

  .hero-title {
    margin-left: -3px;
    font-size: clamp(4.6rem, 22vw, 7.5rem);
  }

  .hero-brand {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-brand-mark {
    width: 56px;
    height: 56px;
  }

  .hero-brand-meta strong {
    font-size: 1.1rem;
  }

  .hero-brand-meta small {
    font-size: 8px;
  }

  .hero-dek {
    font-size: 1.15rem;
  }

  .hero-sticker {
    width: 88px;
    min-height: 88px;
  }

  .hero-sticker span {
    font-size: 16px;
  }

  .hero-sticker small {
    font-size: 8px;
  }

  .sticker-yellow {
    top: 7%;
    right: 6%;
  }

  .sticker-pink {
    right: 6%;
    bottom: 45%;
  }

  .hero-corner-code {
    display: none;
  }

  .ticker-label,
  .ticker-end {
    padding: 0 9px;
    font-size: 9px;
  }

  .section-shell {
    width: min(100% - 20px, 1340px);
    margin-top: 67px;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
  }

  .chart-module,
  .event-module {
    padding: 15px;
  }

  .chart-stage {
    min-height: 250px;
  }

  .chart-footer {
    flex-direction: column;
    gap: 4px;
  }

  .event-log p {
    grid-template-columns: 55px 42px 1fr;
    font-size: 9px;
  }

  .terminal-footerline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    font-size: 8px;
  }

  .footerline-right {
    margin-left: 0;
  }

  .quote-card {
    min-height: 330px;
  }

  .quote-card h2 {
    font-size: 3.5rem;
  }

  .board-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .text-button {
    width: 100%;
    margin: 5px 0 0 20px;
    text-align: left;
  }

  .manifesto-card {
    min-height: 420px;
    padding: 29px 22px;
  }

  .manifesto-card h2 {
    font-size: 4rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 80px;
    padding: 26px 16px 150px;
  }

  .control-deck {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .volume-control {
    order: 3;
    width: 100%;
    padding: 1px 3px;
  }

  .volume-control input {
    flex: 1;
  }

  .toast {
    right: 10px;
    bottom: 126px;
    left: 10px;
    max-width: none;
  }
}


/* AFTERHOURS: reference-locked rework. Media framing is never transformed. */
:root { --chrome: #c5c5be; }
html { scroll-padding-top: 70px; }
body { background: #08090b; }
[hidden] { display: none !important; }
summary { cursor: pointer; }
summary:focus-visible { outline: 3px solid var(--cyan); outline-offset: 5px; }
.menubar { background: var(--chrome); color: #101015; border: 2px outset #eee; box-shadow: 0 4px 0 #000; }
.menubar-link, .menubar-item { color: #101015; }
.menubar-link:hover, .menubar-link:focus-visible, .menubar-link.is-active { color: #000; background: var(--acid); }
.menubar-link::after { display: none; }
.hero { margin: 16px 16px 0; min-height: 0; border: 2px solid var(--chrome); box-shadow: 5px 5px 0 var(--pink); background: #08090b; }
.hero-topline, .hero-bottomline { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 16px; font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.hero-topline { background: #15151a; color: var(--acid); border-bottom: 1px solid #737575; }
.hero-topline span:first-child { display: flex; gap: 9px; align-items: center; }
.hero-bottomline { background: var(--acid); color: #08090b; }
.hero-bottomline b { color: #912055; margin: 0 10px; }
.hero-bottomline a { text-underline-offset: 4px; }
.hero-stage { position: relative; isolation: isolate; aspect-ratio: 16/9; overflow: hidden; }
.hero-bg { z-index: -3; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transform: none; filter: none; transition: none; }
.hero-vignette { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.25), transparent 45%); mix-blend-mode: normal; }
.hero-title-wrap { position: absolute; inset: 5% auto auto 4%; width: 92%; margin: 0; }
.hero-title-wrap .eyebrow { display: inline-block; padding: 5px 8px; font-size: clamp(8px,.7vw,11px); color: var(--paper); border-color: var(--paper); box-shadow: 3px 3px 0 var(--pink); }
.hero-title { display: flex; width: fit-content; margin: 18px 0 20px; font-size: clamp(60px,15.5vw,246px); line-height: .8; letter-spacing: -.065em; color: var(--acid); transform: skew(-5deg); text-shadow: 5px 5px 0 #09090b, 8px 6px 0 var(--pink); }
.hero-title::before, .hero-title::after { display: none; }
.nas-bright { color: var(--acid); opacity: 1; }
.dafuq-letter { padding: 0; background: transparent; color: inherit; opacity: 1; font: inherit; letter-spacing: inherit; text-shadow: inherit; cursor: pointer; }
.dafuq-letter:hover, .dafuq-letter:focus-visible, .dafuq-letter.slot-active { color: var(--pink); text-shadow: 3px 3px 0 #08090b, 5px 5px 0 var(--cyan); }
.slot-card, .slot-card.is-idle { display: inline-block; width: auto; max-width: 100%; min-height: 0; padding: 5px 9px; margin: 0; border: 1px solid var(--acid); background: #08090be8; color: var(--acid); box-shadow: none; font-size: clamp(8px,.85vw,12px); }
.hero-content { position: absolute; z-index: 2; left: 4%; bottom: 8%; width: 41%; min-height: 0; padding: 0; display: block; }
.hero-dek { font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: clamp(24px,3.7vw,58px); font-weight: 900; line-height: .97; color: var(--paper); margin: 0 0 16px; letter-spacing: -.01em; text-shadow: 3px 3px 0 #08090b; }
.hero-dek span { color: var(--acid); }
.hero-oneliner { margin: 0 0 20px; font-size: clamp(10px,1.05vw,15px); color: var(--paper); line-height: 1.5; text-shadow: 1px 2px 0 #000; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 0; }
.command-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding: 12px 17px; font-size: 11px; line-height: 1.2; text-decoration: none; cursor: pointer; }
.command-ghost { background: #08090bd9; }
.hero-note { margin: 18px 0 0; font-size: 9px; color: #e7e7dd; }
.stage-label { position: absolute; right: 3%; top: 37%; color: var(--acid); text-align: right; font-weight: 900; font-size: clamp(12px,2vw,28px); line-height: 1; text-shadow: 3px 3px #08090b; transform: rotate(4deg); }
.stage-label b { display: block; padding-top: 10px; font-family: Impact,sans-serif; }
.hero-sticker.sticker-pink { right: 4%; bottom: 11%; top: auto; min-height: 0; width: clamp(72px,9vw,145px); padding: 12px; color: #08090b; border: 3px solid #08090b; transform: rotate(8deg); box-shadow: 5px 5px 0 var(--acid); }
.hero-sticker span { font-family: Impact,sans-serif; font-size: clamp(23px,3vw,50px); line-height: 1; }
.hero-sticker small { font-size: clamp(8px,1vw,13px); font-weight: 900; }
.stage-caption { position: absolute; bottom: 2%; left: 4%; right: 3%; display: flex; justify-content: space-between; color: var(--paper); font-size: 8px; letter-spacing: .08em; text-shadow: 1px 1px #08090b; }
.ticker-rail { margin-top: 20px; border-top: 1px solid var(--pink); border-bottom: 1px solid var(--pink); }
.ticker-track { animation-duration: 17s; }
.ticker-label { background: var(--pink); color: #08090b; }
.club-banner { width: min(100% - 56px,1340px); margin: 60px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; border-top: 1px dashed #797a64; border-bottom: 1px dashed #797a64; }
.club-banner strong { font-family: Impact,sans-serif; font-size: clamp(30px,5.2vw,78px); line-height: .95; letter-spacing: -.025em; transform: rotate(-2deg); }
.club-banner > span { writing-mode: vertical-rl; font-size: 22px; color: var(--pink); font-weight: bold; }
.club-banner img { width: clamp(60px,10vw,120px); height: auto; animation: shuriken-spin 6s linear infinite; }
.section-shell { margin-top: 76px; }
.section-kicker { border-bottom-color: var(--acid); }
.window-titlebar { background: #c5c5be; color: #0a0a11; border: 2px outset #e8e8e4; font-weight: 900; }
.window-titlebar .window-title { color: #0a0a11; }
.window-controls span { border: 2px outset #e9e9e5; background: #c5c5be; color: #101015; }
.main-terminal { box-shadow: 8px 8px 0 #442b69; }
.terminal-commandline { color: var(--acid); }
.chart-stage::after { animation-duration: 3s; }
.quote-card { transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.quote-card:hover { transform: translateY(-8px) rotate(-1deg); }
.quote-card .quote-symbol { animation: ticker-skew 5s steps(1) infinite; }
.quote-card:nth-child(2) .quote-symbol { animation-delay: -2s; }
.quote-card:nth-child(3) .quote-symbol { animation-delay: -3.6s; }
.quote-card:nth-child(4) .quote-symbol { animation-delay: -1s; }
.quote-card-featured .quote-symbol { animation-delay: -4s; }
.quote-card .card-stamp { animation: stamp-drift 4s ease-in-out infinite alternate; }
.radio-play { color: #08090b; background: var(--acid); cursor: pointer; padding: 8px 16px; border: 2px outset #efffa0; margin-top: 12px; font-weight: bold; }
.rave-divider { overflow: hidden; margin: 92px 0 0; padding: 13px 0; background: var(--pink); color: #08090b; transform: rotate(-2deg) scale(1.03); border-top: 4px solid var(--acid); border-bottom: 4px solid var(--acid); }
.rave-divider div { width: max-content; font-family: Impact,sans-serif; font-size: clamp(28px,4vw,58px); line-height: 1; word-spacing: .3em; animation: ticker 15s linear infinite reverse; }
.how-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; margin: 36px 0; }
.how-intro h2 { font-family: Impact,sans-serif; font-size: clamp(64px,10vw,150px); line-height: .86; margin: 0; letter-spacing: -.045em; }
.how-intro h2 span { color: var(--acid); text-shadow: 6px 5px 0 #ff2ebd; }
.how-intro > div { max-width: 560px; }
.how-lead { font-size: clamp(22px,2.7vw,38px); line-height: 1.1; font-weight: 900; margin: 0 0 18px; letter-spacing: -.04em; }
.how-intro p:not(.how-lead) { line-height: 1.8; color: #c3c3bb; }
.how-intro .text-button { display: inline-block; margin-top: 10px; color: var(--cyan); }
.reward-flow { margin: 42px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid #8a8a73; }
.reward-flow li { padding: 28px; border-right: 1px solid #8a8a73; position: relative; background: #111315; }
.reward-flow li:last-child { border-right: 0; }
.flow-number { display: inline-block; padding: 3px 7px; border: 1px solid var(--acid); color: var(--acid); font-size: 11px; }
.reward-flow h3 { font-family: Impact,sans-serif; font-size: clamp(26px,2.8vw,43px); margin: 18px 0 12px; line-height: 1; }
.reward-flow p { color: #c7c7bd; line-height: 1.7; font-size: 13px; margin: 0 0 22px; }
.flow-file { color: var(--cyan); font-size: 10px; }
.mechanic-foot { display: flex; gap: 30px; align-items: center; justify-content: space-between; border: 1px solid #8a8a73; border-top: 0; padding: 20px 28px; }
.mechanic-foot p { max-width: 750px; color: #b8b8b0; font-size: 11px; line-height: 1.7; margin: 0; }
.mechanic-foot strong { color: var(--acid); }
.mechanic-foot a { flex-shrink: 0; color: var(--pink); font-size: 11px; font-weight: bold; text-underline-offset: 4px; }
.quick-answers { margin-top: 30px; }
.quick-answers details { border-bottom: 1px solid #444740; padding: 0 5px; }
.quick-answers summary { padding: 17px 0; font-size: 14px; font-weight: bold; }
.quick-answers details[open] summary { color: var(--cyan); }
.quick-answers p { max-width: 85ch; color: #c3c3b7; line-height: 1.8; padding-bottom: 10px; }
.receipt-intro { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 30px 0; }
.receipt-intro h2 { font-family: Impact,sans-serif; font-size: clamp(30px,3.8vw,54px); margin: 0; line-height: 1; }
.receipt-intro p { max-width: 38ch; color: #b8b8b0; font-size: 12px; }
.tracker-window { box-shadow: 7px 7px 0 #24353a; }
#tracker-status { padding: 14px 20px; margin: 0; color: var(--cyan); font-size: 11px; border-bottom: 1px solid #3f433d; }
.agent-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; padding: 42px; background: var(--acid); color: #090a0b; border: 3px solid #090a0b; outline: 1px solid var(--acid); box-shadow: 10px 10px 0 var(--pink); margin-bottom: 90px; }
.agent-art { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; border-right: 2px dashed #08090b; padding-right: 40px; }
.agent-art img { width: min(100%,200px); height: auto; animation: shuriken-spin 9s linear infinite; }
.agent-art > span { font-size: 28px; font-weight: 900; }
.agent-art small { font-weight: bold; font-size: 10px; }
.agent-copy .eyebrow { background: #08090b; color: var(--acid); border: 0; box-shadow: 3px 3px 0 var(--pink); font-size: 10px; }
.agent-copy h2 { font-family: Impact,sans-serif; font-size: clamp(32px,5vw,72px); line-height: .95; margin: 25px 0 18px; letter-spacing: -.02em; }
.agent-copy p { max-width: 56ch; font-size: 13px; line-height: 1.7; }
.agent-copy .command-button { background: #08090b; color: var(--acid); border-color: #08090b; box-shadow: 4px 4px 0 var(--pink); margin-top: 12px; }
.agent-read { display: block; margin-top: 20px; font-size: 11px; font-weight: bold; text-underline-offset: 4px; }
#agent-dialog { padding: 0; background: #111315; color: var(--paper); border: 2px solid #d0d0c7; width: min(620px,calc(100% - 30px)); max-height: 85svh; box-shadow: 8px 8px 0 var(--pink); }
#agent-dialog::backdrop { background: #030306d9; backdrop-filter: blur(5px); }
#agent-close { background: var(--chrome); color: #08090b; border: 2px outset #eee; min-width: 32px; min-height: 32px; cursor: pointer; }
.agent-dialog-body { padding: 26px; }
.agent-dialog-body .eyebrow { display: inline-block; box-shadow: none; font-size: 10px; }
.agent-dialog-body h2 { font-family: Impact,sans-serif; font-size: 42px; line-height: 1; margin: 22px 0 15px; }
.agent-dialog-body p { color: #c7c7bc; font-size: 12px; line-height: 1.7; }
.provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.provider-grid button, .provider-grid a { min-height: 48px; padding: 12px; font-weight: 900; font-size: 11px; color: #08090b; background: var(--chrome); border: 3px outset #eeeeeb; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: space-between; }
.provider-grid button:hover, .provider-grid a:hover { background: var(--acid); }
.agent-dialog-actions { display: flex; align-items: center; gap: 20px; font-size: 11px; }
.agent-dialog-actions button { min-height: 44px; background: var(--acid); color: #08090b; padding: 10px 15px; font-weight: bold; cursor: pointer; }
#agent-status { color: var(--cyan); min-height: 20px; }
#agent-brief-text { white-space: pre-wrap; overflow-wrap: anywhere; font-size: 11px; max-height: 260px; overflow: auto; padding: 14px; background: #08090b; user-select: text; }
.agent-dialog-body details summary { padding: 12px 0; font-size: 11px; }
.control-deck { background: #c5c5be; border: 2px outset #e5e5e1; box-shadow: 4px 4px 0 #08090b; }
.deck-button { background: #141619; min-height: 35px; }
.volume-control { color: #08090b; }
.control-deck::before { content: 'RAVE CONTROL'; font-size: 8px; font-weight: 900; color: #08090b; padding-left: 6px; }
.site-footer { padding-bottom: 110px; }
/* Large movement lives in decorative art; receipt text remains still. */
.strobe-on .hero-title { animation: title-jolt 3.8s steps(1,end) infinite; }
.strobe-on .hero-sticker { animation: sticker-wiggle 1.8s ease-in-out infinite; }
.hero-stage::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 4; border: 3px solid var(--pink); opacity: 0; animation: rave-light .9s steps(1,end) infinite; }
.main-terminal::after { animation-duration: 1.2s; }
.club-banner strong { animation: banner-jitter 6s steps(1,end) infinite; }
.strobe-off .hero-stage::after { display: none; }
.strobe-off .hero-title, .strobe-off .status-dot, .strobe-off .blink, .strobe-off .command-cursor { animation: none; }
body.motion-reduced *, body.motion-reduced *::before, body.motion-reduced *::after, body.page-hidden *, body.page-hidden *::before, body.page-hidden *::after { animation-play-state: paused !important; }
body.motion-reduced .hero-stage::after { display: none; }
html:has(.motion-reduced) { scroll-behavior: auto; }
@keyframes shuriken-spin { to { transform: rotate(360deg); } }
@keyframes stamp-drift { from { transform: rotate(-12deg) translateY(-5px); } to { transform: rotate(5deg) translateY(6px); } }
@keyframes ticker-skew { 0%,93%,100% { transform: none; } 94%,97% { transform: translateX(3px) skew(-7deg); } 95%,98% { transform: translateX(-3px); } }
@keyframes rave-light { 0%,14%,100% { opacity: 0; } 6%,10% { opacity: 1; } }
@keyframes banner-jitter { 0%,90%,100% { transform: rotate(-2deg); } 92% { transform: rotate(1deg) translateX(4px); } 94% { transform: rotate(-3deg) translateX(-3px); } }
@media (min-width: 1600px) { .hero-content { bottom: 12%; } }
@media (max-width: 1000px) {
  .hero-actions { gap: 8px; }
  .hero-actions .command-button { padding: 9px 10px; font-size: 9px; min-height: 36px; }
  .hero-note { margin-top: 12px; font-size: 8px; }
  .hero-oneliner { margin-bottom: 13px; }
  .hero-dek { margin-bottom: 10px; }
  .hero-topline span:nth-child(2) { display: none; }
  .how-intro { gap: 30px; }
  .reward-flow li { padding: 20px; }
  .agent-section { gap: 30px; padding: 30px; }
  .control-deck::before { display: none; }
}
@media (max-width: 640px) {
  .system-bar { flex-direction: row; align-items: center; font-size: 8px; gap: 8px; padding: 8px 10px; }
  .system-status { gap: 5px; }
  .system-status > span:not(.status-dot):not(.system-time) { display: none; }
  .system-time { display: none; }
  .menubar { flex-wrap: wrap; white-space: normal; padding: 2px 5px; font-size: 8px; overflow: visible; gap: 0; }
  .menubar-link { padding: 7px 6px; }
  .menubar-item, .menubar-right, .menubar-spacer { display: none; }
  .hero { margin: 10px 10px 0; min-height: 0; }
  .hero-topline, .hero-bottomline { padding: 8px 10px; font-size: 8px; }
  .hero-bottomline { flex-wrap: wrap; gap: 8px; }
  .hero-bottomline b { margin: 0 3px; }
  .hero-stage { aspect-ratio: auto; }
  .hero-bg { display: block; position: relative; z-index: -3; height: auto; aspect-ratio: 16/9; object-fit: contain; object-position: center; }
  .hero-vignette { display: none; }
  .hero-title-wrap { top: 10px; left: 4%; width: 92%; }
  .hero-title-wrap .eyebrow { font-size: 6px; padding: 3px 5px; }
  .hero-title { font-size: 16.5vw; margin: 15px 0 13px; line-height: .8; text-shadow: 3px 3px #08090b, 5px 4px var(--pink); }
  .slot-card, .slot-card.is-idle { font-size: 7px; padding: 4px 5px; }
  .hero-content { position: relative; left: auto; bottom: auto; width: 100%; min-height: 0; padding: 25px 20px 27px; background: #101215; border-top: 1px solid var(--acid); }
  .hero-dek { font-size: clamp(34px,8.5vw,52px); line-height: .96; margin-bottom: 15px; }
  .hero-oneliner { font-size: 12px; margin-bottom: 20px; }
  .hero-actions .command-button { font-size: 10px; min-height: 44px; padding: 12px; }
  .hero-note { margin-top: 20px; font-size: 8px; }
  .stage-label, .hero-sticker.sticker-pink, .stage-caption { display: none; }
  .hero-stage::after { height: auto; aspect-ratio: 16/9; bottom: auto; border-width: 2px; }
  .ticker-rail { margin-top: 16px; }
  .ticker-track { font-size: 11px; }
  .ticker-end { display: none; }
  .club-banner { width: calc(100% - 32px); margin-top: 36px; padding: 20px 0; gap: 12px; }
  .club-banner > span { font-size: 13px; }
  .club-banner > span:last-child { display: none; }
  .club-banner strong { font-size: 30px; }
  .club-banner img { width: 58px; }
  .section-shell { width: calc(100% - 24px); margin-top: 54px; }
  .quote-card { min-height: 280px; }
  .quote-card-featured { min-height: 310px; }
  .rave-divider { margin-top: 55px; }
  .how-intro { grid-template-columns: 1fr; gap: 28px; margin: 30px 6px; }
  .how-intro h2 { font-size: 88px; }
  .how-lead { font-size: 27px; }
  .how-intro p:not(.how-lead) { font-size: 13px; }
  .reward-flow { grid-template-columns: 1fr; margin-top: 28px; }
  .reward-flow li { padding: 22px; border-right: 0; border-bottom: 1px solid #8a8a73; }
  .reward-flow li:last-child { border-bottom: 0; }
  .reward-flow h3 { font-size: 32px; }
  .mechanic-foot { align-items: flex-start; flex-direction: column; gap: 16px; padding: 20px; }
  .quick-answers summary { font-size: 12px; }
  .receipt-intro { align-items: flex-start; flex-direction: column; gap: 10px; }
  .receipt-intro h2 { font-size: 36px; }
  .receipt-intro p { margin: 0; }
  .agent-section { display: block; padding: 25px 20px; margin-bottom: 60px; }
  .agent-art { flex-direction: row; justify-content: space-between; border-right: 0; border-bottom: 2px dashed #08090b; padding: 0 0 20px; margin-bottom: 24px; }
  .agent-art img { width: 70px; order: -1; }
  .agent-art > span { font-size: 21px; }
  .agent-art small { max-width: 70px; }
  .agent-copy h2 { font-size: 44px; }
  .agent-copy .eyebrow { font-size: 8px; padding: 6px; }
  .agent-dialog-body { padding: 20px; }
  .provider-grid { grid-template-columns: 1fr; }
  .agent-dialog-body h2 { font-size: 36px; }
  .control-deck { right: 8px; left: 8px; bottom: 8px; gap: 4px; display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 5px; }
  .deck-button { padding: 8px 5px; font-size: 8px; min-height: 37px; }
  .volume-control { grid-column: 1 / -1; grid-row: 2; display: flex; justify-content: center; padding: 5px 2px; }
  .volume-control input { width: min(180px,60%); }
  .toast { bottom: 108px; }
  .site-footer { padding-bottom: 135px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage::after { display: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
/* Localized dance-floor movement, with no full-screen white flash. */
html { overflow-x: clip; }
.club-banner { position: relative; isolation: isolate; overflow: hidden; }
.club-banner::before,
.club-banner::after { content: ''; position: absolute; z-index: -1; pointer-events: none; aspect-ratio: 1; height: auto; translate: -50% -50%; transform-origin: center; }
/* Twelve rays cross six counter-rotating rays, contained inside this banner. */
.club-banner::before { width: 145%; top: 42%; left: 35%; opacity: .48; background: repeating-conic-gradient(from 10deg, transparent 0deg 24deg, #d9ff2faa 25deg 27deg, transparent 28deg 54deg, #ff2ebdbb 55deg 57deg, transparent 58deg 84deg, #25ebffaa 85deg 87deg, transparent 88deg 90deg); animation: shuriken-spin 7s linear infinite; }
.club-banner::after { width: 105%; top: 72%; left: 73%; opacity: .42; background: repeating-conic-gradient(from 35deg, transparent 0deg 53deg, #ff792faa 54deg 55deg, #ff2ebdbb 56deg 57deg, transparent 58deg 60deg); animation: shuriken-spin 11s linear infinite reverse; }
.strobe-off .club-banner::before, .strobe-off .club-banner::after,
.motion-reduced .club-banner::before, .motion-reduced .club-banner::after { animation: none; opacity: .12; }
.page-hidden .club-banner::before, .page-hidden .club-banner::after { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .club-banner::before, .club-banner::after { animation: none; opacity: .12; } }
.quote-card { animation: card-dance 3.7s ease-in-out infinite alternate; }
.quote-card:nth-child(2) { animation-delay: -1.4s; animation-duration: 4.1s; }
.quote-card:nth-child(3) { animation-delay: -2.5s; animation-duration: 3.1s; }
.quote-card:nth-child(4) { animation-delay: -3s; animation-duration: 4.7s; }
.quote-card:nth-child(5) { animation-delay: -1s; }
.quote-card:hover { animation-play-state: paused; }
.manifesto-card { animation: manifesto-tilt 5s ease-in-out infinite alternate; }
.radio-window { animation: radio-rock 2.2s ease-in-out infinite alternate; }
.strobe-off .quote-symbol, .strobe-off .club-banner strong { animation: none; }
@keyframes card-dance { from { transform: translateY(-5px) rotate(-.8deg); } to { transform: translateY(6px) rotate(.8deg); } }
@keyframes manifesto-tilt { from { transform: rotate(-1deg) translateY(4px); } to { transform: rotate(1deg) translateY(-4px); } }
@keyframes radio-rock { from { transform: rotate(2deg) translateY(-5px); } to { transform: rotate(-2deg) translateY(5px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; } }
/* Clip decorative bleed without creating a second scrolling container. */
body { overflow-x: clip; }
@media (min-width: 641px) and (max-width: 900px) {
  .hero-stage { aspect-ratio: auto; }
  .hero-bg { position: relative; height: auto; aspect-ratio: 16/9; }
  .hero-content { position: relative; left: auto; bottom: auto; width: 100%; padding: 26px 30px; background: #101215; border-top: 1px solid var(--acid); }
  .hero-dek { font-size: 42px; }
  .hero-oneliner { font-size: 13px; }
  .hero-actions .command-button { min-height: 44px; font-size: 11px; padding: 12px 16px; }
  .stage-label, .hero-sticker.sticker-pink, .stage-caption { display: none; }
  .hero-stage::after { bottom: auto; aspect-ratio: 16/9; }
  .menubar-right { display: none; }
}

/* The blade mark: identity, official coordinates and interaction cues. */
.menubar-brand { flex: 0 0 28px; display: flex; align-items: center; }
.menubar-brand img { display: block; object-fit: contain; filter: grayscale(1) invert(1) contrast(3); mix-blend-mode: multiply; }
.menubar-ca { flex: 0 0 auto; min-width: 88px; min-height: 32px; margin: 3px 7px 3px 4px; padding: 7px 10px; border: 2px outset #f2ffab; background: var(--acid); color: #08090b; font: 900 9px/1.2 'Courier New',monospace; letter-spacing: .03em; white-space: nowrap; cursor: pointer; }
.menubar-ca:hover:not(:disabled) { background: var(--pink); border-color: #ffb2e8; }
.menubar-ca:focus-visible { outline: 3px solid #101015; outline-offset: 2px; }
.menubar-ca:disabled { background: #dce1b1; border-color: #f6f8df; color: #3c4130; opacity: 1; cursor: default; }
.menubar-link.buy-nav { background: var(--acid); box-shadow: inset -1px -1px #676767; }
.translate { appearance: none; display: inline-block; border: 0; padding: 0; background: transparent; color: inherit; font: inherit; cursor: help; text-decoration: underline dotted; text-underline-offset: .25em; }
.translate:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.club-banner > .translate { writing-mode: vertical-rl; font-size: 20px; font-weight: 900; color: var(--pink); min-height: 125px; }
.brand-button { border: 0; padding: 0; background: transparent; cursor: pointer; flex: 0 0 auto; mix-blend-mode: screen; }
.club-banner img, .agent-art img { animation: mark-float 1.8s ease-in-out infinite alternate; object-fit: contain; }
.club-banner img, .footer-mark { mix-blend-mode: screen; }
.agent-art img { filter: grayscale(1) invert(1) contrast(3); mix-blend-mode: multiply; }
@keyframes mark-float { from { transform: rotate(-7deg) translateY(4px); } to { transform: rotate(6deg) translateY(-6px); } }
.agent-art > .translate { font-size: 28px; font-weight: 900; }
.dafuq-letter { position: relative; }
.dafuq-letter.letter-wave { animation: dafuq-intro 3.4s ease-in-out 2 both; animation-delay: calc(var(--letter-index) * 180ms + 400ms); }
@keyframes dafuq-intro { 0%,40%,100% { color: var(--acid); transform: translateY(0); } 10%,24% { color: var(--pink); transform: translateY(-.065em); text-shadow: 3px 3px #08090b, 5px 5px var(--cyan); } }
.hero-title:hover .letter-wave, .hero-title:focus-within .letter-wave { animation: none; }
.launch-strip { width: min(100% - 56px, 1340px); margin: 28px auto; display: grid; grid-template-columns: 220px 1fr; gap: 22px; padding: 24px; border: 1px solid #55564d; background: #131416; box-shadow: 5px 5px var(--acid); }
.launch-intro { display: flex; flex-direction: column; gap: 10px; }
.launch-intro .eyebrow { font-size: 9px; color: var(--pink); }
.launch-intro strong { font-family: Impact,sans-serif; font-size: 35px; }
.launch-intro > span:last-child { font-size: 10px; color: var(--muted); }
.contract-box { min-width: 0; }
.contract-box label { display: block; font-size: 10px; color: var(--acid); margin-bottom: 10px; }
.contract-box > div { display: flex; align-items: stretch; border: 1px solid #77796a; background: #08090b; }
.contract-box code { flex: 1; min-width: 0; padding: 14px; font-size: 12px; overflow-wrap: anywhere; align-self: center; user-select: all; }
.contract-box button { border: 0; border-left: 1px solid #77796a; background: var(--acid); font: 900 11px 'Courier New',monospace; color: #08090b; padding: 12px; cursor: pointer; flex: 0 0 auto; }
.contract-box button:disabled { background: #393b35; color: #bbbdae; cursor: default; }
.contract-box p { margin: 10px 0 0; font-size: 10px; line-height: 1.5; color: var(--muted); }
.launch-links { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 9px; }
.launch-links a { padding: 11px 16px; font-size: 10px; font-weight: bold; border: 1px solid #53554c; text-decoration: none; }
.launch-links a:hover { border-color: var(--acid); }
.launch-links .launch-buy { background: var(--pink); color: #08090b; border-color: var(--pink); }
.launch-links [aria-disabled] { opacity: .45; cursor: default; }
.quote-card .card-stamp, .quote-card .card-scribble { font-size: 7rem; opacity: .22; right: 24px; bottom: 78px; }
.quote-card .quote-name { font-size: 10px; letter-spacing: .04em; }
.prototype-archive { border: 1px solid #63645c; }
.prototype-archive > summary { padding: 24px; display: grid; grid-template-columns: 1fr auto; gap: 12px; cursor: pointer; color: var(--acid); font-size: 12px; font-weight: 900; }
.prototype-archive > summary small { grid-row: 2; color: var(--muted); font-size: 10px; font-weight: normal; line-height: 1.5; }
.prototype-archive > summary b { grid-column: 2; grid-row: 1/3; font-size: 28px; }
.prototype-archive[open] > summary b { transform: rotate(45deg); }
.archive-note { padding: 0 24px 20px; color: var(--muted); font-size: 11px; line-height: 1.6; max-width: 800px; }
.prototype-archive .tracker-window { margin: 0; border-width: 1px 0 0; box-shadow: none; }
body.secret-floor { --acid: #ff2ebd; --pink: #d9ff2f; }
@media(max-width: 900px) { .launch-strip { grid-template-columns: 1fr; } .launch-intro { flex-flow: row wrap; align-items: center; justify-content: space-between; } .launch-intro .eyebrow { flex-basis: 100%; } }
@media(max-width: 640px) {
  .menubar-ca { min-width: 84px; margin-right: 4px; padding-inline: 8px; }
  .launch-strip { width: calc(100% - 32px); padding: 18px; gap: 18px; }
  .launch-intro strong { font-size: 30px; } .contract-box code { font-size: 10px; padding: 10px; }
  .contract-box button { padding: 10px; font-size: 9px; }
  .launch-links { gap: 6px; } .launch-links a { padding: 10px; font-size: 9px; }
  .club-banner > .translate { font-size: 12px; min-height: 90px; } .club-banner > .translate:last-child { display: none; }
  .agent-art > .translate { font-size: 19px; }
  .prototype-archive > summary { padding: 18px; }
}
@media(prefers-reduced-motion: reduce) { .dafuq-letter.letter-wave { animation: none; } }
