:root {
  color-scheme: dark;
  --black: #07080a;
  --void: #0c0d0f;
  --ink: #111012;
  --graphite: #15191d;
  --gunmetal: #1e2f3f;
  --steel: #375160;
  --blue: #526d9b;
  --bruise: #61496f;
  --paper: #e2e5e6;
  --text: #d7dde2;
  --muted: #7e8a93;
  --dim: #4f5e68;
  --crt: #6f8f7c;
  --line: rgba(215, 221, 226, 0.14);
  --line-strong: rgba(82, 109, 155, 0.45);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --max: 1520px;
  --side: clamp(18px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(82, 109, 155, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(215, 221, 226, 0.035) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 54%, rgba(82, 109, 155, 0.08) 54% 74%, transparent 74%),
    linear-gradient(180deg, #07080a 0%, #101215 42%, #07080a 100%);
  background-size:
    116px 100%,
    100% 72px,
    auto,
    auto;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 calc(var(--side) - 2px), rgba(215, 221, 226, 0.16) calc(var(--side) - 2px) calc(var(--side) - 1px), transparent calc(var(--side) - 1px)),
    linear-gradient(90deg, transparent 0 82%, rgba(82, 109, 155, 0.12) 82% calc(82% + 1px), transparent calc(82% + 1px)),
    url("assets/texture-concrete-noise.png");
  background-size:
    auto,
    auto,
    360px 360px;
  opacity: 0.34;
  mix-blend-mode: screen;
}

body::after {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 6px),
    linear-gradient(180deg, transparent 0 42%, rgba(82, 109, 155, 0.075) 44%, transparent 47%);
  opacity: 0.16;
  transform: translateY(-12%);
  animation: scanDrift 12s linear infinite;
}

body.loaded .load-screen {
  pointer-events: none;
  animation: loaderDisperse 540ms cubic-bezier(0.2, 0.72, 0.22, 1) forwards;
}

body.loaded .load-logo {
  animation: loaderMarkExit 420ms cubic-bezier(0.2, 0.72, 0.22, 1) forwards;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  appearance: none;
  border-radius: 0;
  color: inherit;
}

body.lightbox-open,
body.full-archive-open {
  overflow: hidden;
}

::selection {
  background: rgba(82, 109, 155, 0.7);
  color: var(--paper);
}

.load-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(7, 8, 10, 0.74), rgba(7, 8, 10, 0.98)),
    url("assets/texture-concrete-noise.png");
  background-size:
    auto,
    320px 320px;
  will-change: opacity, transform;
}

.load-screen::before,
.load-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.load-screen::before {
  background:
    repeating-linear-gradient(0deg, rgba(226, 229, 230, 0.06) 0 1px, transparent 1px 12px),
    linear-gradient(90deg, transparent, rgba(82, 109, 155, 0.16), transparent);
  opacity: 0.22;
}

.load-screen::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(111, 143, 124, 0.12) 28px 29px),
    repeating-linear-gradient(0deg, rgba(7, 8, 10, 0) 0 12px, rgba(7, 8, 10, 0.48) 12px 13px);
  opacity: 0.24;
  mix-blend-mode: screen;
}

.load-logo {
  position: relative;
  z-index: 1;
  width: min(176px, 36vw);
  max-height: min(176px, 36vw);
  opacity: 0.92;
  filter:
    drop-shadow(0 0 26px rgba(82, 109, 155, 0.28))
    drop-shadow(0 20px 70px rgba(0, 0, 0, 0.9));
  will-change: opacity, transform;
}

.load-line {
  width: min(420px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 229, 230, 0.72), transparent);
  animation: loadPulse 1200ms steps(8, end) infinite alternate;
}

.signal-canvas,
.texture-layer,
.scroll-meter {
  pointer-events: none;
  position: fixed;
}

.signal-canvas {
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: screen;
}

.texture-layer {
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(82, 109, 155, 0.04) 38px 39px),
    url("assets/texture-concrete-noise.png");
  background-size:
    auto,
    420px 420px;
  opacity: 0.11;
  mix-blend-mode: multiply;
}

.scroll-meter {
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  height: 3px;
  background: rgba(215, 221, 226, 0.08);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: rgba(111, 143, 124, 0.86);
  box-shadow: 0 0 12px rgba(111, 143, 124, 0.18);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px var(--side);
  border-bottom: 1px solid rgba(215, 221, 226, 0.18);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(21, 25, 29, 0.96)),
    url("assets/texture-concrete-noise.png");
  background-size:
    auto,
    280px 280px;
}

.top-nav {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border: 0;
  filter:
    grayscale(1)
    contrast(1.18)
    brightness(0.96)
    drop-shadow(0 0 12px rgba(82, 109, 155, 0.18));
}

.brand i {
  width: 74px;
  height: 10px;
  border: 1px solid rgba(82, 109, 155, 0.52);
  background:
    repeating-linear-gradient(90deg, rgba(111, 143, 124, 0.62) 0 8px, transparent 8px 14px),
    rgba(7, 8, 10, 0.9);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.6vw, 34px);
  color: rgba(215, 221, 226, 0.68);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 7px 0;
  transition:
    color 160ms linear,
    background 160ms linear;
}

.site-header nav a::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition:
    opacity 160ms linear,
    transform 160ms linear;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--paper);
}

.site-header nav a:hover::before,
.site-header nav a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.discord-prompt {
  position: fixed;
  right: var(--side);
  bottom: clamp(42px, 7vh, 92px);
  z-index: 34;
  display: grid;
  width: min(460px, calc(100vw - 36px));
  padding: 22px 22px 22px 30px;
  border: 2px solid rgba(111, 143, 124, 0.58);
  background:
    linear-gradient(120deg, rgba(7, 8, 10, 0.99), rgba(30, 47, 63, 0.94)),
    repeating-linear-gradient(90deg, rgba(215, 221, 226, 0.04) 0 1px, transparent 1px 34px);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(226, 229, 230, 0.08),
    0 0 44px rgba(111, 143, 124, 0.16);
  color: rgba(215, 221, 226, 0.78);
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 220ms linear,
    transform 220ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.discord-prompt::before {
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  width: 8px;
  background:
    linear-gradient(rgba(111, 143, 124, 0.92), rgba(82, 109, 155, 0.34)),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(7, 8, 10, 0.5) 8px 10px);
  content: "";
}

.discord-prompt[hidden] {
  display: none;
}

.discord-prompt.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.discord-prompt button {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-left: 1px solid rgba(215, 221, 226, 0.14);
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  background: rgba(7, 8, 10, 0.72);
  color: rgba(126, 138, 147, 0.92);
  cursor: pointer;
}

.discord-prompt span,
.discord-prompt button,
.discord-prompt a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.discord-prompt span {
  margin: 0 74px 10px 0;
  color: rgba(111, 143, 124, 0.9);
}

.discord-prompt strong {
  max-width: 330px;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.discord-prompt p {
  max-width: 370px;
  margin: 0 0 18px;
  color: rgba(215, 221, 226, 0.76);
  font-size: 0.96rem;
  line-height: 1.46;
}

.discord-prompt a {
  width: fit-content;
  min-height: 46px;
  padding: 14px 18px;
  border: 1px solid rgba(111, 143, 124, 0.72);
  background: rgba(111, 143, 124, 0.18);
  color: var(--paper);
  text-decoration: none;
}

.discord-prompt button:hover,
.discord-prompt button:focus-visible,
.discord-prompt a:hover,
.discord-prompt a:focus-visible {
  background: rgba(30, 47, 63, 0.72);
  color: var(--paper);
}

main {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  isolation: isolate;
}

.hero::before {
  display: none;
  content: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.96) 0 16%, rgba(7, 8, 10, 0.5) 45%, rgba(7, 8, 10, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.18), rgba(7, 8, 10, 0.48) 58%, var(--black) 100%);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: grayscale(1) saturate(0.22) contrast(1.32) brightness(0.62);
  transform: scale(1.015);
  animation: heroDrift 22s linear infinite alternate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.97) 0 22%, transparent 56%, rgba(7, 8, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.4), rgba(7, 8, 10, 0.84)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
  width: min(var(--max), 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px var(--side) 8vh;
}

.hero-rail {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 12px 0;
  border-inline: 1px solid rgba(215, 221, 226, 0.14);
  color: rgba(215, 221, 226, 0.54);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
  grid-column: 1;
  align-self: center;
  max-width: 980px;
  padding-top: 8vh;
  text-shadow: 0 12px 54px rgba(0, 0, 0, 0.7);
}

.status-pill,
.eyebrow,
.release-code,
.release-meta span,
.release-meta strong {
  color: rgba(126, 138, 147, 0.94);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  color: rgba(215, 221, 226, 0.72);
}

.status-pill::before {
  width: 7px;
  height: 7px;
  background: var(--crt);
  box-shadow: 0 0 12px rgba(111, 143, 124, 0.36);
  content: "";
  animation: blink 1800ms steps(2, end) infinite;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow:
    0 18px 80px rgba(0, 0, 0, 0.86),
    0 0 24px rgba(30, 47, 63, 0.24);
}

h2 {
  max-width: 1040px;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 5.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

h3 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 680px;
  margin: -12px 0 34px;
  color: rgba(226, 229, 230, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  font-weight: 700;
  line-height: 1.34;
}

.hero-data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  max-width: 980px;
  margin: 0 0 36px;
  border: 0;
}

.hero-data span {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 229, 230, 0.82);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-data b {
  display: inline;
  margin: 0 8px 0 0;
  color: rgba(111, 143, 124, 0.84);
  font-size: 10px;
  font-weight: 900;
}

.hero-actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(215, 221, 226, 0.22);
  background: rgba(7, 8, 10, 0.72);
  color: rgba(226, 229, 230, 0.88);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 160ms linear,
    border-color 160ms linear,
    color 160ms linear,
    transform 160ms linear;
}

.button::before {
  content: none;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(111, 143, 124, 0.64);
  background: rgba(30, 47, 63, 0.62);
  color: var(--paper);
  transform: none;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0;
}

.button.primary {
  border-color: rgba(111, 143, 124, 0.62);
  background: linear-gradient(135deg, rgba(111, 143, 124, 0.18), rgba(30, 47, 63, 0.74));
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(111, 143, 124, 0.16);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: rgba(111, 143, 124, 0.78);
  background: linear-gradient(135deg, rgba(111, 143, 124, 0.3), rgba(30, 47, 63, 0.94));
}

.hero-surveillance {
  position: absolute;
  top: clamp(92px, 11vh, 150px);
  right: var(--side);
  bottom: 6vh;
  z-index: 1;
  width: min(58vw, 820px);
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  opacity: 0.72;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 76%, transparent 100%);
}

.hero-surveillance::before,
.hero-surveillance::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.hero-surveillance::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.44) 0 8%, transparent 32%, rgba(7, 8, 10, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.08), rgba(7, 8, 10, 0.46));
}

.hero-surveillance::after {
  display: none;
}

.hero-surveillance img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 42%;
  filter: grayscale(1) contrast(1.46) brightness(0.72);
  transform: none;
}

.hero-surveillance figcaption {
  display: none;
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(84px, 11vw, 170px) var(--side);
  scroll-margin-top: 86px;
}

.section-heading {
  position: relative;
  display: block;
  margin-bottom: clamp(38px, 6vw, 84px);
  padding-top: 18px;
  border-top: 1px solid rgba(215, 221, 226, 0.2);
}

.section-heading::before {
  position: absolute;
  top: -1px;
  right: 0;
  width: min(38vw, 520px);
  height: 1px;
  background: rgba(111, 143, 124, 0.52);
  content: "";
}

.section-heading.compact {
  max-width: none;
}

.section-heading h2 {
  max-width: 1040px;
  margin: 0;
}

.section-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(215, 221, 226, 0.66);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.info-mobile-data {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(111, 143, 124, 0.86);
}

.music-section {
  position: relative;
}

.music-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.9), transparent 36%, rgba(7, 8, 10, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(215, 221, 226, 0.032) 116px 117px);
  content: "";
}

.release-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: clamp(560px, 54vw, 760px);
  padding: clamp(22px, 3vw, 48px);
  border: 1px solid rgba(215, 221, 226, 0.18);
  background:
    linear-gradient(120deg, rgba(7, 8, 10, 0.72), rgba(30, 47, 63, 0.2) 48%, rgba(7, 8, 10, 0.92)),
    repeating-linear-gradient(90deg, rgba(215, 221, 226, 0.028) 0 1px, transparent 1px 86px);
  overflow: hidden;
}

.release-feature::before {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  color: rgba(126, 138, 147, 0.64);
  content: "LATEST RELEASE / FEATURED";
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-media {
  position: relative;
  align-self: center;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background: var(--void);
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.38);
}

.feature-media::before,
.feature-media::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.feature-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(82, 109, 155, 0.18) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  opacity: 0.14;
  mix-blend-mode: screen;
}

.feature-media::after {
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(226, 229, 230, 0.32);
  border-right: 1px solid rgba(226, 229, 230, 0.32);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: none;
}

.feature-media span {
  display: block;
  padding: 10px 12px;
  border-top: 1px solid rgba(215, 221, 226, 0.16);
  color: rgba(215, 221, 226, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(36px, 5vw, 72px) 0;
}

.release-code {
  margin-bottom: 18px;
  color: rgba(111, 143, 124, 0.9);
}

.release-feature h3 {
  margin: 0 0 24px;
  max-width: 820px;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  line-height: 0.94;
}

.release-feature p:not(.release-code) {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(215, 221, 226, 0.74);
  font-size: 1.18rem;
  line-height: 1.38;
}

.feature-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 780px);
  margin: 0 0 28px;
  border-top: 1px solid rgba(215, 221, 226, 0.16);
  border-left: 1px solid rgba(215, 221, 226, 0.12);
}

.feature-specs span {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: center;
  padding: 15px 16px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
  border-bottom: 1px solid rgba(215, 221, 226, 0.12);
  color: rgba(226, 229, 230, 0.78);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-copy .inline-links {
  width: min(100%, 780px);
}

.inline-links a,
.inline-links button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background: rgba(7, 8, 10, 0.72);
  color: rgba(215, 221, 226, 0.74);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms linear,
    border-color 160ms linear,
    color 160ms linear;
}

.inline-links a:hover,
.inline-links a:focus-visible,
.inline-links button:hover,
.inline-links button:focus-visible,
.inline-links button[aria-expanded="true"] {
  border-color: rgba(111, 143, 124, 0.5);
  background: rgba(111, 143, 124, 0.08);
  color: var(--paper);
}

.inline-listen-trigger {
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 0 28px;
  border-color: rgba(111, 143, 124, 0.76);
  background: linear-gradient(135deg, rgba(111, 143, 124, 0.28), rgba(30, 47, 63, 0.94));
  color: var(--paper);
  box-shadow:
    inset 0 0 0 1px rgba(111, 143, 124, 0.32),
    0 0 34px rgba(111, 143, 124, 0.1);
  font-size: 12px;
}

.release-grid {
  display: grid;
  margin-top: clamp(34px, 5vw, 70px);
  border-top: 1px solid rgba(215, 221, 226, 0.18);
  overflow: visible;
}

.release-card {
  position: relative;
  display: grid;
  grid-template-columns: 136px minmax(118px, 0.14fr) minmax(210px, 0.28fr) minmax(0, 1fr) minmax(148px, 0.16fr);
  align-items: stretch;
  min-height: 136px;
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  background: rgba(10, 12, 14, 0.92);
  overflow: hidden;
  transform-origin: center;
  transition:
    background 160ms linear,
    border-color 160ms linear,
    box-shadow 160ms linear,
    transform 160ms linear;
  will-change: transform;
}

.release-card::before {
  content: none;
}

.release-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: rgba(111, 143, 124, 0.72);
  content: "";
  transition: width 160ms linear;
}

.release-card > * {
  position: relative;
  z-index: 1;
}

.release-card img {
  width: 136px;
  height: 100%;
  min-height: 136px;
  object-fit: contain;
  border-right: 1px solid rgba(215, 221, 226, 0.14);
  background: rgba(5, 6, 8, 0.92);
  filter: none;
  transition: filter 180ms linear;
}

.release-meta,
.release-title,
.release-description,
.release-action {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
}

.release-meta {
  gap: 8px;
}

.release-meta span,
.release-meta strong {
  overflow-wrap: anywhere;
  color: rgba(226, 229, 230, 0.82);
  font-size: 11px;
  line-height: 1.25;
}

.release-meta strong {
  display: inline-flex;
  width: fit-content;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(111, 143, 124, 0.46);
  background: transparent;
  color: rgba(111, 143, 124, 0.86);
}

.release-title {
  gap: 0;
}

.release-title h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.release-description {
  margin: 0;
  color: rgba(215, 221, 226, 0.82);
  font-size: 0.98rem;
  line-height: 1.42;
}

.release-action {
  place-items: center;
  min-width: 148px;
  justify-content: center;
  border-right: 0;
  border-top: 0;
  border-left: 1px solid rgba(111, 143, 124, 0.5);
  border-bottom: 0;
  background: linear-gradient(135deg, rgba(111, 143, 124, 0.22), rgba(30, 47, 63, 0.78));
  box-shadow: inset 0 0 0 1px rgba(111, 143, 124, 0.22);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms linear,
    box-shadow 160ms linear,
    opacity 220ms linear,
    transform 160ms linear;
}

.release-card:hover,
.release-card:focus-within,
.release-card.is-menu-open {
  border-color: rgba(111, 143, 124, 0.42);
  background: rgba(24, 33, 38, 0.94);
  z-index: 4;
}

.release-card:hover,
.release-card:focus-within {
  box-shadow:
    0 0 0 1px rgba(111, 143, 124, 0.2),
    0 18px 48px rgba(0, 0, 0, 0.28);
  transform: translateX(5px) scale(1.018);
}

.release-card:hover::after,
.release-card:focus-within::after,
.release-card.is-menu-open::after {
  width: 4px;
}

.release-card:hover img,
.release-card:focus-within img,
.release-card.is-menu-open img {
  filter: none;
}

.release-card:hover .release-action,
.release-card:focus-within .release-action,
.release-card.is-menu-open .release-action {
  color: var(--paper);
  background: linear-gradient(135deg, rgba(111, 143, 124, 0.36), rgba(30, 47, 63, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(111, 143, 124, 0.48),
    0 0 32px rgba(111, 143, 124, 0.12);
  transform: scale(1.025);
}

.release-card:hover .release-action {
  animation: listenPulse 1150ms linear 3s infinite;
}

.release-card.is-menu-open .release-action,
.release-card:focus-within .release-action {
  animation: none;
  opacity: 1;
}

.platform-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-top: 1px solid rgba(111, 143, 124, 0.28);
  background: rgba(7, 8, 10, 0.98);
}

.platform-menu[hidden] {
  display: none;
}

.feature-platform-menu {
  width: min(100%, 720px);
  margin-top: 14px;
  border-left: 1px solid rgba(215, 221, 226, 0.12);
}

.feature-platform-menu a,
.feature-platform-menu .platform-status {
  min-height: 86px;
}

.platform-menu a,
.platform-status {
  display: grid;
  gap: 5px;
  min-height: 70px;
  align-content: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
  color: rgba(215, 221, 226, 0.78);
  transition:
    background 160ms linear,
    color 160ms linear;
}

.platform-menu a {
  text-decoration: underline;
  text-decoration-color: rgba(111, 143, 124, 0.66);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.platform-menu a:last-child,
.platform-status:last-child {
  border-right: 0;
}

.platform-menu span {
  color: rgba(126, 138, 147, 0.78);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform-menu strong {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.platform-menu a:hover,
.platform-menu a:focus-visible {
  background: rgba(30, 47, 63, 0.52);
  color: var(--paper);
}

.platform-status {
  color: rgba(215, 221, 226, 0.5);
  background: rgba(17, 18, 20, 0.72);
}

.platform-status strong {
  color: rgba(215, 221, 226, 0.7);
}

.archive-section {
  position: relative;
  border-block: 1px solid rgba(215, 221, 226, 0.13);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.94), rgba(30, 47, 63, 0.22) 46%, rgba(7, 8, 10, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 136px, rgba(215, 221, 226, 0.03) 136px 137px);
}

.archive-section::before {
  display: none;
  content: none;
}

.archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.archive-open {
  min-width: 158px;
  margin-bottom: 8px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 118px;
  gap: 12px;
}

.archive-frame {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background: var(--void);
  cursor: pointer;
  isolation: isolate;
  outline: 0;
}

.archive-frame::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 7px 9px;
  background: rgba(7, 8, 10, 0.74);
  color: rgba(215, 221, 226, 0.62);
  content: attr(data-file);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.archive-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(82, 109, 155, 0.14) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(7, 8, 10, 0.14), transparent 42%, rgba(7, 8, 10, 0.62));
  content: "";
  opacity: 0.42;
}

.archive-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.24) contrast(1.45) brightness(0.58);
  transform: scale(1.01);
  transition:
    filter 240ms linear,
    transform 620ms linear;
}

.archive-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: 86%;
  padding: 8px 10px;
  background: rgba(7, 8, 10, 0.82);
  color: rgba(215, 221, 226, 0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.archive-frame:hover,
.archive-frame:focus-visible {
  border-color: rgba(111, 143, 124, 0.5);
}

.archive-frame:hover img,
.archive-frame:focus-visible img {
  filter: grayscale(0.62) saturate(0.42) contrast(1.56) brightness(0.7);
  transform: scale(1.045);
}

.archive-frame.frame-large {
  grid-column: span 5;
  grid-row: span 5;
}

.archive-frame.frame-wide {
  grid-column: span 7;
  grid-row: span 3;
}

.archive-frame.frame-tall {
  grid-column: span 4;
  grid-row: span 5;
}

.archive-frame.frame-square {
  grid-column: span 3;
  grid-row: span 2;
}

.archive-frame.frame-mid {
  grid-column: span 3;
  grid-row: span 3;
}

.archive-frame.frame-low {
  grid-column: span 12;
  grid-row: span 3;
}

.archive-frame.frame-large img {
  object-position: 52% 42%;
}

.archive-frame.frame-wide img {
  object-position: 50% 38%;
}

.archive-frame.frame-tall img {
  object-position: 52% 44%;
}

.archive-frame.frame-square img {
  object-position: 50% 36%;
}

.archive-frame.frame-mid img {
  object-position: 50% 34%;
}

.archive-frame.frame-low img {
  object-position: 50% 38%;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.96), rgba(17, 18, 20, 0.98)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 8px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox figure {
  display: grid;
  gap: 0;
  width: min(1180px, 100%);
  max-height: calc(100svh - 84px);
  margin: 0;
  border: 1px solid rgba(215, 221, 226, 0.22);
  background: rgba(7, 8, 10, 0.92);
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100svh - 170px);
  object-fit: contain;
  background: #050608;
  filter: grayscale(0.22) contrast(1.12) brightness(0.9);
}

.image-lightbox figcaption {
  min-height: 54px;
  padding: 16px 18px;
  border-top: 1px solid rgba(215, 221, 226, 0.16);
  color: rgba(226, 229, 230, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 81;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 221, 226, 0.22);
  background: rgba(7, 8, 10, 0.86);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: rgba(111, 143, 124, 0.58);
  background: rgba(30, 47, 63, 0.72);
}

.full-archive {
  position: fixed;
  inset: 0;
  z-index: 65;
  overflow-y: auto;
  padding: clamp(16px, 3vw, 44px);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(17, 18, 20, 0.98)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 8px);
}

.full-archive[hidden] {
  display: none;
}

.full-archive-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.full-archive-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background: rgba(7, 8, 10, 0.92);
  backdrop-filter: blur(16px);
}

.full-archive-head div {
  display: grid;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
}

.full-archive-head span,
.full-archive-head button,
.full-archive-card span,
.full-archive-card p {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.full-archive-head span {
  color: rgba(111, 143, 124, 0.88);
}

.full-archive-head strong {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.full-archive-head button {
  order: -1;
  align-self: stretch;
  min-width: 108px;
  border: 0;
  border-right: 1px solid rgba(215, 221, 226, 0.16);
  background: rgba(30, 47, 63, 0.34);
  color: var(--paper);
  cursor: pointer;
}

.full-archive-head button:hover,
.full-archive-head button:focus-visible {
  background: rgba(111, 143, 124, 0.18);
}

.full-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 14px;
  align-items: start;
  padding-bottom: 54px;
}

.full-archive-card {
  display: grid;
  margin: 0;
  border: 1px solid rgba(215, 221, 226, 0.14);
  background: rgba(7, 8, 10, 0.78);
  cursor: pointer;
  overflow: hidden;
}

.full-archive-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: transparent;
  filter: grayscale(0.26) saturate(0.78) contrast(1.16) brightness(0.86);
}

.full-archive-card:hover,
.full-archive-card:focus-visible {
  border-color: rgba(111, 143, 124, 0.5);
}

.full-archive-card figcaption {
  display: grid;
  gap: 8px;
  min-height: 78px;
  padding: 12px 14px;
  border-top: 1px solid rgba(215, 221, 226, 0.12);
}

.full-archive-card span {
  color: rgba(111, 143, 124, 0.82);
}

.full-archive-card p {
  margin: 0;
  color: rgba(215, 221, 226, 0.68);
  font-weight: 800;
  line-height: 1.4;
}

.listen-section {
  border-bottom: 1px solid rgba(215, 221, 226, 0.13);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(30, 47, 63, 0.24), rgba(7, 8, 10, 0.96)),
    url("assets/texture-concrete-noise.png");
  background-size:
    auto,
    360px 360px;
}

.routing-panel {
  position: relative;
  display: grid;
  border: 1px solid rgba(215, 221, 226, 0.16);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(30, 47, 63, 0.22), rgba(7, 8, 10, 0.9)),
    rgba(7, 8, 10, 0.68);
  overflow: hidden;
}

.music-routing {
  --channel-image-size: 422px;
  grid-template-columns: minmax(0, 1fr) var(--channel-image-size);
  align-items: stretch;
  min-height: 0;
}

.music-routing .route-group {
  border-right: 1px solid rgba(215, 221, 226, 0.14);
}

.route-heading span,
.route-heading em,
.route-link span,
.route-link em {
  color: rgba(126, 138, 147, 0.82);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-group {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
}

.route-heading {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  background: rgba(7, 8, 10, 0.48);
}

.route-heading span,
.route-heading em {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
}

.route-heading span {
  color: rgba(111, 143, 124, 0.92);
}

.route-heading em {
  transition:
    background 160ms linear,
    color 160ms linear;
}

.route-heading em.is-active {
  background: rgba(111, 143, 124, 0.08);
  color: rgba(226, 229, 230, 0.86);
}

.route-link {
  --channel-rgb: 111, 143, 124;
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(176px, 0.3fr);
  min-height: 118px;
  align-items: stretch;
  border-bottom: 1px solid rgba(215, 221, 226, 0.13);
  background:
    linear-gradient(90deg, rgba(var(--channel-rgb), 0.055), transparent 38%, rgba(30, 47, 63, 0.14)),
    rgba(7, 8, 10, 0.18);
  color: rgba(215, 221, 226, 0.76);
  overflow: hidden;
  text-decoration: none;
  transition:
    background 160ms linear,
    border-color 160ms linear,
    color 160ms linear;
}

.route-bandcamp {
  --channel-rgb: 37, 150, 190;
}

.route-soundcloud {
  --channel-rgb: 255, 119, 0;
}

.route-youtube {
  --channel-rgb: 255, 0, 0;
}

.route-link::before {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  color: rgba(var(--channel-rgb), 0.76);
  content: "OPEN";
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(6px);
  transition:
    opacity 160ms linear,
    transform 160ms linear;
}

.route-link::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-top: 1px solid rgba(var(--channel-rgb), 0.56);
  border-right: 1px solid rgba(var(--channel-rgb), 0.56);
  content: "";
  opacity: 0.52;
  transform: translateY(-50%) rotate(45deg);
  transition:
    opacity 160ms linear,
    transform 160ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.route-link span,
.route-link strong,
.route-link em {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: 18px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
}

.route-icon {
  position: relative;
  place-items: center;
  overflow: hidden;
}

.route-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.28;
  filter: grayscale(1) contrast(1.18) brightness(1.4);
  mix-blend-mode: screen;
  transition:
    filter 180ms linear,
    opacity 180ms linear,
    transform 180ms linear;
}

.route-icon b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: rgba(215, 221, 226, 0.52);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.route-link strong {
  color: var(--paper);
  font-size: clamp(1.7rem, 3.6vw, 4rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.route-link em {
  padding-right: 68px;
}

.route-link:hover,
.route-link:focus-visible {
  border-color: rgba(var(--channel-rgb), 0.42);
  background:
    linear-gradient(90deg, rgba(var(--channel-rgb), 0.18), rgba(30, 47, 63, 0.48)),
    rgba(7, 8, 10, 0.92);
  box-shadow: inset 4px 0 0 rgba(var(--channel-rgb), 0.56);
  color: var(--paper);
}

.route-link:hover .route-icon img,
.route-link:focus-visible .route-icon img {
  opacity: 0.72;
  filter:
    grayscale(0.12)
    saturate(1.14)
    contrast(1.12)
    brightness(0.96)
    drop-shadow(0 0 16px rgba(var(--channel-rgb), 0.26));
  transform: scale(1.08);
}

.route-link:hover .route-icon b,
.route-link:focus-visible .route-icon b {
  color: rgba(226, 229, 230, 0.74);
}

.route-link:hover::before,
.route-link:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.route-link:hover::after,
.route-link:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -50%) rotate(45deg);
}

.listen-image {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--void);
  cursor: default;
  isolation: isolate;
  outline: 0;
  aspect-ratio: 1;
}

.listen-image::before,
.listen-image::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.listen-image::before {
  background:
    linear-gradient(90deg, rgba(82, 109, 155, 0.2) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(7, 8, 10, 0.08), transparent 44%, rgba(7, 8, 10, 0.72));
  opacity: 0.24;
  mix-blend-mode: screen;
}

.listen-image::after {
  display: none;
}

.listen-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 68%;
  filter: grayscale(0.36) saturate(0.72) contrast(1.24) brightness(0.72);
  transform: scale(1.18);
  transform-origin: center bottom;
  transition:
    filter 220ms linear,
    transform 620ms linear;
}

.listen-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  border-top: 1px solid rgba(215, 221, 226, 0.16);
  background: rgba(7, 8, 10, 0.8);
}

.listen-image span,
.listen-image strong,
.listen-image em {
  display: grid;
  min-width: 0;
  align-content: center;
  min-height: 56px;
  padding: 14px 16px;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
  color: rgba(126, 138, 147, 0.86);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.listen-image strong {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 900;
}

.listen-image em {
  grid-column: 1 / -1;
  min-height: 42px;
  border-top: 1px solid rgba(215, 221, 226, 0.12);
  border-right: 0;
  color: rgba(215, 221, 226, 0.68);
}

.listen-image:hover,
.listen-image:focus-visible {
  box-shadow: none;
}

.listen-image:hover img,
.listen-image:focus-visible img {
  filter: grayscale(0.28) saturate(0.78) contrast(1.28) brightness(0.74);
  transform: scale(1.18);
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  padding-bottom: clamp(34px, 4.4vw, 62px);
  border-top: 1px solid rgba(215, 221, 226, 0.14);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.97), rgba(30, 47, 63, 0.18) 52%, rgba(7, 8, 10, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(215, 221, 226, 0.032) 118px 119px);
}

.info-copy h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 6vw, 6.6rem);
}

.identity-title {
  position: relative;
  display: grid;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 0.22em;
  isolation: isolate;
}

.identity-title span {
  position: relative;
  z-index: 2;
}

.identity-title em {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin: 0;
  padding-right: 0;
  color: rgba(82, 109, 155, 0.2);
  font-size: 0.58em;
  font-style: normal;
  line-height: 0.8;
  letter-spacing: 0;
  opacity: 0.86;
  pointer-events: none;
  text-shadow:
    0 0 26px rgba(82, 109, 155, 0.36),
    0 0 78px rgba(111, 143, 124, 0.12);
  transform: translate(0.74em, -0.08em);
}

.info-copy p {
  max-width: 760px;
  color: rgba(215, 221, 226, 0.72);
  font-size: 1.02rem;
  line-height: 1.6;
}

.info-copy p + p {
  margin-top: 18px;
}

.info-console {
  display: grid;
  align-content: center;
  align-items: center;
  gap: 0;
  justify-items: end;
  border-left: 1px solid rgba(215, 221, 226, 0.12);
  background: transparent;
}

.identity-mark {
  position: relative;
  display: grid;
  width: min(100%, 360px);
  min-height: 0;
  aspect-ratio: 1;
  place-items: center;
  margin: 0;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(215, 221, 226, 0.16);
  background:
    radial-gradient(circle at 50% 48%, rgba(82, 109, 155, 0.26), rgba(55, 81, 96, 0.1) 38%, transparent 66%),
    repeating-linear-gradient(90deg, rgba(215, 221, 226, 0.045) 0 1px, transparent 1px 48px),
    rgba(7, 8, 10, 0.76);
  isolation: isolate;
  overflow: hidden;
}

.identity-mark::before,
.identity-mark::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.identity-mark::before {
  inset: 14%;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(82, 109, 155, 0.36), rgba(111, 143, 124, 0.12) 42%, transparent 70%);
  filter: blur(18px);
  opacity: 0.78;
  transform: scale(0.92);
  animation: markGlow 5200ms ease-in-out infinite alternate;
}

.identity-mark::after {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 46%, rgba(7, 8, 10, 0.38) 76%),
    repeating-linear-gradient(0deg, rgba(226, 229, 230, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.identity-mark img {
  position: relative;
  z-index: 2;
  width: min(76%, 240px);
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(82, 109, 155, 0.18))
    drop-shadow(0 0 34px rgba(111, 143, 124, 0.1));
}

.community-section {
  position: relative;
  padding-top: clamp(48px, 7vw, 98px);
  padding-bottom: clamp(48px, 7vw, 98px);
  border-top: 1px solid rgba(215, 221, 226, 0.13);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(30, 47, 63, 0.18), rgba(7, 8, 10, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(215, 221, 226, 0.026) 116px 117px);
}

.community-panel {
  position: relative;
  display: grid;
  grid-template-areas:
    "community-title community-copy"
    "community-title community-action";
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  align-items: stretch;
  min-height: 300px;
  padding: 0;
  border-top: 1px solid rgba(215, 221, 226, 0.18);
  border-left: 1px solid rgba(215, 221, 226, 0.18);
  border-right: 1px solid rgba(215, 221, 226, 0.14);
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10, 12, 14, 0.94), rgba(30, 47, 63, 0.3), rgba(10, 12, 14, 0.94)),
    repeating-linear-gradient(0deg, rgba(226, 229, 230, 0.028) 0 1px, transparent 1px 10px);
}

.community-intro {
  grid-area: community-title;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 3.6vw, 46px);
  border-right: 1px solid rgba(215, 221, 226, 0.14);
}

.community-panel::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(111, 143, 124, 0.46);
  border-right: 1px solid rgba(111, 143, 124, 0.46);
  content: "";
}

.community-panel h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(2.45rem, 4.2vw, 5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.community-panel > p {
  grid-area: community-copy;
  align-self: start;
  max-width: 720px;
  margin: 0;
  padding: clamp(24px, 3.6vw, 46px) clamp(24px, 3.6vw, 46px) 22px;
  color: rgba(215, 221, 226, 0.72);
  font-size: 1rem;
  line-height: 1.54;
}

.community-actions {
  grid-area: community-action;
  display: grid;
  align-self: end;
  gap: 0;
  margin: 0 clamp(24px, 3.6vw, 46px) clamp(24px, 3.6vw, 46px);
  border: 1px solid rgba(215, 221, 226, 0.14);
}

.community-link {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 96px;
  color: rgba(215, 221, 226, 0.78);
  background: rgba(7, 8, 10, 0.58);
  overflow: hidden;
  transition:
    background 160ms linear,
    color 160ms linear;
}

.community-link + .community-link {
  border-top: 1px solid rgba(215, 221, 226, 0.12);
}

.community-link::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-top: 1px solid rgba(111, 143, 124, 0.52);
  border-right: 1px solid rgba(111, 143, 124, 0.52);
  content: "";
  opacity: 0.5;
  transform: translateY(-50%) rotate(45deg);
  transition:
    opacity 160ms linear,
    transform 160ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.community-link span,
.community-link strong,
.community-link em {
  min-width: 0;
  padding: 18px;
}

.community-link span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  min-height: 100%;
  border-right: 1px solid rgba(215, 221, 226, 0.12);
  color: rgba(111, 143, 124, 0.92);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.community-link strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-right: 62px;
  padding-bottom: 5px;
  color: var(--paper);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.community-link em {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 0;
  padding-right: 62px;
  color: rgba(126, 138, 147, 0.82);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.38;
  text-transform: uppercase;
}

.community-link.primary {
  background:
    linear-gradient(90deg, rgba(88, 101, 242, 0.12), rgba(7, 8, 10, 0.58) 58%),
    rgba(7, 8, 10, 0.58);
}

.community-link[href*="twitch.tv"] {
  background:
    linear-gradient(90deg, rgba(100, 65, 165, 0.13), rgba(7, 8, 10, 0.58) 58%),
    rgba(7, 8, 10, 0.58);
}

.community-link:hover,
.community-link:focus-visible {
  background: rgba(30, 47, 63, 0.54);
  color: var(--paper);
}

.community-link:hover::after,
.community-link:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -50%) rotate(45deg);
}

.object-section {
  display: block;
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(42px, 6vw, 86px);
  border-top: 1px solid rgba(215, 221, 226, 0.08);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.99), rgba(30, 47, 63, 0.1), rgba(7, 8, 10, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 132px, rgba(215, 221, 226, 0.018) 132px 133px);
}

.object-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(300px, 38vw, 460px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.94), rgba(21, 25, 29, 0.84)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 9px);
  perspective: 900px;
}

.object-stage::before,
.object-stage::after {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  content: "";
}

.object-stage::before {
  border: 1px solid rgba(82, 109, 155, 0.24);
  transform: translate(10px, -10px);
}

.object-stage::after {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(215, 221, 226, 0.12) 49.8% 50.2%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(215, 221, 226, 0.12) 49.8% 50.2%, transparent 50.2%);
  opacity: 0.42;
}

.object-readout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(215, 221, 226, 0.14);
}

.object-readout span {
  min-height: 46px;
  padding: 14px 16px;
  border-right: 0;
  border-bottom: 1px solid rgba(215, 221, 226, 0.12);
  color: rgba(126, 138, 147, 0.86);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-field {
  position: absolute;
  inset: clamp(72px, 8vw, 104px) clamp(34px, 10vw, 160px) clamp(46px, 6vw, 78px);
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(82, 109, 155, 0.26);
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(111, 143, 124, 0.12) 26px 27px, transparent 27px 58px),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(215, 221, 226, 0.055) 12px 13px, transparent 13px 44px),
    linear-gradient(110deg, transparent 0 42%, rgba(82, 109, 155, 0.18) 48%, transparent 56%);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: objectFieldDrift 18000ms steps(28, end) infinite;
}

.object-field::before,
.object-field::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.object-field::before {
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(111, 143, 124, 0.18), transparent);
  transform: translateX(-120%) skewX(-10deg);
  animation: objectFieldSweep 7600ms linear infinite;
}

.object-field::after {
  inset: 18%;
  border-top: 1px solid rgba(226, 229, 230, 0.12);
  border-bottom: 1px solid rgba(226, 229, 230, 0.12);
  opacity: 0.58;
  transform: skewX(-8deg);
}

.object-spinner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(30vw, 280px);
  aspect-ratio: 1;
  place-items: center;
  transform-style: preserve-3d;
  animation: objectSpin 12500ms linear infinite;
}

.object-spinner::before,
.object-spinner::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(215, 221, 226, 0.16);
  content: "";
  transform: rotateY(62deg);
}

.object-spinner::after {
  inset: 22%;
  border-color: rgba(111, 143, 124, 0.2);
  transform: rotateX(72deg);
}

.object-spinner img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter:
    grayscale(1)
    contrast(1.24)
    brightness(0.95)
    drop-shadow(0 0 18px rgba(215, 221, 226, 0.12));
  transform: translateZ(38px);
}

.object-stage p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(215, 221, 226, 0.14);
  color: rgba(215, 221, 226, 0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  border-top: 1px solid rgba(215, 221, 226, 0.13);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0 31%, rgba(17, 16, 18, 0.88) 31% 72%, rgba(7, 8, 10, 0.96) 72%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(170px, 0.28fr);
  gap: 0;
  align-items: stretch;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(215, 221, 226, 0.18);
  background: rgba(7, 8, 10, 0.72);
}

.contact-form label {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
  border-right: 1px solid rgba(215, 221, 226, 0.14);
}

.contact-form label span {
  color: rgba(126, 138, 147, 0.82);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 100%;
  min-height: 62px;
  border: 1px solid rgba(215, 221, 226, 0.16);
  border-radius: 0;
  outline: 0;
  background: rgba(7, 8, 10, 0.86);
  color: var(--paper);
  resize: none;
  transition:
    background 160ms linear,
    border-color 160ms linear;
}

.contact-form input {
  padding: 0 12px;
}

.contact-form textarea {
  max-height: none;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(111, 143, 124, 0.6);
  background: rgba(21, 25, 29, 0.96);
}

.contact-form .button {
  align-self: stretch;
  min-height: 124px;
  border: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  padding: 10px 18px;
  border-top: 1px solid rgba(215, 221, 226, 0.14);
  color: rgba(111, 143, 124, 0.9);
  font-family: var(--font-mono);
  font-size: 11px;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--side) 38px;
  border-top: 1px solid rgba(215, 221, 226, 0.16);
  background:
    repeating-linear-gradient(90deg, rgba(82, 109, 155, 0.07) 0 1px, transparent 1px 44px),
    var(--black);
  color: rgba(215, 221, 226, 0.52);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms linear,
    transform 700ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadPulse {
  from {
    opacity: 0.24;
    transform: scaleX(0.38);
  }

  to {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes loaderDisperse {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  48% {
    opacity: 0.88;
    transform: translate3d(0, -2px, 0) scale(1.004);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(1.01);
  }
}

@keyframes loaderMarkExit {
  0% {
    opacity: 0.92;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.96) translateY(-6px);
  }
}

@keyframes listenPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.58;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.015) translate3d(-0.2%, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(0.5%, -0.4%, 0);
  }
}

@keyframes scanDrift {
  from {
    transform: translateY(-18%);
  }

  to {
    transform: translateY(18%);
  }
}

@keyframes blink {
  0%,
  54% {
    opacity: 1;
  }

  55%,
  100% {
    opacity: 0.28;
  }
}

@keyframes markGlow {
  from {
    opacity: 0.58;
    transform: scale(0.86);
  }

  to {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

@keyframes objectSpin {
  from {
    transform: rotateX(8deg) rotateY(0deg);
  }

  to {
    transform: rotateX(8deg) rotateY(360deg);
  }
}

@keyframes objectFieldDrift {
  from {
    background-position:
      0 0,
      0 0,
      -90px 0;
  }

  to {
    background-position:
      232px 0,
      0 176px,
      90px 0;
  }
}

@keyframes objectFieldSweep {
  from {
    transform: translateX(-120%) skewX(-10deg);
  }

  to {
    transform: translateX(360%) skewX(-10deg);
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-surveillance {
    top: 106px;
    right: var(--side);
    bottom: 7vh;
    width: min(68vw, 680px);
    margin: 0;
  }

  .hero-data {
    max-width: 780px;
  }

  h1 {
    font-size: 6.5rem;
  }

  h2 {
    font-size: 4.35rem;
  }

  .release-feature,
  .info-section {
    grid-template-columns: 1fr;
  }

  .release-feature h3 {
    font-size: 3.25rem;
  }

  .release-card {
    grid-template-columns: 128px 120px minmax(190px, 0.34fr) minmax(0, 1fr) 132px;
  }

  .release-card img {
    width: 128px;
  }

  .feature-specs,
  .community-panel {
    grid-template-columns: 1fr;
  }

  .music-routing,
  .routing-panel {
    grid-template-columns: 1fr;
  }

  .music-routing .route-group {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  }

  .listen-image {
    width: min(100%, 520px);
    justify-self: end;
  }

  .listen-image img {
    min-height: 0;
  }

  .community-panel {
    grid-template-areas:
      "community-title"
      "community-copy"
      "community-action";
  }

  .community-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  }

  .community-panel > p {
    align-self: start;
    padding-bottom: 18px;
  }

  .archive-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 112px;
  }

  .archive-frame {
    grid-column: span 4;
  }

  .archive-frame.frame-large,
  .archive-frame.frame-wide,
  .archive-frame.frame-tall,
  .archive-frame.frame-square,
  .archive-frame.frame-mid,
  .archive-frame.frame-low {
    grid-column: span 4;
  }

  .archive-frame.frame-large,
  .archive-frame.frame-tall {
    grid-row: span 4;
  }

  .archive-frame.frame-wide,
  .archive-frame.frame-square,
  .archive-frame.frame-low {
    grid-row: span 2;
  }

  .archive-frame.frame-mid {
    grid-row: span 3;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 221, 226, 0.14);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px var(--side);
  }

  .site-header nav {
    order: initial;
    display: flex;
    width: auto;
    gap: 16px;
    justify-content: start;
  }

  .site-header nav a[href="#info"],
  .site-header nav a[href="#listen"],
  .site-header nav a[href="#community"] {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand i {
    width: 50px;
  }

  .load-logo {
    width: min(148px, 42vw);
    max-height: min(148px, 42vw);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 92svh;
    padding-top: 92px;
    padding-bottom: 26px;
  }

  .hero-grid::after {
    position: absolute;
    left: var(--side);
    right: var(--side);
    bottom: 18px;
    z-index: 5;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 143, 124, 0.58), rgba(215, 221, 226, 0.12), transparent);
    content: "";
    opacity: 0.72;
  }

  .hero::before {
    display: none;
  }

  .hero-rail {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 0;
    border-inline: 0;
    border-block: 1px solid rgba(215, 221, 226, 0.14);
  }

  .hero-rail span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero-copy {
    grid-column: 1;
    align-self: end;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: clamp(46px, 9svh, 76px);
  }

  .hero-surveillance {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.56;
  }

  .hero-surveillance img {
    object-position: 50% 32%;
  }

  .hero-surveillance figcaption {
    display: none;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .identity-title em {
    justify-self: start;
    margin: 0;
    padding-right: 0;
    font-size: 0.54em;
    opacity: 0.74;
    transform: translate(0.34em, -0.04em);
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero-data {
    display: none;
  }

  .info-mobile-data {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-top: 1px solid rgba(215, 221, 226, 0.14);
    border-left: 1px solid rgba(215, 221, 226, 0.12);
  }

  .info-mobile-data span {
    display: grid;
    gap: 5px;
    min-height: 58px;
    align-content: center;
    padding: 12px 14px;
    border-right: 1px solid rgba(215, 221, 226, 0.12);
    border-bottom: 1px solid rgba(215, 221, 226, 0.12);
    color: rgba(215, 221, 226, 0.74);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    background: rgba(7, 8, 10, 0.42);
  }

  .info-mobile-data b {
    color: rgba(111, 143, 124, 0.9);
  }

  .info-console {
    display: none;
  }

  .archive-section::before {
    display: none;
  }

  .archive-heading {
    grid-template-columns: 1fr;
  }

  .archive-open {
    justify-self: start;
    margin-bottom: 0;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .archive-frame {
    grid-column: auto;
    grid-row: auto;
    height: 310px;
  }

  .archive-frame.frame-large,
  .archive-frame.frame-wide,
  .archive-frame.frame-tall,
  .archive-frame.frame-square,
  .archive-frame.frame-mid,
  .archive-frame.frame-low {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .archive-frame.frame-large,
  .archive-frame.frame-tall {
    height: 410px;
  }

  .archive-frame.frame-wide,
  .archive-frame.frame-low {
    height: 240px;
  }

  .full-archive {
    padding: 12px;
  }

  .full-archive-head {
    align-items: stretch;
  }

  .full-archive-head strong {
    font-size: 1.5rem;
  }

  .full-archive-head button {
    min-width: 92px;
  }

  .full-archive-card img {
    height: auto;
  }

  .release-feature {
    min-height: 0;
    gap: 22px;
    padding-top: 56px;
  }

  .release-feature::before {
    top: 14px;
    left: 14px;
    right: auto;
    padding: 6px 8px;
    border: 1px solid rgba(215, 221, 226, 0.18);
    background: rgba(7, 8, 10, 0.86);
    color: rgba(215, 221, 226, 0.68);
  }

  .feature-media span {
    padding: 8px 10px;
  }

  .feature-copy {
    padding: 8px 0 0;
  }

  .release-feature h3 {
    font-size: 2.7rem;
  }

  .release-feature p:not(.release-code) {
    font-size: 1.05rem;
  }

  .feature-specs {
    margin-bottom: 18px;
  }

  .feature-specs span {
    min-height: 52px;
    gap: 4px;
    padding: 9px 10px;
    font-size: 9.5px;
  }

  .inline-listen-trigger {
    min-height: 64px;
  }

  .release-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 0;
    border: 1px solid rgba(215, 221, 226, 0.14);
  }

  .release-card:hover,
  .release-card:focus-within {
    transform: none;
  }

  .release-card img {
    width: 96px;
    height: 96px;
    min-height: 96px;
    grid-column: 1;
    grid-row: 1;
    border-bottom: 1px solid rgba(215, 221, 226, 0.12);
  }

  .release-meta {
    display: none;
  }

  .release-title {
    grid-column: 2;
    grid-row: 1;
    min-height: 96px;
    border-right: 0;
  }

  .release-description {
    grid-column: 1 / -1;
    grid-row: 2;
    border-right: 0;
    border-top: 1px solid rgba(215, 221, 226, 0.1);
  }

  .release-action {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid rgba(215, 221, 226, 0.1);
  }

  .release-grid {
    gap: 16px;
    border-top: 0;
  }

  .release-card + .release-card {
    margin-top: 0;
  }

  .platform-menu {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .release-card::before {
    display: none;
  }

  .route-heading {
    display: block;
    width: calc(100% - 28px);
    min-height: 0;
    margin: 14px 14px 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(215, 221, 226, 0.12);
    background: transparent;
  }

  .route-heading span,
  .route-heading em {
    display: block;
    padding: 0;
    border-right: 0;
  }

  .route-heading em {
    max-width: 300px;
    margin-top: 5px;
    color: rgba(126, 138, 147, 0.68);
    line-height: 1.35;
  }

  .route-heading em.is-active {
    background: transparent;
    color: rgba(226, 229, 230, 0.74);
  }

  .listen-image {
    width: calc(100% - 28px);
    justify-self: center;
    margin: 14px 0;
  }

  .route-link {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .route-icon img {
    width: 30px;
    height: 30px;
  }

  .route-link strong {
    font-size: 1.85rem;
  }

  .route-link em {
    grid-column: 1 / -1;
    padding-right: 18px;
    border-top: 1px solid rgba(215, 221, 226, 0.1);
  }

  .community-link {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .community-panel h2 {
    font-size: 3rem;
  }

  .community-link strong {
    font-size: 1.08rem;
  }

  .discord-prompt {
    right: 18px;
    bottom: 18px;
  }

  .object-stage {
    min-height: 460px;
  }

  .object-field {
    inset: 168px 18px 58px;
  }

  .object-readout {
    grid-template-columns: 1fr;
  }

  .object-spinner {
    width: min(54vw, 196px);
    margin-top: 96px;
  }

  .contact-form .button {
    min-height: 64px;
  }
}

@media (max-width: 470px) {
  .site-header nav {
    gap: 12px;
    font-size: 10px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3,
  .release-feature h3 {
    font-size: 2rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-grid {
    min-height: 92svh;
    padding-bottom: 22px;
  }

  .hero-copy {
    padding-bottom: clamp(44px, 8svh, 68px);
  }

  .button,
  .inline-links a,
  .inline-links button {
    width: 100%;
  }

  .hero-actions,
  .inline-links {
    display: grid;
  }

  .release-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .release-card img {
    width: 78px;
    height: 78px;
    min-height: 78px;
    grid-column: 1;
    grid-row: 1;
  }

  .release-title {
    grid-column: 2;
    grid-row: 1;
    min-height: 78px;
    border-right: 0;
  }

  .release-description,
  .release-action,
  .platform-menu {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .release-action {
    min-height: 44px;
    border-top: 1px solid rgba(215, 221, 226, 0.1);
  }

  .object-stage {
    min-height: 430px;
  }

  .object-field {
    inset: 156px 14px 56px;
  }

  .object-spinner {
    width: min(56vw, 176px);
    margin-top: 88px;
  }

  .platform-menu {
    grid-template-columns: 1fr;
  }

  .platform-menu a,
  .platform-status {
    min-height: 58px;
  }

  .route-heading,
  .route-link {
    grid-template-columns: 1fr;
  }

  .route-icon {
    justify-items: start;
    min-height: 54px;
  }

  .route-icon b {
    right: 18px;
    bottom: 18px;
  }

  .listen-image {
    width: calc(100% - 28px);
    margin: 14px auto;
  }

  .listen-image img {
    min-height: 0;
  }

  .listen-image figcaption {
    grid-template-columns: 1fr;
  }

  .listen-image span,
  .listen-image strong,
  .listen-image em {
    min-height: 42px;
    border-right: 0;
  }

  .route-link strong {
    padding-right: 58px;
  }

  .discord-prompt {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .discord-prompt a {
    width: 100%;
    justify-content: center;
  }

  .route-heading span,
  .route-heading em,
  .route-link span,
  .route-link strong,
  .route-link em {
    border-right: 0;
  }

  .community-actions {
    margin-right: 18px;
    margin-left: 18px;
  }

  .community-link {
    grid-template-columns: 1fr;
  }

  .community-link::after {
    top: 24px;
    transform: rotate(45deg);
  }

  .community-link:hover::after,
  .community-link:focus-visible::after {
    transform: translateX(4px) rotate(45deg);
  }

  .community-panel h2 {
    font-size: 2.45rem;
  }

  .community-link span {
    display: none;
  }

  .community-link strong,
  .community-link em {
    grid-column: 1;
    grid-row: auto;
  }

  .community-link strong {
    padding-right: 58px;
    padding-bottom: 7px;
  }

  .community-link em {
    padding-right: 18px;
  }

  .archive-frame.frame-large,
  .archive-frame.frame-tall {
    height: 370px;
  }

  .archive-frame.frame-wide,
  .archive-frame.frame-low {
    height: 220px;
  }

  .archive-frame.frame-square,
  .archive-frame.frame-mid {
    height: 290px;
  }

  .contact-form .button {
    min-height: 56px;
  }
}

@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-canvas {
    display: none;
  }
}
