/*
 * NEUROFUSION public theme
 * Final V02 typography (Russo One / Oswald / IBM Plex Mono), self-hosted.
 */

@font-face {
  font-family: "Russo One";
  src: url("/assets/fonts/russo-one.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/plex-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/plex-mono-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --yel: #fff001;
  --pur: #6e00b3;
  --pur2: #4b007a;
  --blk: #000;
  --paper: #f8f3d8;
  --muted-yel: rgba(255, 240, 1, 0.72);
  --line-pur: rgba(110, 0, 179, 0.45);
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", "SFMono-Regular",
    Consolas, "Liberation Mono", monospace;
  --disp: "Russo One", Impact, Haettenschweiler, "Arial Narrow Bold",
    "Arial Black", sans-serif;
  --sans: "Oswald", "Arial Narrow", "Roboto Condensed", "Helvetica Neue",
    Arial, sans-serif;
  --page-pad: clamp(18px, 4vw, 76px);
  --content-max: 1320px;
  --reading-max: 760px;
  --header-height: 90px;
  --cover-zoom: 1.19;
  --cover-x: 50%;
  --cover-y: 50%;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--blk);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--blk);
  color: var(--yel);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

::selection {
  background: var(--pur);
  color: var(--yel);
}

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

/* width/height attributes must not distort images when max-width shrinks them */
img {
  height: auto;
}

audio {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[role="button"] {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--pur);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #000;
  background: var(--yel);
  font: 700 13px var(--mono);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  opacity: 0.055;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.no-js .reveal,
.js .reveal.vis {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* Header */

header,
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-height);
  padding: 18px var(--page-pad);
}

.site-header.is-sticky,
.site-header--sticky {
  position: sticky;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line-pur);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(110, 0, 179, 0.85));
}

.brand .cap {
  color: var(--yel);
  font: 700 11px/1.55 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand .cap b,
.brand .cap strong {
  display: block;
  color: rgba(255, 240, 1, 0.75);
  font-weight: 700;
}

nav,
.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav .lnk,
.site-nav .lnk,
.site-nav > a:not(.pill) {
  padding-bottom: 4px;
  color: var(--yel);
  border-bottom: 2px solid transparent;
  font: 700 14px var(--sans);
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s;
}

nav .lnk:hover,
.site-nav .lnk:hover,
.site-nav > a:not(.pill):hover,
nav .lnk[aria-current="page"],
.site-nav .lnk[aria-current="page"] {
  color: var(--pur);
  border-color: var(--pur);
}

nav .pill,
.site-nav .pill,
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 25px;
  color: #000;
  background: var(--yel);
  border: 2px solid var(--yel);
  border-radius: 999px;
  font: 700 14px var(--sans);
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

nav .pill:hover,
.site-nav .pill:hover,
.button:hover,
.btn:hover {
  color: var(--yel);
  background: transparent;
  transform: translateY(-2px);
}

.button--purple,
.btn--purple {
  color: var(--yel);
  background: var(--pur);
  border-color: var(--pur);
}

/* Locale switch. data-locale-cookie can override the JS cookie name. */

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  color: var(--yel);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 240, 1, 0.45);
  border-radius: 999px;
}

.locale-switch a,
.locale-switch button {
  min-width: 36px;
  padding: 7px 9px;
  color: rgba(255, 240, 1, 0.62);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: 700 10px var(--mono);
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.locale-switch a:hover,
.locale-switch button:hover,
.locale-switch [aria-current="page"],
.locale-switch .active {
  color: #000;
  background: var(--yel);
}

/* Home hero */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blk);
}

@supports (height: 100svh) {
  .hero {
    min-height: 100svh;
  }
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.rays {
  animation: rays-pulse 7s ease-in-out infinite;
}

.tw {
  animation: twinkle 2.6s ease-in-out infinite;
}

.tw.d1 {
  animation-delay: 0.6s;
}

.tw.d2 {
  animation-delay: 1.2s;
}

.tw.d3 {
  animation-delay: 1.8s;
}

.traj {
  animation: dash-forward 3.5s linear infinite;
}

.flame {
  animation: flame-flicker 0.45s steps(2) infinite alternate;
}

.spin-slow {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 130s linear infinite;
}

.planet-wrap {
  position: absolute;
  top: 50%;
  right: -6vw;
  z-index: 2;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.planet-par {
  position: absolute;
  inset: 0;
  transform: translate3d(
    var(--parallax-x, 0px),
    var(--parallax-y, 0px),
    0
  );
  will-change: transform;
}

.ring1,
.ring2 {
  position: absolute;
  border-radius: 50%;
}

.ring1 {
  inset: -6%;
  border: 1px dashed rgba(110, 0, 179, 0.85);
  animation: spin 70s linear infinite;
}

.ring2 {
  inset: 5%;
  border: 1px solid rgba(110, 0, 179, 0.4);
}

.planet-img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 140px rgba(110, 0, 179, 0.5),
    0 0 0 1px rgba(110, 0, 179, 0.5);
  animation: spin 160s linear infinite;
}

.sat-orbit {
  position: absolute;
  inset: -6%;
  animation: spin 22s linear infinite;
}

.sat {
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: var(--yel);
  border-radius: 50%;
  box-shadow: 0 0 18px 5px rgba(255, 240, 1, 0.65);
}

.vertlat {
  position: absolute;
  top: 38%;
  left: 16px;
  z-index: 3;
  color: rgba(110, 0, 179, 0.95);
  font: 700 11px var(--mono);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-txt {
  position: absolute;
  bottom: calc(70px + 6vh);
  left: var(--page-pad);
  z-index: 5;
  max-width: 92vw;
}

.kicker {
  margin: 0 0 20px;
  color: var(--yel);
  font: 700 12px var(--mono);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.star,
.kicker .star {
  color: var(--pur);
}

.hero h1,
.hero-title {
  margin: 0;
  font-family: var(--disp);
  font-size: clamp(3.4rem, 13.5vw, 12rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 .mask,
.hero-title .mask {
  display: block;
  overflow: hidden;
}

.hero h1 .line,
.hero-title .line {
  display: block;
  transform: translateY(110%);
  animation: title-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero h1 .l1,
.hero-title .l1 {
  color: var(--yel);
}

.hero h1 .l2,
.hero-title .l2 {
  color: var(--pur);
  text-shadow: 0 0 60px rgba(110, 0, 179, 0.55);
  animation-delay: 0.15s;
}

.no-js .hero h1 .line,
.no-js .hero-title .line {
  transform: none;
  animation: none;
}

.sub {
  margin: 24px 0 0;
  color: rgba(255, 240, 1, 0.8);
  font: 700 clamp(11px, 1.15vw, 15px) var(--sans);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  overflow: hidden;
  background: var(--yel);
  border-top: 3px solid var(--pur);
}

.ticker--static {
  position: relative;
}

.ticker-in {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.tseq {
  display: block;
  flex: none;
  padding: 12px 0;
  color: #000;
  font: 700 17px var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tseq i,
.tseq .sep {
  padding: 0 20px;
  color: var(--pur);
  font-style: normal;
}

/* Shared section heads */

.sec-head,
.rel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.sec-head {
  margin-bottom: 5.5vh;
}

.rel-head {
  padding: 9vh var(--page-pad) 4.5vh;
}

.sec-head h2,
.rel-head h2 {
  margin: 0;
  color: var(--yel);
  font: 900 clamp(1.5rem, 2.6vw, 2.2rem) var(--disp);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rel-head .sec-tag {
  margin-right: auto;
}

.sec-tag {
  margin-block: 0;
  color: var(--pur);
  font: 700 12px var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Releases */

#releases,
.releases-section {
  background: var(--blk);
}

.flt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 21px;
  color: var(--yel);
  background: transparent;
  border: 1.5px solid rgba(255, 240, 1, 0.6);
  border-radius: 999px;
  font: 700 12px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.flt-btn:hover {
  background: rgba(255, 240, 1, 0.08);
  border-color: var(--yel);
}

.flt-btn b,
.flt-btn [data-filter-state] {
  min-width: 4ch;
  font-weight: 700;
  text-align: left;
}

.flt-btn .led {
  width: 9px;
  height: 9px;
  flex: none;
  background: var(--yel);
  border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(255, 240, 1, 0.7);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.flt-btn[aria-pressed="false"] {
  color: rgba(255, 240, 1, 0.55);
  border-color: rgba(255, 240, 1, 0.3);
}

.flt-btn[aria-pressed="false"] .led {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(255, 240, 1, 0.5);
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: var(--blk);
}

.cov {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  color: var(--yel);
  background: #000;
  text-decoration: none;
}

.cov-img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--pur2);
}

.cov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cover-x, 50%) var(--cover-y, 50%);
  scale: var(--cover-zoom, 1.19);
  transform: scale(1);
  transform-origin: var(--cover-x, 50%) var(--cover-y, 50%);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
  will-change: transform;
}

/* The individual scale and transform multiply: crop remains while hover zooms. */
.cov:hover .cov-img img,
.cov:focus-visible .cov-img img {
  transform: scale(1.055);
}

@supports not (scale: 1) {
  .cov-img img {
    transform: scale(var(--cover-zoom, 1.19));
  }

  .cov:hover .cov-img img,
  .cov:focus-visible .cov-img img {
    transform: scale(var(--cover-hover-zoom, 1.255));
  }
}

.flt .cov-img img {
  filter: grayscale(1) contrast(1.15) brightness(0.95) url("#duo");
}

.flt .cov-img::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      130% 95% at 16% 10%,
      rgba(110, 0, 179, 0.3),
      transparent 55%
    ),
    radial-gradient(
      130% 105% at 86% 92%,
      rgba(255, 240, 1, 0.12),
      transparent 60%
    );
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.badge {
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 3;
  padding: 8px 12px;
  color: #000;
  background: var(--yel);
  border: 2px solid #000;
  box-shadow:
    0 0 0 2px var(--yel),
    0 10px 30px rgba(0, 0, 0, 0.55);
  font: 700 11px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-3deg);
}

.badge .star {
  margin-right: 0.4em;
}

.chip {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  padding: 10px 23px;
  color: var(--yel);
  background: #000;
  border: 1px solid var(--yel);
  opacity: 0;
  font: 700 13px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 0.25s,
    transform 0.25s;
}

.cov:hover .chip,
.cov:focus-visible .chip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cov-cap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  row-gap: 7px;
  padding: 15px 16px 19px;
  background: #000;
  border-top: 2px solid var(--pur);
  transition: background 0.25s;
}

.cov-art {
  overflow: hidden;
  color: rgba(255, 240, 1, 0.62);
  font: 700 11px var(--mono);
  letter-spacing: 0.22em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s;
}

.cov-num {
  color: var(--pur);
  font: 700 11px var(--mono);
  letter-spacing: 0.14em;
  transition: color 0.25s;
}

.cov-ttl {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--yel);
  font: 900 17px/1.25 var(--disp);
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.cov:hover .cov-cap,
.cov:focus-visible .cov-cap {
  background: var(--yel);
}

.cov:hover .cov-ttl,
.cov:focus-visible .cov-ttl,
.cov:hover .cov-num,
.cov:focus-visible .cov-num {
  color: #000;
}

.cov:hover .cov-art,
.cov:focus-visible .cov-art {
  color: var(--pur2);
}

.js .rel-grid .cov.reveal:nth-child(4n + 2) {
  transition-delay: 0.07s;
}

.js .rel-grid .cov.reveal:nth-child(4n + 3) {
  transition-delay: 0.14s;
}

.js .rel-grid .cov.reveal:nth-child(4n) {
  transition-delay: 0.21s;
}

/* Artists */

#artists,
.artists-section {
  position: relative;
  padding: 14vh var(--page-pad) 10vh;
  overflow: hidden;
  background: radial-gradient(
    circle at 88% 12%,
    rgba(75, 0, 122, 0.28),
    transparent 52%
  );
}

.crew {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(110, 0, 179, 0.4);
  list-style: none;
}

@media (min-width: 620px) {
  .crew {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 3vw, 54px);
  }
}

@media (min-width: 1080px) {
  .crew {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.crew li {
  min-width: 0;
  border-top: 1px solid rgba(110, 0, 179, 0.4);
}

.crew li a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  padding: 13px 10px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s;
}

.crew .num {
  min-width: 2.6ch;
  flex: none;
  color: var(--pur);
  font: 700 12px var(--mono);
}

.crew .name {
  min-width: 0;
  overflow: hidden;
  color: var(--yel);
  font: 900 clamp(1.05rem, 1.7vw, 1.7rem) / 1.05 var(--disp);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.25s,
    -webkit-text-stroke 0.25s;
}

.crew .name.long {
  font-size: clamp(0.92rem, 1.35vw, 1.35rem);
}

@supports (-webkit-text-stroke: 1px #000) {
  .crew .name {
    color: transparent;
    -webkit-text-stroke: 1px var(--yel);
  }

  .crew li:nth-child(even) .name {
    -webkit-text-stroke-color: var(--pur);
  }
}

.crew .genre {
  margin-left: auto;
  flex: none;
  color: rgba(255, 240, 1, 0.5);
  font: 700 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.crew li a:hover,
.crew li a:focus-visible {
  background: var(--yel);
  transform: translateX(5px);
}

.crew li a:hover .name,
.crew li a:focus-visible .name {
  color: #000;
  -webkit-text-stroke: 0 transparent;
}

.crew li a:hover .num,
.crew li a:focus-visible .num {
  color: #000;
}

.crew li a:hover .genre,
.crew li a:focus-visible .genre {
  color: var(--pur2);
}

.crew li:nth-child(even) a:hover,
.crew li:nth-child(even) a:focus-visible {
  background: var(--pur2);
}

.crew li:nth-child(even) a:hover .name,
.crew li:nth-child(even) a:focus-visible .name,
.crew li:nth-child(even) a:hover .num,
.crew li:nth-child(even) a:focus-visible .num,
.crew li:nth-child(even) a:hover .genre,
.crew li:nth-child(even) a:focus-visible .genre {
  color: var(--yel);
  -webkit-text-stroke: 0 transparent;
}

.js .crew li.reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.js .crew li.reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.js .crew li.reveal:nth-child(4) {
  transition-delay: 0.15s;
}

.js .crew li.reveal:nth-child(5) {
  transition-delay: 0.2s;
}

.js .crew li.reveal:nth-child(6) {
  transition-delay: 0.25s;
}

.js .crew li.reveal:nth-child(7) {
  transition-delay: 0.3s;
}

.js .crew li.reveal:nth-child(8) {
  transition-delay: 0.35s;
}

/* News */

#news,
.news-section {
  position: relative;
  padding: 4vh var(--page-pad) 13vh;
  overflow: hidden;
  background: radial-gradient(
    circle at 8% 88%,
    rgba(75, 0, 122, 0.22),
    transparent 50%
  );
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ncard {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: 30px 26px 34px;
  background: rgba(110, 0, 179, 0.07);
  border: 1px solid rgba(110, 0, 179, 0.45);
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.ncard:hover,
.ncard:focus-within {
  border-color: var(--yel);
  box-shadow: 0 18px 50px rgba(110, 0, 179, 0.3);
  transform: translateY(-6px);
}

.ncard > :first-child {
  margin-top: 0;
}

.n-date {
  margin: 0;
  color: rgba(255, 240, 1, 0.65);
  font: 700 11px var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.n-date .star {
  margin-right: 0.5em;
}

.ncard h3 {
  margin: 0;
  color: var(--yel);
  font: 900 clamp(1.1rem, 1.5vw, 1.3rem) / 1.3 var(--disp);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ncard p:not(.n-date) {
  margin: 0;
  color: rgba(255, 240, 1, 0.72);
  font: 500 15px/1.65 var(--sans);
  letter-spacing: 0.04em;
}

.n-link {
  align-self: flex-start;
  padding-bottom: 4px;
  margin-top: auto;
  color: var(--yel);
  border-bottom: 2px solid var(--pur);
  font: 700 12px var(--mono);
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    letter-spacing 0.2s;
}

.n-link:hover {
  border-color: var(--yel);
  letter-spacing: 0.23em;
}

.js .news-grid .ncard.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .news-grid .ncard.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

/* Contacts */

#contacts,
.contacts-section {
  position: relative;
  padding: 16vh var(--page-pad);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(110, 0, 179, 0.4);
}

.burst {
  position: absolute;
  inset: -60% -30%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 240, 1, 0.06) 0 5deg,
    transparent 5deg 12deg
  );
  pointer-events: none;
  animation: spin 90s linear infinite;
}

.obelisk {
  position: absolute;
  right: 3vw;
  bottom: 0;
  z-index: 1;
  height: 80%;
  opacity: 0.3;
  pointer-events: none;
}

.c-in {
  position: relative;
  z-index: 2;
}

.c-tag {
  margin: 0 0 22px;
  color: var(--pur);
  font: 700 12px var(--mono);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.c-h {
  margin: 0;
  font: 900 clamp(2.4rem, 6vw, 5rem) / 1.02 var(--disp);
  text-transform: uppercase;
}

.c-h .y {
  color: var(--yel);
}

.c-h .p {
  color: var(--pur);
  text-shadow: 0 0 50px rgba(110, 0, 179, 0.6);
}

.c-p {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(255, 240, 1, 0.78);
  font: 600 clamp(14px, 1.4vw, 18px) / 1.7 var(--sans);
  letter-spacing: 0.08em;
}

.demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 2.1em;
  margin: 6vh 0 5vh;
  color: #000;
  background: var(--yel);
  border-radius: 999px;
  box-shadow:
    0 0 0 4px var(--blk),
    0 0 0 6px var(--pur);
  font: 900 clamp(1.25rem, 2.6vw, 2.2rem) var(--disp);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.demo .star {
  margin-right: 0.35em;
  transition: color 0.25s;
}

.demo:hover {
  color: var(--yel);
  background: var(--pur);
  box-shadow:
    0 0 0 4px var(--blk),
    0 0 0 6px var(--yel),
    0 18px 60px rgba(110, 0, 179, 0.55);
  transform: translateY(-4px);
}

.demo:hover .star {
  color: var(--yel);
}

.socials,
.share-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.soc,
.share-links a {
  padding: 11px 27px;
  color: var(--yel);
  border: 1.5px solid rgba(255, 240, 1, 0.6);
  border-radius: 999px;
  font: 700 13px var(--mono);
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.soc:hover,
.share-links a:hover {
  color: #000;
  background: var(--yel);
  border-color: var(--yel);
}

/* Footer */

footer,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 34px var(--page-pad);
  border-top: 1px solid rgba(110, 0, 179, 0.4);
}

footer .cr,
.site-footer .cr {
  margin: 0;
  color: var(--yel);
  font: 900 14px var(--disp);
  letter-spacing: 0.06em;
}

footer .lat,
.site-footer .lat {
  margin: 0;
  color: var(--pur);
  font: 700 11px var(--mono);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* Internal pages */

.inner-hero {
  position: relative;
  display: grid;
  min-height: clamp(190px, 26vh, 300px);
  align-items: end;
  padding: calc(var(--header-height) + 3vh) var(--page-pad) 3.5vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(110, 0, 179, 0.4), transparent 35%),
    repeating-conic-gradient(
      from -20deg at 90% 100%,
      rgba(255, 240, 1, 0.045) 0 5deg,
      transparent 5deg 13deg
    ),
    #000;
  border-bottom: 3px solid var(--pur);
}

.inner-hero::before {
  position: absolute;
  top: 17%;
  right: clamp(-130px, -7vw, -20px);
  width: clamp(260px, 36vw, 560px);
  aspect-ratio: 1;
  border: 1px dashed rgba(110, 0, 179, 0.85);
  border-radius: 50%;
  box-shadow:
    inset 0 0 90px rgba(110, 0, 179, 0.15),
    0 0 90px rgba(110, 0, 179, 0.12);
  content: "";
  pointer-events: none;
  animation: spin 90s linear infinite;
}

.inner-hero__in,
.inner-hero > .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.inner-hero h1 {
  max-width: 1050px;
  margin: 12px 0 0;
  color: var(--yel);
  font: 900 clamp(1.9rem, 4.2vw, 3.6rem) / 0.98 var(--disp);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.inner-hero > p:not(.sec-tag) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted-yel);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.inner-hero .orbit-mark {
  position: absolute;
  top: calc(var(--header-height) + 8px);
  right: var(--page-pad);
  z-index: 1;
  color: var(--pur);
  font-size: 22px;
  animation: twinkle 2.6s ease-in-out infinite;
  pointer-events: none;
}

.inner-hero .lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted-yel);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  color: rgba(255, 240, 1, 0.58);
  font: 700 11px var(--mono);
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--pur);
  content: "★";
}

.breadcrumbs a {
  text-decoration-color: var(--pur);
  text-underline-offset: 4px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--yel);
}

.content-page {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  padding: clamp(54px, 9vh, 110px) var(--page-pad);
  margin-inline: auto;
}

.content-page--wide {
  max-width: none;
}

.content-layout,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.detail-cover {
  position: sticky;
  top: 30px;
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--pur);
  box-shadow: 18px 18px 0 rgba(110, 0, 179, 0.2);
}

/* Release page */

.inner-page .content-page {
  padding-block: clamp(30px, 5vh, 56px);
}

.release-detail {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4.5vw, 60px);
  align-items: start;
}

.release-cover {
  position: sticky;
  top: 24px;
}

.release-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: var(--cover-x, 50%) var(--cover-y, 50%);
  border: 2px solid var(--pur);
  box-shadow: 14px 14px 0 rgba(110, 0, 179, 0.2);
}

.release-copy > .sec-tag {
  margin-bottom: 18px;
}

.release-copy .audio-player {
  margin-top: 26px;
}

.compact-demo {
  padding: 0.6em 1.6em;
  margin: 28px 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
}

/* Artist page */

.artist-detail {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(26px, 4.5vw, 60px);
  align-items: start;
}

.artist-photo {
  position: sticky;
  top: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--pur);
  box-shadow: 14px 14px 0 rgba(110, 0, 179, 0.2);
}

.socials.left {
  justify-content: flex-start;
  margin-top: 24px;
}

.related h2 {
  margin: 0 0 26px;
  color: var(--yel);
  font: 900 clamp(1.4rem, 2.4vw, 2rem) var(--disp);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* News article page */

.article-page {
  max-width: calc(var(--reading-max) + 2 * var(--page-pad));
}

.article-hero {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 16 / 9;
  margin-bottom: 26px;
  object-fit: cover;
  border: 1px solid var(--line-pur);
}

.article-page .n-date {
  margin-bottom: 18px;
}

.article-page .n-link {
  display: inline-block;
  margin-top: 26px;
}

.section-more {
  display: inline-block;
  padding-bottom: 4px;
  margin-top: 34px;
  color: var(--yel);
  border-bottom: 2px solid var(--pur);
  font: 700 12px var(--mono);
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    letter-spacing 0.2s;
}

.section-more:hover {
  border-color: var(--yel);
  letter-spacing: 0.23em;
}

.prose {
  max-width: var(--reading-max);
  color: rgba(255, 240, 1, 0.82);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  margin: 2em 0 0.65em;
  color: var(--yel);
  font-family: var(--disp);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.prose h2 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
}

.prose h3 {
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure,
.prose table,
.prose pre {
  margin: 0 0 1.35em;
}

.prose ul,
.prose ol {
  padding-left: 1.35em;
}

.prose li + li {
  margin-top: 0.45em;
}

.prose li::marker {
  color: var(--pur);
  font-weight: 700;
}

.prose a {
  color: var(--yel);
  text-decoration-color: var(--pur);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.prose a:hover {
  color: #fff;
  text-decoration-color: var(--yel);
}

.prose strong {
  color: var(--yel);
}

.prose blockquote {
  padding: 1.2em 1.4em;
  color: var(--yel);
  background: rgba(110, 0, 179, 0.12);
  border-left: 5px solid var(--pur);
  font-size: 1.08em;
}

.prose img {
  width: auto;
  margin-inline: auto;
  border: 1px solid var(--line-pur);
}

.prose figcaption {
  margin-top: 10px;
  color: rgba(255, 240, 1, 0.52);
  font: 700 11px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-align: center;
}

.prose code,
.prose pre {
  font-family: var(--mono);
}

.prose code {
  padding: 0.15em 0.35em;
  color: var(--yel);
  background: rgba(110, 0, 179, 0.25);
}

.prose pre {
  padding: 18px;
  overflow-x: auto;
  border: 1px solid var(--line-pur);
}

.prose pre code {
  padding: 0;
  background: transparent;
}

.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.9em;
}

.prose th,
.prose td {
  padding: 10px 12px;
  border: 1px solid var(--line-pur);
  text-align: left;
}

.prose th {
  color: #000;
  background: var(--yel);
  font-family: var(--mono);
  text-transform: uppercase;
}

.content-meta {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 30px;
  color: rgba(255, 240, 1, 0.58);
  font: 700 11px var(--mono);
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

.content-meta strong {
  color: var(--yel);
}

.empty-state {
  position: relative;
  max-width: 820px;
  padding: clamp(44px, 8vw, 90px) clamp(22px, 6vw, 70px);
  margin: 3vh auto;
  overflow: hidden;
  text-align: center;
  background: rgba(110, 0, 179, 0.08);
  border: 1px dashed rgba(255, 240, 1, 0.45);
}

.empty-state::before {
  display: block;
  margin-bottom: 18px;
  color: var(--pur);
  content: "★";
  font-size: 34px;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 12px;
  font: 900 clamp(1.5rem, 4vw, 2.8rem) / 1.05 var(--disp);
  text-transform: uppercase;
}

.empty-state p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted-yel);
  font-size: 17px;
}

/* Native audio remains usable without JavaScript; custom controls may use these parts. */

.audio-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: center;
  width: 100%;
  padding: 18px;
  color: var(--yel);
  background: rgba(110, 0, 179, 0.13);
  border: 1px solid var(--line-pur);
}

.audio-player audio {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--pur);
}

.audio-player__play,
.audio-player [data-audio-play] {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #000;
  background: var(--yel);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.audio-player__title {
  min-width: 0;
  font: 900 16px var(--disp);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audio-player__meta,
.audio-player__time {
  color: rgba(255, 240, 1, 0.58);
  font: 700 11px var(--mono);
  letter-spacing: 0.1em;
}

.audio-player__progress,
.audio-player progress,
.audio-player input[type="range"] {
  width: 100%;
  accent-color: var(--pur);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: clamp(45px, 8vh, 90px) 0 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  place-items: center;
  color: var(--yel);
  border: 1px solid rgba(255, 240, 1, 0.4);
  font: 700 12px var(--mono);
  text-decoration: none;
}

.pagination a:hover,
.pagination [aria-current="page"],
.pagination .current {
  color: #000;
  background: var(--yel);
  border-color: var(--yel);
}

.pagination [aria-disabled="true"],
.pagination .disabled {
  opacity: 0.35;
  pointer-events: none;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: calc(var(--header-height) + 6vh) var(--page-pad) 10vh;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(110, 0, 179, 0.34), transparent 38%),
    #000;
}

.not-found::before {
  position: absolute;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  border: 1px dashed var(--pur);
  border-radius: 50%;
  content: "";
  animation: spin 70s linear infinite;
}

.not-found__in {
  position: relative;
  z-index: 2;
}

.not-found__code,
.not-found .code {
  display: block;
  color: var(--pur);
  font: 900 clamp(7rem, 27vw, 22rem) / 0.75 var(--disp);
  text-shadow: 0 0 90px rgba(110, 0, 179, 0.55);
}

.not-found h1 {
  margin: 30px 0 12px;
  font: 900 clamp(1.8rem, 5vw, 4rem) / 1 var(--disp);
  text-transform: uppercase;
}

.not-found p {
  max-width: 580px;
  margin: 0 auto 30px;
  color: var(--muted-yel);
  font-size: 18px;
}

/* Keyframes */

@keyframes rays-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

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

  50% {
    opacity: 0.2;
  }
}

@keyframes dash-forward {
  to {
    stroke-dashoffset: -96;
  }
}

@keyframes flame-flicker {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.35;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes title-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Responsive layout */

@media (max-width: 1100px) {
  .rel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .content-layout,
  .detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .planet-wrap {
    top: 9%;
    right: -24vw;
    width: min(82vw, 430px);
    transform: none;
  }

  .hero-txt {
    bottom: calc(60px + 6vh);
  }

  .vertlat,
  .obelisk {
    display: none;
  }

  nav,
  .site-nav,
  .header-actions {
    gap: 14px;
  }

  .content-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    position: static;
    width: min(100%, 480px);
    order: -1;
  }

  .release-detail,
  .artist-detail {
    grid-template-columns: 1fr;
  }

  .release-cover,
  .artist-photo {
    position: static;
    width: min(100%, 380px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
    --header-height: 72px;
  }

  header,
  .site-header {
    gap: 12px;
    padding-block: 13px;
  }

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

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

  .brand .cap {
    font-size: 9.5px;
  }

  nav .lnk,
  .site-nav .lnk,
  .site-nav > a:not(.pill) {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  nav .pill,
  .site-nav .pill {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .locale-switch {
    gap: 1px;
    padding: 2px;
  }

  .locale-switch a,
  .locale-switch button {
    min-width: 32px;
    padding: 6px;
  }

  .tseq {
    padding: 10px 0;
    font-size: 14px;
  }

  .crew li a {
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 8px;
  }

  .crew .name {
    white-space: normal;
    overflow: visible;
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .crew .genre {
    flex-basis: 100%;
    margin-left: calc(2.6ch + 10px);
    margin-top: 2px;
  }

  .rel-head {
    padding-top: 7vh;
  }

  .rel-head .flt-btn {
    width: 100%;
    justify-content: center;
  }

  footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer .lat,
  .site-footer .lat {
    line-height: 1.65;
  }

  .inner-hero {
    min-height: 170px;
    padding-bottom: 26px;
  }

  .inner-hero h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.6rem);
  }

  .content-page {
    padding-block: 54px;
  }

  .audio-player {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .audio-player__time {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .brand .cap {
    display: none;
  }

  nav,
  .site-nav,
  .header-actions {
    gap: 8px;
  }

  nav .lnk,
  .site-nav .lnk,
  .site-nav > a:not(.pill) {
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }

  nav .pill,
  .site-nav .pill {
    padding: 8px 12px;
    letter-spacing: 0.06em;
  }

  .locale-switch a,
  .locale-switch button {
    min-width: 28px;
    padding: 6px 5px;
  }

  .badge {
    top: 12px;
    left: 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
  }

  .ncard {
    padding: 25px 20px 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero h1 .line,
  .hero-title .line {
    transform: none;
  }

  .ticker-in {
    width: 100%;
    overflow: hidden;
  }

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

  .planet-par {
    transform: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted-yel: rgba(255, 240, 1, 0.9);
    --line-pur: rgba(255, 240, 1, 0.75);
  }

  .ncard,
  .audio-player {
    border-color: var(--yel);
  }
}

@media print {
  .grain,
  .ticker,
  .hero-art,
  .planet-wrap,
  .burst,
  .obelisk,
  .flt-btn,
  .socials,
  .share-links,
  .audio-player,
  nav,
  .site-nav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  header,
  .site-header,
  footer,
  .site-footer {
    position: static;
    color: #000;
    background: #fff;
    border-color: #555;
  }

  .inner-hero,
  .content-page,
  .prose,
  .prose h2,
  .prose h3,
  .prose h4,
  footer .cr,
  footer .lat {
    color: #000;
    background: #fff;
    text-shadow: none;
  }
}
