:root {
  --bg: #08090b;
  --panel: rgba(19, 19, 22, 0.92);
  --panel-soft: rgba(34, 34, 39, 0.82);
  --ink: #f2eee2;
  --muted: #bdb6a5;
  --acid: #d8ff4f;
  --red: #ff4b58;
  --line: rgba(242, 238, 226, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
  --font-xs: clamp(0.68rem, 0.64rem + 0.18vw, 0.8rem);
  --font-sm: clamp(0.76rem, 0.7rem + 0.24vw, 0.92rem);
  --font-base: clamp(0.88rem, 0.82rem + 0.28vw, 1.04rem);
  --font-lg: clamp(1.08rem, 0.98rem + 0.44vw, 1.36rem);
  --font-price: clamp(1.35rem, 1.08rem + 1vw, 1.95rem);
  --font-window-title: clamp(2.4rem, 1.4rem + 5.2vw, 5rem);
  --font-hero-title: clamp(2.2rem, 1.24rem + 4.7vw, 4.25rem);
  --font-boot-title: clamp(4.6rem, 2.4rem + 15vw, 15rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 75, 88, 0.18), transparent 24rem),
    radial-gradient(circle at 78% 4%, rgba(216, 255, 79, 0.1), transparent 20rem),
    linear-gradient(145deg, #111114, var(--bg) 54%, #010102);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: var(--font-base);
  line-height: 1.45;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
  line-height: 1.1;
}

p,
li,
a,
button,
span,
strong,
h1,
h2 {
  overflow-wrap: anywhere;
}

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

.noise {
  opacity: 0.14;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(117deg, transparent 0 4px, rgba(255, 255, 255, 0.06) 4px 5px);
  mix-blend-mode: screen;
}

.scanlines {
  opacity: 0.18;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0, 0, 0, 0.72) 3px 4px);
}

.crt-shell {
  position: relative;
  min-height: 100vh;
  padding: clamp(14px, 2vw, 28px);
}

.boot-screen,
.desktop {
  min-height: calc(100vh - clamp(28px, 4vw, 56px));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.05), var(--shadow);
}

.boot-screen {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.78)),
    url("assets/hero-studio.jpg") center / cover;
}

.boot-copy h1 {
  margin: 0 0 1rem;
  font-family: "Micro 5", sans-serif;
  font-size: var(--font-boot-title);
  line-height: 0.72;
  letter-spacing: 0;
  text-shadow: 0 0 14px rgba(216, 255, 79, 0.55), 4px 4px 0 #101010;
}

.eyebrow {
  color: var(--acid);
  font-size: var(--font-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.start-button,
.menu-button,
.sound-button,
.small-button,
.menu-panel button,
.music-form input,
.music-form select {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #0b0b0c;
  color: var(--ink);
}

.start-button,
.menu-button,
.sound-button,
.small-button,
.menu-panel button {
  box-shadow: 2px 2px 0 rgba(216, 255, 79, 0.48);
  text-transform: uppercase;
}

.start-button {
  padding: 1rem 1.4rem;
  font-size: var(--font-base);
  animation: blink 1s steps(2, end) infinite;
}

.hidden {
  display: none;
}

[hidden] {
  display: none !important;
}

.desktop {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 9, 11, 0.72), rgba(8, 9, 11, 0.82)),
    url("assets/imports/pm-console-room.jpg") center / cover;
}

.topbar,
.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem;
  background: rgba(5, 5, 6, 0.88);
  border-bottom: 1px solid var(--line);
}

.statusbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  font-size: var(--font-xs);
}

.brand-menu-button,
.menu-button,
.sound-button,
.small-button,
.menu-panel button,
.music-form input,
.music-form select {
  padding: 0.45rem 0.7rem;
  font-size: var(--font-sm);
}

.menu-panel button {
  padding: 0.3rem 0.42rem;
}

.brand-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(242, 242, 238, 0.44);
  background: rgba(5, 5, 6, 0.48);
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}

.brand-menu-button:hover,
.brand-menu-button:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.brand-menu-button span {
  font-size: var(--font-xs);
}

.brand-mark {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(1) contrast(1.15);
}

.ticker {
  display: flex;
  gap: 2rem;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  white-space: nowrap;
  font-size: var(--font-xs);
}

.ticker span {
  animation: crawl 14s linear infinite;
}

.menu-panel {
  position: absolute;
  top: 3rem;
  left: 0.65rem;
  z-index: 10;
  display: none;
  width: min(390px, calc(100vw - 1.3rem));
  max-height: calc(100vh - 6.5rem);
  overflow: auto;
  padding: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(7, 7, 9, 0.94);
  box-shadow: var(--shadow);
}

.menu-panel.open {
  display: grid;
  gap: 0.38rem;
}

.menu-identity {
  display: grid;
  gap: 0.12rem;
  padding: 0.42rem 0.5rem;
  border: 1px dashed rgba(242, 242, 238, 0.34);
  background: rgba(216, 255, 79, 0.08);
  text-transform: uppercase;
}

.menu-identity span,
.menu-identity em {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
}

.menu-identity strong {
  color: var(--acid);
  font-size: var(--font-sm);
  font-weight: 400;
}

.launch-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  margin-top: 0.4rem;
}

.launch-status-strip span {
  min-width: 0;
  padding: 0.22rem 0.25rem;
  border: 1px solid rgba(216, 255, 79, 0.36);
  background: rgba(216, 255, 79, 0.08);
  color: var(--acid);
  font-size: clamp(0.5rem, 1.8vw, 0.72rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: center;
}

.tab-rail {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 0.4rem;
  align-items: stretch;
  padding: 0.55rem 0.8rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab-pill {
  display: grid;
  min-width: clamp(4.8rem, 10vw, 7rem);
  padding: 0.42rem 0.5rem;
  border: 1px solid rgba(242, 242, 238, 0.46);
  background: rgba(5, 5, 6, 0.56);
  color: var(--ink);
  box-shadow: 2px 2px 0 rgba(216, 255, 79, 0.26);
  text-align: left;
  cursor: pointer;
}

.tab-pill span {
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.tab-pill em {
  overflow: hidden;
  color: var(--muted);
  font-size: clamp(0.54rem, 0.48rem + 0.35vw, 0.72rem);
  font-style: normal;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tab-pill.active {
  min-width: clamp(9rem, 22vw, 13rem);
  border-color: var(--acid);
  background: rgba(216, 255, 79, 0.14);
  color: var(--acid);
}

.tab-pill.active em {
  color: var(--ink);
}

.menu-group {
  display: grid;
  grid-template-columns: minmax(92px, 0.72fr) minmax(0, 1fr);
  gap: 0.35rem;
  align-items: stretch;
}

.menu-parent {
  min-height: 2.15rem;
}

.menu-parent:only-child {
  grid-column: 1 / -1;
}

.menu-children {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.28rem;
  align-content: stretch;
}

.menu-children button {
  min-height: 1.85rem;
  border-style: dashed;
  color: var(--muted);
  box-shadow: 1px 1px 0 rgba(216, 255, 79, 0.3);
  font-size: var(--font-xs);
}

.menu-parent:hover,
.menu-parent:focus-visible,
.menu-children button:hover,
.menu-children button:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.desktop-grid {
  position: relative;
  min-height: calc(100vh - 9rem);
  padding: clamp(1rem, 3vw, 3rem);
}

.window {
  position: absolute;
  display: none;
  max-height: calc(100vh - 12rem);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.window.active {
  display: block;
  outline: 1px solid rgba(216, 255, 79, 0.28);
  outline-offset: 2px;
}

.window.active.minimized {
  display: none;
}

.window.active:not(.minimized) {
  animation: focusPop 160ms ease-out;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.55rem;
  border-bottom: 1px solid var(--line);
  background: rgba(216, 255, 79, 0.12);
  color: var(--acid);
  font-size: var(--font-xs);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.window.dragging .window-bar {
  cursor: grabbing;
}

.window-title {
  min-width: 0;
  flex: 1;
}

.window-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.window-nav button {
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.28rem;
  border: 1px solid var(--line);
  background: rgba(20, 20, 22, 0.92);
  color: var(--muted);
  font-size: var(--font-xs);
  box-shadow: none;
  cursor: pointer;
}

.close-window,
.minimize-window {
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid var(--line);
  background: #141416;
  color: var(--ink);
  font-size: var(--font-xs);
  cursor: pointer;
}

.minimize-window {
  color: var(--acid);
}

.widget-dock {
  position: absolute;
  right: 0.8rem;
  bottom: 2.8rem;
  left: 0.8rem;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  pointer-events: none;
}

.window-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
  max-width: min(220px, 42vw);
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.92);
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(216, 255, 79, 0.45);
  pointer-events: auto;
  text-align: left;
}

.window-widget span {
  min-width: 0;
  overflow: hidden;
  font-size: var(--font-xs);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.window-widget em {
  color: var(--acid);
  font-size: var(--font-xs);
  font-style: normal;
}

.news-layout {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.news-layout h2,
.news-layout p {
  margin-left: 0;
  margin-right: 0;
}

.news-card {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

.news-card em {
  color: var(--acid);
  font-size: var(--font-xs);
  font-style: normal;
  text-transform: uppercase;
}

.news-card strong {
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.news-card span {
  color: var(--muted);
  font-size: var(--font-xs);
}

.window-hero {
  top: 7%;
  left: 7%;
  width: min(760px, 86vw);
}

.hero-media {
  position: relative;
  min-height: min(62vh, 620px);
  overflow: hidden;
}

.hero-media img,
.window-contact img,
.factory-works-gallery img,
.shop-layout img {
  display: block;
  width: 100%;
  filter: contrast(1.08) brightness(0.88) saturate(0.86);
}

.hero-media > img {
  height: min(62vh, 620px);
  object-fit: cover;
  object-position: center;
}

.media-fallback {
  display: grid;
  place-items: center;
  min-height: 9rem;
  padding: 1rem;
  border: 1px dashed var(--line);
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.035);
  color: var(--muted);
  text-align: center;
}

.media-fallback strong {
  display: block;
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.media-fallback span {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--font-xs);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid var(--line);
}

.hero-caption p {
  font-size: var(--font-sm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.nested-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0;
}

.hero-caption h2,
.window h2 {
  margin: 0.2rem 0 0.8rem;
  font-family: "Micro 5", sans-serif;
  font-size: var(--font-window-title);
  line-height: 0.85;
  overflow-wrap: anywhere;
}

.hero-caption h2 {
  font-size: var(--font-hero-title);
}

.window p,
.window li,
.window a {
  font-size: var(--font-sm);
}

.window-shop {
  top: 13%;
  right: 6%;
  width: min(440px, 88vw);
}

.window-tickets {
  top: 16%;
  right: 10%;
  width: min(430px, 88vw);
}

.window-music {
  top: 12%;
  right: 18%;
  width: min(340px, 88vw);
}

.window-team {
  top: 24%;
  left: 24%;
  width: min(520px, 88vw);
}

.shop-layout {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
}

.country-picker {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.country-picker select {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #0b0b0c;
  color: var(--ink);
  color-scheme: dark;
  font: inherit;
  font-size: var(--font-sm);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-row strong {
  color: var(--acid);
  font-size: var(--font-price);
}

.cart-note {
  color: var(--muted);
  font-size: var(--font-xs);
}

.cart-count {
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.catalogue-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.catalogue-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.catalogue-item strong {
  color: var(--ink);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.catalogue-item small {
  color: var(--muted);
  font-size: var(--font-xs);
  font-weight: 400;
}

.catalogue-item span {
  color: var(--acid);
  font-size: var(--font-sm);
  white-space: nowrap;
}

.cart-stepper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.cart-stepper button {
  min-height: 2rem;
  border: 0;
  background: rgba(216, 255, 79, 0.12);
  color: var(--acid);
  box-shadow: none;
}

.cart-stepper em {
  color: var(--ink);
  font-size: var(--font-sm);
  font-style: normal;
  text-align: center;
}

.cart-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
}

.cart-summary span {
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.cart-summary strong {
  color: var(--acid);
  font-size: var(--font-sm);
}

.ticket-layout {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
}

.ticket-layout h2,
.ticket-layout p {
  margin-left: 0;
  margin-right: 0;
}

.ticket-list {
  display: grid;
  gap: 0.55rem;
}

.ticket-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.ticket-card strong {
  display: block;
  color: var(--ink);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.ticket-card span {
  display: block;
  color: var(--muted);
  font-size: var(--font-xs);
}

.ticket-card em {
  color: var(--acid);
  font-size: var(--font-sm);
  font-style: normal;
  white-space: nowrap;
}

.ticket-stepper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}

.ticket-stepper button {
  min-height: 2rem;
  border: 0;
  background: rgba(216, 255, 79, 0.12);
  color: var(--acid);
  box-shadow: none;
}

.ticket-stepper span {
  color: var(--ink);
  text-align: center;
}

.ticket-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
}

.ticket-summary div {
  display: grid;
  gap: 0.15rem;
}

.ticket-summary span {
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.ticket-summary strong {
  color: var(--acid);
  font-size: var(--font-sm);
}

.ticket-provider-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ticket-provider-pill {
  display: grid;
  gap: 0.05rem;
  min-width: min(9rem, 100%);
  flex: 1 1 7rem;
  padding: 0.42rem 0.5rem;
  border: 1px solid rgba(242, 242, 238, 0.34);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

.ticket-provider-pill span,
.ticket-provider-pill em {
  overflow: hidden;
  font-size: var(--font-xs);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket-provider-pill em {
  color: var(--muted);
  font-style: normal;
}

.ticket-provider-active {
  border-color: rgba(216, 255, 79, 0.62);
  background: rgba(216, 255, 79, 0.1);
}

.ticket-provider-pill.selected {
  border-color: rgba(216, 255, 79, 0.86);
  background: rgba(216, 255, 79, 0.16);
  box-shadow: 0 0 0 1px rgba(216, 255, 79, 0.16), 0 0 18px rgba(216, 255, 79, 0.12);
}

.ticket-provider-active em {
  color: var(--acid);
}

.ticket-provider-pill.selected em {
  color: var(--acid);
}

#ticketEventSelect {
  text-transform: uppercase;
}

.checkout-button {
  width: 100%;
}

.ticket-reservation-form {
  display: grid;
  gap: 0.6rem;
  padding: 0.7rem;
  border: 1px solid rgba(216, 255, 79, 0.55);
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.09), transparent 48%),
    rgba(0, 0, 0, 0.55);
}

.ticket-reservation-head {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--line);
}

.ticket-reservation-head span,
.ticket-reservation-form label {
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.ticket-reservation-head strong {
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.ticket-reservation-form label:not(.ticket-consent) {
  display: grid;
  gap: 0.28rem;
}

.ticket-reservation-form input:not([type="hidden"]):not([type="checkbox"]) {
  width: 100%;
  min-width: 0;
  padding: 0.48rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(4, 4, 5, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: var(--font-sm);
}

.ticket-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  text-transform: none;
}

.ticket-consent input {
  margin: 0.15rem 0 0;
  accent-color: var(--acid);
}

#ticketWhatsAppFallback {
  display: inline-grid;
  place-items: center;
  min-height: 2rem;
  border: 1px dashed rgba(216, 255, 79, 0.6);
  color: var(--acid);
  font-size: var(--font-xs);
  text-decoration: none;
  text-transform: uppercase;
}

.music-layout {
  display: grid;
  gap: 0.7rem;
  padding: 0.75rem;
}

.music-layout h2,
.music-layout p {
  margin-left: 0;
  margin-right: 0;
}

.music-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 1.2rem + 4vw, 3.35rem);
}

.music-form {
  display: grid;
  gap: 0.55rem;
}

.music-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.music-form label.hidden {
  display: none;
}

.music-form input,
.music-form select {
  width: 100%;
  min-width: 0;
  color-scheme: dark;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.compact-hidden {
  display: none;
}

.music-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.music-section-tab {
  padding: 0.35rem 0.5rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  box-shadow: none;
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.music-section-tab.active {
  border-color: var(--acid);
  background: rgba(216, 255, 79, 0.11);
  color: var(--acid);
}

.music-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.music-section-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.18rem 0.55rem;
  align-items: center;
  min-width: 0;
  padding: 0.55rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.music-section-card img {
  grid-row: span 3;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.music-section-card strong,
.music-section-card span,
.music-section-card em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.music-section-card strong {
  color: var(--acid);
  font-size: var(--font-xs);
}

.music-section-card span,
.music-section-card em {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
}

.music-section-card.is-pending {
  opacity: 0.82;
}

.music-section-card.has-embed {
  grid-column: 1 / -1;
  cursor: default;
}

.music-section-card.has-embed iframe {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 8px;
  background: #111;
}

.platform-tile {
  position: relative;
  display: grid;
  gap: 0.25rem;
  justify-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 0.35rem 0.2rem 1.25rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  box-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
}

.platform-tile img {
  width: clamp(28px, 8vw, 38px);
  height: clamp(28px, 8vw, 38px);
  object-fit: contain;
}

.platform-tile span {
  max-width: 100%;
  font-size: clamp(0.48rem, 0.42rem + 0.25vw, 0.62rem);
  line-height: 1;
  text-align: center;
}

.platform-tile em {
  position: absolute;
  right: 0.25rem;
  bottom: 0.22rem;
  left: 0.25rem;
  padding: 0.16rem 0.2rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--acid);
  font-size: clamp(0.42rem, 0.38rem + 0.2vw, 0.56rem);
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.platform-tile.is-pending {
  opacity: 0.78;
}

.music-actions,
.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ghost-button {
  box-shadow: none;
  color: var(--muted);
}

.music-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.28rem 0.45rem;
  border: 1px dashed var(--line);
  color: var(--acid);
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(216, 255, 79, 0.08);
}

.music-link img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.music-link span {
  font-size: var(--font-xs);
}

.team-layout {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.team-layout h2,
.team-layout p {
  margin-left: 0;
  margin-right: 0;
}

.team-grid {
  display: grid;
  gap: 1.15rem;
}

.team-group {
  display: grid;
  gap: 0.55rem;
}

.team-group-title {
  margin: 0;
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.team-group-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-xs);
}

.team-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.team-card {
  display: grid;
  gap: 0.45rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.55rem;
}

.team-card img,
.team-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: contrast(1.04) brightness(0.9) saturate(0.86);
}

.team-card .media-fallback {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.team-card strong {
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.team-card span {
  color: var(--muted);
  font-size: var(--font-xs);
}

.team-contact {
  width: fit-content;
  color: var(--acid);
  font-size: var(--font-2xs);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.team-contact:hover,
.team-contact:focus-visible {
  text-decoration: underline;
}

.window-about {
  left: 12%;
  bottom: 15%;
  width: min(390px, 80vw);
  padding-bottom: 1rem;
}

.window-about p,
.window-about h2,
.file-list,
.rules-list,
.window-contact h2,
.window-contact a,
.signup-layout,
.source-note {
  margin-left: 1rem;
  margin-right: 1rem;
}

.file-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0.85rem 1rem 0;
  padding: 1px;
  background: var(--line);
}

.about-proof-strip div {
  min-width: 0;
  padding: 0.55rem;
  background: var(--panel);
}

.about-proof-strip dt {
  color: var(--acid);
  font-size: var(--font-lg);
  line-height: 1;
}

.about-proof-strip dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: var(--font-2xs);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.factory-works-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem;
}

.factory-works-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.file-list li {
  padding: 0.45rem;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.window-rules {
  right: 17%;
  bottom: 13%;
  width: min(350px, 78vw);
}

.rules-list {
  padding: 1rem 1rem 1rem 2.2rem;
  color: var(--muted);
}

.rules-list li {
  margin-bottom: 0.7rem;
}

.window-contact {
  position: absolute;
  top: 30%;
  left: 33%;
  width: min(360px, 82vw);
  padding-bottom: 1rem;
}

.window-contact a {
  color: var(--acid);
}

.source-note {
  color: var(--muted);
  font-size: var(--font-xs);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  max-height: 15rem;
  margin: 0 1rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  min-width: 0;
  padding: 0.45rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  box-shadow: none;
  text-decoration: none;
  text-align: left;
}

.contact-card img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  grid-row: span 2;
}

.contact-card span {
  color: var(--acid);
  font-size: var(--font-xs);
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-card small {
  min-width: 0;
  color: var(--muted);
  font-size: clamp(0.54rem, 0.48rem + 0.22vw, 0.68rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.window-signups {
  left: 32%;
  top: 20%;
  width: min(430px, 88vw);
}

.signup-layout {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 1rem;
}

.signup-layout h2,
.signup-layout p {
  margin-left: 0;
  margin-right: 0;
}

.signup-grid {
  display: grid;
  gap: 0.65rem;
}

.signup-card {
  display: grid;
  gap: 0.38rem;
  padding: 0.7rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.signup-card strong {
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.signup-card span {
  color: var(--muted);
  font-size: var(--font-xs);
}

.signup-card label {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.signup-card input {
  min-width: 0;
  width: 100%;
  padding: 0.42rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
  color: var(--ink);
  font: inherit;
}

.signup-card input::placeholder {
  color: rgba(242, 238, 226, 0.42);
}

.signup-card button {
  justify-self: start;
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--acid);
  background: rgba(216, 255, 79, 0.1);
  color: var(--acid);
  text-transform: uppercase;
  font-size: var(--font-xs);
  box-shadow: none;
}

.window-maps {
  top: 18%;
  left: 42%;
  width: min(440px, 88vw);
}

.window-news {
  top: 14%;
  left: 24%;
  width: min(520px, 88vw);
}

.window-event-media {
  top: 10%;
  left: 18%;
  width: min(560px, 90vw);
}

.news-feed {
  display: grid;
  gap: 0.6rem;
}

.news-card {
  border-style: solid;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.maps-layout {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.maps-layout h2,
.maps-layout p {
  margin-left: 0;
  margin-right: 0;
}

.event-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.event-filter {
  padding: 0.35rem 0.5rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  box-shadow: none;
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.event-filter.active {
  border-color: var(--acid);
  background: rgba(216, 255, 79, 0.12);
  color: var(--acid);
}

.map-location-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
}

.map-location-row span {
  color: var(--muted);
  font-size: var(--font-xs);
}

.map-location-row button[aria-busy="true"] {
  color: var(--acid);
  cursor: wait;
}

.event-story-rail {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.event-story {
  display: grid;
  gap: 0.24rem;
  min-width: 4.7rem;
  max-width: 5.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  text-align: center;
  cursor: pointer;
}

.map-status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.map-status-legend span {
  padding: 0.18rem 0.35rem;
  border: 1px solid rgba(216, 255, 79, 0.34);
  background: rgba(216, 255, 79, 0.07);
  color: var(--acid);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.event-story span {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(242, 242, 238, 0.45);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(216, 255, 79, 0.2), transparent 62%),
    rgba(0, 0, 0, 0.72);
}

.event-story span::after {
  position: absolute;
  inset: 0.18rem;
  border: 1px dashed rgba(216, 255, 79, 0.34);
  border-radius: inherit;
  content: "";
}

.event-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.event-story strong,
.event-story em {
  overflow: hidden;
  font-size: var(--font-xs);
  font-style: normal;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-story.active {
  color: var(--acid);
}

.event-story.active span {
  border-color: var(--acid);
  box-shadow: 0 0 0 2px rgba(216, 255, 79, 0.18);
}

.map-preview {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0c0e;
}

.map-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9) brightness(0.62);
}

.map-pin-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-pin {
  position: absolute;
  padding: 0.28rem 0.45rem;
  border: 1px solid var(--acid);
  background: rgba(0, 0, 0, 0.72);
  color: var(--acid);
  box-shadow: none;
  font-size: var(--font-xs);
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.map-pin.active {
  background: var(--acid);
  color: #070709;
  outline: 2px solid rgba(216, 255, 79, 0.34);
  outline-offset: 3px;
}

.map-pin.event-category-partnered {
  border-color: var(--red);
  color: var(--red);
}

.map-pin.event-category-playhouse {
  border-color: var(--ink);
  color: var(--ink);
}

.map-pin.active,
.map-pin.active.event-category-partnered,
.map-pin.active.event-category-playhouse {
  border-color: var(--acid);
  background: var(--acid);
  color: #070709;
}

.event-list {
  display: grid;
  gap: 0.45rem;
}

.active-event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: stretch;
  padding: 0.65rem;
  border: 1px solid rgba(216, 255, 79, 0.48);
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.1), transparent 52%),
    rgba(0, 0, 0, 0.46);
}

.active-event-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.active-event-copy em,
.active-event-copy small,
.active-event-copy b {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.active-event-copy b {
  color: var(--acid);
}

.active-event-copy strong {
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.active-event-copy span {
  color: var(--ink);
  font-size: var(--font-xs);
}

.live-signal-card {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.25rem;
  padding: 0.38rem;
  border: 1px solid rgba(216, 255, 79, 0.3);
  background: rgba(0, 0, 0, 0.38);
}

.live-signal-card span,
.live-signal-card em {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
  text-transform: uppercase;
}

.live-signal-card strong {
  color: var(--acid);
  font-size: var(--font-sm);
}

.live-signal-card i {
  display: block;
  height: 0.32rem;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 79, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.live-signal-card i::before {
  display: block;
  width: var(--signal-level, 35%);
  height: 100%;
  background: linear-gradient(90deg, var(--acid), rgba(216, 255, 79, 0.24));
  content: "";
}

.active-event-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.active-event-actions a,
.active-event-actions button {
  display: inline-grid;
  place-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.48rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  color: var(--ink);
  box-shadow: none;
  font-size: var(--font-xs);
  text-decoration: none;
  text-transform: uppercase;
}

.active-event-actions a,
.active-event-actions button[data-active-event-ticket] {
  border-color: var(--acid);
  color: var(--acid);
}

.active-event-panel img {
  grid-column: 1 / -1;
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.08);
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.12rem;
  padding: 0.55rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

.event-card.active {
  border-color: var(--acid);
  background: rgba(216, 255, 79, 0.08);
}

.event-card-actions,
.event-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.event-card-actions a,
.event-card-actions button,
.event-media-actions a,
.event-media-actions button {
  display: inline-grid;
  place-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.48rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  color: var(--ink);
  box-shadow: none;
  font-size: var(--font-xs);
  text-decoration: none;
  text-transform: uppercase;
}

.event-card-actions a,
.event-media-actions a {
  border-color: var(--acid);
  color: var(--acid);
}

.event-card-actions button[data-event-ticket],
.event-media-actions button[data-event-ticket] {
  border-color: rgba(216, 255, 79, 0.72);
  color: var(--acid);
}

.event-card strong {
  color: var(--acid);
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.event-card span,
.event-card em {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
}

.event-card.event-category-partnered {
  border-color: rgba(255, 75, 88, 0.55);
}

.event-card.event-category-playhouse {
  border-color: rgba(242, 238, 226, 0.5);
}

.event-media-layout {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.event-media-layout h2,
.event-media-layout p {
  margin-left: 0;
  margin-right: 0;
}

.event-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.event-tag {
  padding: 0.35rem 0.5rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  box-shadow: none;
  font-size: var(--font-xs);
  text-transform: uppercase;
}

.event-tag.active {
  border-color: var(--acid);
  color: var(--acid);
  background: rgba(216, 255, 79, 0.1);
}

.event-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.event-media-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.event-media-card img,
.event-media-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: contrast(1.04) brightness(0.88) saturate(0.86);
}

.event-media-card span {
  color: var(--muted);
  font-size: var(--font-xs);
  text-transform: uppercase;
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}

@keyframes crawl {
  from {
    transform: translateX(60vw);
  }
  to {
    transform: translateX(-80vw);
  }
}

@keyframes focusPop {
  from {
    opacity: 0.72;
    transform: translateY(4px) scale(0.992);
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --font-window-title: clamp(2.1rem, 1.4rem + 8vw, 3.8rem);
    --font-hero-title: clamp(2rem, 1.3rem + 7vw, 3.45rem);
    --font-boot-title: clamp(4rem, 2rem + 18vw, 8.5rem);
  }

  body {
    background: #08090b;
  }

  .noise,
  .scanlines {
    display: none;
  }

  .crt-shell {
    padding: 8px;
  }

  .boot-screen,
  .desktop {
    min-height: calc(100vh - 16px);
  }

  .desktop {
    overflow: visible;
    background: #0d0e10;
  }

  .topbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .ticker {
    order: 3;
    width: 100%;
  }

  .desktop-grid {
    display: grid;
    min-height: 0;
    gap: 0.75rem;
    padding: 0.75rem 0.65rem 1.25rem;
  }

  .window {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    background: #121316;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    backdrop-filter: none;
  }

  .window.active:not(.minimized),
  .start-button,
  .ticker span {
    animation: none;
  }

  .window-bar {
    gap: 0.5rem;
    touch-action: pan-y;
    cursor: default;
  }

  .window-nav {
    display: none;
  }

  .ticker span {
    transform: none;
  }

  .ticker span:not(:first-child) {
    display: none;
  }

  .window-hero,
  .window-shop,
  .window-tickets,
  .window-music,
  .window-team,
  .window-about,
  .window-rules,
  .window-contact,
  .window-maps,
  .window-news,
  .window-event-media {
    width: 100%;
    transform: none;
  }

  .team-group-grid,
  .event-media-grid {
    grid-template-columns: 1fr;
  }

  .widget-dock {
    position: static;
    justify-content: flex-start;
    margin: 0 1rem 1rem;
  }

  .hero-caption {
    position: static;
    border-width: 1px 0 0;
  }

  .hero-media > img,
  .window-contact img,
  .factory-works-gallery img,
  .shop-layout img,
  .team-card img,
  .team-card video,
  .event-media-card img,
  .event-media-card video {
    filter: none;
  }

  .statusbar {
    position: static;
  }
}

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

/* Signal desk refinement: shared visual language for the production shell. */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.6rem 0.8rem;
  background: var(--acid);
  color: #08090b;
  font-size: var(--font-xs);
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-150%);
}

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

.crt-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.boot-screen,
.desktop {
  border-color: rgba(242, 238, 226, 0.18);
}

.boot-screen {
  isolation: isolate;
  min-height: calc(100svh - clamp(28px, 4vw, 56px));
}

.boot-screen::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.48) 48%, rgba(8, 9, 11, 0.86) 100%),
    linear-gradient(180deg, transparent 54%, rgba(8, 9, 11, 0.82));
  content: "";
}

.boot-copy {
  display: grid;
  justify-items: center;
  width: min(88vw, 760px);
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.boot-copy .eyebrow {
  padding: 0.3rem 0.45rem;
  border: 1px solid rgba(216, 255, 79, 0.42);
  background: rgba(8, 9, 11, 0.72);
}

.boot-copy h1 {
  max-width: 8ch;
  margin: 0.75rem 0 1.2rem;
  font-size: clamp(5rem, 17vw, 14rem);
  text-align: center;
}

.boot-deck {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: var(--font-xs);
  letter-spacing: 0.18em;
  text-align: center;
}

.boot-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.boot-status span {
  padding: 0.3rem 0.48rem;
  border: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.68);
  color: var(--muted);
  font-size: var(--font-xs);
  letter-spacing: 0.1em;
}

.start-button {
  min-height: 3rem;
  padding-inline: 1.25rem;
  border-color: var(--acid);
  background: var(--acid);
  color: #08090b;
  box-shadow: 4px 4px 0 rgba(255, 75, 88, 0.82);
  font-weight: 700;
}

.topbar {
  min-height: 3.25rem;
  border-bottom-color: rgba(242, 238, 226, 0.18);
  background: rgba(8, 9, 11, 0.94);
}

.brand-menu-button,
.sound-button {
  min-height: 2.35rem;
}

.brand-menu-button {
  border-color: rgba(216, 255, 79, 0.68);
  background: rgba(216, 255, 79, 0.06);
}

.brand-menu-button span {
  letter-spacing: 0.08em;
}

.sound-button {
  border-color: rgba(242, 238, 226, 0.38);
  box-shadow: none;
  color: var(--muted);
}

.ticker {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tab-rail {
  gap: 0.35rem;
  padding: 0.55rem clamp(0.7rem, 2vw, 1.1rem) 0;
  background: rgba(8, 9, 11, 0.76);
  border-bottom: 1px solid rgba(242, 238, 226, 0.11);
}

.tab-pill {
  min-width: clamp(5.2rem, 9vw, 7.25rem);
  min-height: 3.25rem;
  border-color: rgba(242, 238, 226, 0.25);
  background: rgba(16, 17, 20, 0.78);
  box-shadow: none;
}

.tab-pill.active {
  min-width: clamp(9.5rem, 18vw, 12.5rem);
  box-shadow: inset 0 -2px 0 var(--acid);
}

.desktop-grid {
  min-height: calc(100svh - 8.5rem);
}

.window {
  border-color: rgba(242, 238, 226, 0.22);
  background: rgba(14, 15, 18, 0.95);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.window.active {
  outline-color: rgba(216, 255, 79, 0.42);
  box-shadow: 0 0 0 1px rgba(216, 255, 79, 0.12), 0 28px 60px rgba(0, 0, 0, 0.52);
}

.window-bar {
  min-height: 2.15rem;
  background: linear-gradient(90deg, rgba(216, 255, 79, 0.2), rgba(216, 255, 79, 0.05));
  border-bottom-color: rgba(216, 255, 79, 0.26);
}

.window-title {
  letter-spacing: 0.08em;
}

.window-nav button,
.close-window,
.minimize-window {
  width: 1.65rem;
  min-width: 1.65rem;
  height: 1.65rem;
}

.close-window:hover,
.close-window:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.window-hero {
  width: min(780px, 70vw);
}

.hero-media {
  min-height: min(65vh, 680px);
  background: #111;
}

.hero-media > img {
  height: min(65vh, 680px);
  object-position: center 45%;
}

.hero-caption {
  padding: clamp(1rem, 2vw, 1.45rem);
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.14), rgba(8, 9, 11, 0.93) 44%);
}

.hero-caption h2 {
  max-width: 12ch;
  margin-block: 0.25rem 0.7rem;
  font-size: var(--font-hero-title);
}

.hero-location {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--acid);
  font-size: var(--font-xs);
  letter-spacing: 0.12em;
}

.hero-actions .small-button,
.checkout-button {
  min-height: 2.7rem;
}

.music-layout,
.ticket-layout,
.shop-layout,
.team-layout,
.maps-layout,
.news-layout,
.event-media-layout {
  padding: clamp(0.85rem, 1.8vw, 1.25rem);
}

.shop-layout,
.ticket-layout,
.music-layout,
.event-media-layout {
  gap: 0.9rem;
}

.catalogue-item,
.ticket-card,
.news-card,
.team-card,
.event-card,
.event-media-card,
.contact-card,
.signup-card,
.music-section-card {
  border-color: rgba(242, 238, 226, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.catalogue-item:hover,
.ticket-card:hover,
.news-card:hover,
.team-card:hover,
.event-card:hover,
.contact-card:hover,
.music-section-card:hover {
  border-color: rgba(216, 255, 79, 0.58);
}

.ticket-provider-pill,
.event-filter,
.event-tag,
.music-section-tab {
  min-height: 2.3rem;
}

.ticket-stepper button,
.cart-stepper button {
  min-height: 2.5rem;
}

.ticket-reservation-form,
.signup-card {
  border-color: rgba(216, 255, 79, 0.38);
}

.team-group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  padding: 0.65rem;
}

.team-card img,
.team-card video,
.event-media-card img,
.event-media-card video {
  background: #0b0c0e;
}

.team-contact,
.media-sync-note {
  letter-spacing: 0.08em;
}

.media-sync-note {
  margin: 0;
  color: var(--acid);
  font-size: var(--font-xs);
}

.map-preview {
  min-height: 300px;
  background: #0b0c0e;
}

.map-preview iframe {
  filter: grayscale(1) contrast(0.86) brightness(0.68);
}

.active-event-panel {
  border-color: rgba(216, 255, 79, 0.55);
}

.widget-dock {
  bottom: 3.2rem;
}

.statusbar {
  border-top-color: rgba(242, 238, 226, 0.18);
  background: rgba(8, 9, 11, 0.96);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.fx-reduced .noise,
.fx-reduced .scanlines {
  display: none;
}

.fx-reduced .ticker span,
.fx-reduced .start-button,
.fx-reduced .window.active:not(.minimized) {
  animation: none;
}

.fx-reduced .window,
.fx-reduced .menu-panel {
  backdrop-filter: none;
}

@media (max-width: 760px) {
  .crt-shell {
    width: 100%;
  }

  .boot-screen,
  .desktop {
    border-inline: 0;
  }

  .boot-screen {
    min-height: 100svh;
  }

  .boot-copy {
    width: min(92vw, 34rem);
  }

  .boot-copy h1 {
    font-size: clamp(5.2rem, 26vw, 8.8rem);
  }

  .boot-deck {
    line-height: 1.55;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 25;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem;
  }

  .ticker {
    order: 2;
    width: 100%;
    padding-inline: 0.25rem;
  }

  .tab-rail {
    position: sticky;
    top: 3.45rem;
    z-index: 24;
    padding: 0.45rem 0.65rem;
  }

  .tab-pill {
    min-width: 5.8rem;
    min-height: 3.45rem;
  }

  .tab-pill.active {
    min-width: 8.8rem;
  }

  .desktop-grid {
    display: block;
    padding: 0.7rem;
  }

  .window {
    margin: 0;
    border-radius: 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  }

  .window-bar {
    position: sticky;
    top: 6.95rem;
    z-index: 3;
    min-height: 2.8rem;
    padding: 0.55rem 0.65rem;
  }

  .window-title {
    font-size: 0.7rem;
  }

  .window-hero {
    width: 100%;
  }

  .hero-media,
  .hero-media > img {
    min-height: 60svh;
    height: 60svh;
  }

  .hero-caption {
    padding: 1rem;
  }

  .hero-caption h2 {
    font-size: clamp(2.5rem, 12vw, 4.3rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .small-button,
  .checkout-button,
  .signup-card button {
    min-height: 3rem;
  }

  .music-section-grid,
  .team-group-grid,
  .event-media-grid,
  .contact-grid,
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .platform-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-layout > img {
    max-height: 55svh;
    object-fit: cover;
  }

  .ticket-provider-pill {
    min-height: 3rem;
  }

  .ticket-card,
  .catalogue-item {
    padding: 0.7rem;
  }

  .map-preview {
    min-height: 0;
    aspect-ratio: 1 / 1.1;
  }

  .active-event-panel {
    grid-template-columns: 1fr;
  }

  .active-event-actions {
    justify-content: flex-start;
  }

  .event-story-rail {
    margin-inline: -0.1rem;
  }

  .event-list {
    gap: 0.6rem;
  }

  .event-card {
    gap: 0.4rem;
  }

  .event-card-actions,
  .event-media-actions {
    grid-column: 1 / -1;
  }

  .widget-dock {
    position: sticky;
    bottom: 0.5rem;
    z-index: 26;
    margin: 0.4rem 0.7rem 0.7rem;
  }

  .window-widget {
    max-width: 100%;
  }

  .statusbar {
    display: none;
  }
}
