@font-face {
  font-family: "Heth Bold";
  src: url("../fonts/BE-BOLD.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Heth Original";
  src: url("../fonts/Hand-Originals.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Heth Round";
  src: url("../fonts/Roundelay-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #e1eaf0;
  --surface-strong: #cedae3;
  --text: #111111;
  --muted: #70757a;
  --line: rgba(17, 17, 17, 0.18);
  --brand: #35d6a4;
  --hot: #ef5b4c;
  --acid: #caff00;
  --player: #2a005c;
  --header-h: 82px;
  --page-pad: clamp(20px, 7vw, 120px);
  --max: 1320px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0b0b10;
  --surface: #171822;
  --surface-strong: #242636;
  --text: #f4f3ee;
  --muted: #a8a7b0;
  --line: rgba(255, 255, 255, 0.2);
  --brand: #56efbc;
  --hot: #ff7265;
  --player: #caff00;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background: var(--bg);
  font-family: "Heth Round", "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  transition: color .35s ease, background-color .35s ease;
}

body.is-loading,
body.menu-open,
body.player-open {
  overflow: hidden;
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  background: var(--acid);
  transform: translate3d(-120%, 0, 0) skewX(-7deg);
  transition: transform .42s var(--ease);
}

.page-wipe.is-active {
  transform: translate3d(0, 0, 0) skewX(0);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  color: #000;
  background: var(--acid);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--acid);
  color: #000;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: var(--header-h);
  color: var(--text);
  transition: color .35s ease, background-color .35s ease, transform .45s var(--ease), box-shadow .35s ease;
}

.site-header.is-overlay {
  color: #fff;
}

.site-header.is-scrolled,
[data-theme="dark"] .site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  color: var(--text);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 94px 1fr 94px;
  align-items: center;
}

.brand-mark {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .35s var(--ease), filter .35s ease;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.08));
}

.brand-mark:hover {
  transform: rotate(-9deg) scale(1.08);
}

.main-nav {
  justify-self: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a,
.nav-about-toggle {
  position: relative;
  display: block;
  padding: 30px 0 26px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 17px;
  cursor: pointer;
}

.main-nav a::after,
.nav-about-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: currentColor;
  transition: right .3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.nav-about-toggle:hover::after,
.nav-about-toggle[aria-expanded="true"]::after {
  right: 0;
}

.about-menu {
  position: fixed;
  top: calc(var(--header-h) - 6px);
  left: 50%;
  z-index: 490;
  width: min(460px, calc(100vw - 40px));
  padding: 22px 26px 26px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(.98);
  transition: opacity .25s ease, transform .35s var(--ease);
}

.about-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.about-menu a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Heth Bold", sans-serif;
  font-size: 21px;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-menu a:last-child {
  border-bottom: 0;
}

.about-menu a::after {
  content: "↗";
  font-family: "Heth Round", sans-serif;
  transition: transform .25s var(--ease);
}

.about-menu a:hover::after {
  transform: translate(4px, -4px);
}

.header-tools {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}

.icon-button:hover,
.menu-button:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
  transform: rotate(8deg);
}

.icon-button svg,
.menu-button svg {
  width: 24px;
  height: 24px;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 480;
  display: grid;
  align-content: center;
  padding: calc(var(--header-h) + 20px) 28px 34px;
  background: var(--surface);
  color: var(--text);
  clip-path: circle(0 at calc(100% - 45px) 42px);
  visibility: hidden;
  transition: clip-path .75s var(--ease), visibility 0s .75s;
}

.mobile-menu.is-open {
  clip-path: circle(150vmax at calc(100% - 45px) 42px);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu nav {
  width: min(100%, 520px);
  margin-inline: auto;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(34px, 9vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

.mobile-subnav {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.mobile-subnav a {
  border: 0;
  font-family: "Heth Round", sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

main {
  min-height: 100vh;
}

.page-main {
  padding-top: var(--header-h);
}

.container {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: "Heth Original", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: .04em;
}

.display-title,
.section-title,
.card-title,
.detail-title,
.hero-title {
  margin: 0;
  font-family: "Heth Bold", Impact, sans-serif;
  font-weight: 400;
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.display-title {
  font-size: clamp(68px, 10vw, 164px);
}

.section-title {
  font-size: clamp(48px, 7vw, 96px);
}

.lede {
  max-width: 52rem;
  font-size: clamp(18px, 2.2vw, 27px);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  font-family: "Heth Bold", sans-serif;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  transition: color .3s ease, transform .3s var(--ease), border-color .3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--text);
  transform: translateY(102%);
  transition: transform .35s var(--ease);
}

.btn:hover {
  color: var(--bg);
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateY(0);
}

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: #e9f1f5;
  color: #111;
  transition: opacity .7s ease, visibility 0s .7s;
}

.site-loader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.site-loader.is-return {
  transition-duration: .25s, 0s;
  transition-delay: 0s, .25s;
}

.loader-inner {
  width: min(620px, calc(100vw - 44px));
  text-align: center;
}

.loader-monster {
  width: clamp(74px, 12vw, 112px);
  margin: 0 auto 28px;
  animation: monster-float 1.2s ease-in-out infinite alternate;
}

.loader-title {
  margin: 0 0 24px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  line-height: .95;
  text-transform: uppercase;
}

.loader-track {
  position: relative;
  height: 54px;
  margin-inline: 18px;
}

.loader-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(17,17,17,.2);
}

.loader-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleX(var(--loader-progress, 0));
  transform-origin: left;
  transition: transform .15s linear;
}

.loader-rocket {
  position: absolute;
  top: 50%;
  left: calc(var(--loader-progress, 0) * 100%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(45deg);
  color: #4a36ff;
  transition: left .15s linear;
}

.loader-rocket svg {
  width: 32px;
  height: 32px;
}

.loader-percent {
  min-height: 28px;
  margin: 16px 0 0;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes monster-float {
  to { transform: translateY(-9px) rotate(5deg); }
}

/* Home slider */
.home-main {
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #15151b;
}

.hero-slider,
.slides,
.hero-slide {
  height: 100%;
}

.slides {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(7%);
  transition: opacity .65s ease, transform .8s var(--ease), visibility 0s .8s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-slide.is-leaving-up {
  opacity: 0;
  transform: translateY(-7%);
}

.hero-slide-media,
.hero-slide-media img {
  width: 100%;
  height: 100%;
}

.hero-slide-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 7s linear;
}

.hero-slide.is-active .hero-slide-media img {
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,18,.25), transparent 46%, rgba(8,8,18,.38));
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 44px));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -54%);
}

.hero-kicker {
  margin: 0 0 18px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(22px, 2.6vw, 37px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(72px, 10vw, 156px);
}

.hero-intro {
  margin: 28px 0 8px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.journey-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0 9px;
  border-bottom: 1px solid rgba(255,255,255,.8);
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(19px, 2.1vw, 29px);
  line-height: 1;
  text-transform: uppercase;
}

.journey-link .journey-orbit {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width .3s var(--ease), opacity .2s ease;
}

.journey-link:hover .journey-orbit {
  width: 24px;
  opacity: 1;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  inset: auto 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), 1440px);
  margin-inline: auto;
  color: #fff;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.14);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), background .25s ease;
}

.slider-arrow:hover {
  background: rgba(0,0,0,.34);
  transform: scale(1.08);
}

.slider-next {
  justify-self: end;
}

.slider-counter {
  min-width: min(410px, 46vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  font-size: 21px;
}

.slider-progress {
  height: 1px;
  background: rgba(255,255,255,.45);
}

.slider-progress span {
  display: block;
  height: 100%;
  background: #fff;
  transform: scaleX(var(--slide-progress, .0417));
  transform-origin: left;
  transition: transform .5s var(--ease);
}

/* Intro and listing */
.page-hero {
  min-height: calc(58svh - var(--header-h));
  display: grid;
  align-items: end;
  padding: clamp(90px, 14vh, 170px) var(--page-pad) clamp(58px, 9vh, 110px);
  border-radius: 0 0 40px 40px;
  background: var(--surface);
  overflow: hidden;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.page-hero .display-title {
  max-width: 950px;
}

.page-hero-copy {
  max-width: 440px;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
}

.planet-poster {
  padding: clamp(72px, 10vw, 150px) 0;
  text-align: center;
}

.planet-poster .display-title {
  margin-bottom: 30px;
}

.poster-kicker {
  margin: 0 0 70px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.poster-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px;
}

.poster-collage img {
  width: 100%;
  aspect-ratio: .62;
  object-fit: cover;
  border-radius: 28px;
  transition: transform .45s var(--ease);
}

.poster-collage img:nth-child(1),
.poster-collage img:nth-child(5) { transform: translateY(52px); }
.poster-collage img:nth-child(2),
.poster-collage img:nth-child(4) { transform: translateY(-8px); }
.poster-collage img:nth-child(3) { transform: translateY(80px); }

.poster-collage:hover img:nth-child(odd) { transform: translateY(16px); }
.poster-collage:hover img:nth-child(even) { transform: translateY(24px); }

.story-section {
  padding: clamp(74px, 10vw, 150px) 0;
}

.story-block {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: clamp(30px, 8vw, 130px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.story-content h2 {
  margin: 0 0 36px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .95;
  text-transform: uppercase;
}

.story-content p {
  max-width: 760px;
  color: var(--muted);
}

.listing-section {
  padding: clamp(70px, 8vw, 120px) 0 clamp(100px, 12vw, 180px);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 86px) clamp(22px, 3vw, 46px);
}

.art-card {
  min-width: 0;
}

.art-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
}

.art-card-media::after {
  content: "JOURNEY →";
  position: absolute;
  inset: auto 16px 16px;
  padding: 12px 15px 10px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: "Heth Bold", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  transform: translateY(calc(100% + 20px));
  transition: transform .4s var(--ease);
}

.art-card-media:hover::after,
.art-card:focus-within .art-card-media::after {
  transform: translateY(0);
}

.art-card img {
  width: 100%;
  aspect-ratio: 1120 / 1642;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s ease;
}

.art-card-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.card-title {
  margin-top: 22px;
  font-size: clamp(28px, 3vw, 44px);
}

.card-meta {
  margin-top: 7px;
  color: var(--muted);
  font-family: "Heth Original", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.world-grid .art-card img {
  aspect-ratio: 1120 / 1642;
}

/* Detail */
.detail-header {
  min-height: 48svh;
  display: grid;
  align-items: end;
  padding: clamp(110px, 15vw, 200px) var(--page-pad) 60px;
}

.detail-title {
  font-size: clamp(74px, 13vw, 190px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: start;
  padding-bottom: clamp(100px, 12vw, 180px);
}

.detail-media {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.detail-media img {
  width: 100%;
  max-height: calc(100svh - var(--header-h) - 48px);
  object-fit: cover;
  border-radius: 34px;
  background: var(--surface);
}

.detail-copy {
  padding-top: 4px;
}

.detail-copy h2,
.detail-copy h3,
.detail-copy h4 {
  margin: 48px 0 18px;
  font-family: "Heth Bold", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.detail-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.detail-copy h3 { font-size: clamp(30px, 4vw, 52px); }
.detail-copy h4 { font-size: clamp(22px, 2.7vw, 34px); color: var(--muted); }

.detail-copy p,
.detail-copy li {
  color: var(--muted);
}

.detail-copy ul {
  padding-left: 1.2em;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.detail-gallery img {
  width: 100%;
  border-radius: 24px;
  background: var(--surface);
}

.detail-gallery img:first-child:last-child {
  grid-column: 1 / -1;
}

.next-journey {
  position: relative;
  display: block;
  padding: clamp(64px, 9vw, 130px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.next-journey span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
}

.next-journey strong {
  display: block;
  margin-top: 12px;
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
  transition: transform .45s var(--ease);
}

.next-journey:hover strong {
  transform: translateX(24px);
}

/* Musica */
.musica-stage {
  position: relative;
  width: min(calc(100% - 30px), 1500px);
  min-height: min(68vw, 760px);
  margin: 30px auto clamp(90px, 10vw, 150px);
  overflow: hidden;
  border-radius: 18px;
  background: #050508;
  color: var(--acid);
}

#musica-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visualizer-controls {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(202,255,0,.28);
  border-radius: 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px);
}

.visualizer-controls label {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.visualizer-controls input[type="range"] {
  width: 100%;
  accent-color: var(--acid);
}

.visualizer-colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visualizer-controls input[type="color"] {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.visualizer-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(0,0,0,.68);
  font-size: 14px;
  text-align: right;
}

/* Goods */
.goods-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) 20px 40px;
  overflow: hidden;
}

.goods-orbit {
  position: relative;
  width: min(920px, 100%);
  min-height: min(680px, calc(100svh - var(--header-h) - 80px));
  display: grid;
  place-items: center;
  text-align: center;
}

.goods-orbit::before,
.goods-orbit::after {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.goods-orbit::after {
  inset: 22% 2%;
  transform: rotate(18deg);
}

.goods-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.goods-copy img {
  width: 96px;
  margin: 0 auto 30px;
}

.goods-copy p {
  max-width: 580px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 21px;
}

.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--brand) 20%, transparent);
  animation: orbit-pulse 2s ease-in-out infinite alternate;
}

.orbit-dot.one { top: 20%; left: 9%; }
.orbit-dot.two { right: 11%; bottom: 23%; animation-delay: -.7s; background: var(--hot); }

@keyframes orbit-pulse {
  to { transform: scale(1.5); }
}

/* Contact */
.contact-section {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: start;
  padding: clamp(90px, 12vh, 170px) var(--page-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 9vw, 140px);
}

.contact-title {
  font-family: "Heth Bold", sans-serif;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.contact-address {
  margin-top: 58px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
}

.field.full,
.form-actions,
.form-status,
.turnstile-wrap,
.honeypot {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: transparent;
  color: var(--text);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.field textarea {
  min-height: 230px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--hot);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hot) 14%, transparent);
}

.submit-button {
  min-width: 110px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--hot);
  color: #fff;
  cursor: pointer;
  transition: transform .25s var(--ease), filter .25s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.submit-button:disabled {
  cursor: wait;
  opacity: .6;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 28px;
  margin: 0;
}

.form-status.is-error { color: var(--hot); }
.form-status.is-success { color: #16a572; }

/* Footer */
.site-footer {
  padding: 70px 0 42px;
  background: color-mix(in srgb, var(--surface) 45%, var(--bg));
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.footer-socials a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--text);
  transition: color .25s ease;
}

.footer-socials a:hover {
  color: var(--hot);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 78px;
  color: var(--muted);
  font-size: 14px;
}

/* Player */
.player-launcher {
  position: fixed;
  z-index: 700;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 9px 16px;
  border: 2px solid var(--acid);
  border-radius: 999px;
  background: var(--player);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .3s var(--ease);
}

[data-theme="dark"] .player-launcher {
  color: #171717;
}

.player-launcher:hover {
  transform: translateY(-4px) rotate(-2deg);
}

.player-launcher svg {
  width: 20px;
  height: 20px;
}

.music-drawer {
  position: fixed;
  z-index: 650;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  background: rgba(0,0,0,.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}

.music-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.music-backdrop {
  min-width: 0;
}

.music-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 26px;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
}

.music-drawer.is-open .music-panel {
  transform: translateX(0);
}

.music-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.music-panel-title {
  margin: 0;
  font-family: "Heth Bold", sans-serif;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.player-visual {
  position: relative;
  height: 126px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0b0712;
}

#player-canvas {
  width: 100%;
  height: 100%;
}

.now-playing {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.now-playing img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.track-title {
  margin: 0 0 4px;
  font-family: "Heth Bold", sans-serif;
  font-size: 23px;
  line-height: 1;
}

.track-time {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.player-controls {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 10px;
  align-items: center;
}

.player-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.player-controls .play-toggle {
  width: 54px;
  height: 54px;
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.player-seek {
  width: 100%;
  accent-color: var(--hot);
}

.track-list {
  margin: 20px -8px 0;
  padding: 0 8px 60px;
  overflow-y: auto;
  list-style: none;
}

.track-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  padding: 12px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.track-list button:hover,
.track-list button.is-current {
  color: var(--hot);
}

.track-index,
.track-duration {
  color: var(--muted);
  font-size: 12px;
}

/* Reveal and click particles */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .75s ease, transform .9s var(--ease);
}

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

.click-spark {
  position: fixed;
  z-index: 9000;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spark-color, var(--acid));
  pointer-events: none;
  animation: spark-flight .65s var(--ease) forwards;
}

@keyframes spark-flight {
  to {
    opacity: 0;
    transform: translate(var(--spark-x), var(--spark-y)) scale(.2) rotate(180deg);
  }
}

/* Back to top */
.back-top {
  position: fixed;
  z-index: 400;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .35s var(--ease), visibility 0s .35s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (max-width: 980px) {
  :root { --header-h: 72px; --page-pad: 24px; }
  .header-inner { grid-template-columns: 64px 1fr 64px; width: calc(100% - 28px); }
  .brand-mark, .brand-mark img { width: 48px; height: 48px; }
  .main-nav { display: none; }
  .menu-button { display: grid; }
  .header-tools { grid-column: 3; }
  .page-hero-split,
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-copy { max-width: 700px; }
  .poster-collage { grid-template-columns: repeat(3, 1fr); }
  .poster-collage img:nth-child(n) { transform: none; }
  .poster-collage img:nth-child(4), .poster-collage img:nth-child(5) { display: none; }
  .art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-media { position: relative; top: auto; }
  .detail-media img { max-height: none; }
  .footer-socials { grid-template-columns: 1fr; gap: 10px; }
  .music-drawer { grid-template-columns: 1fr minmax(320px, 520px); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header.is-overlay { color: #fff; }
  .header-tools .theme-toggle { display: none; }
  .home-main { min-height: 560px; }
  .hero-copy { top: 45%; }
  .hero-intro { margin-top: 20px; }
  .slider-controls { bottom: 18px; }
  .slider-counter { min-width: 48vw; gap: 10px; font-size: 16px; }
  .slider-arrow { width: 42px; height: 42px; }
  .page-hero { min-height: 67svh; border-radius: 0 0 24px 24px; }
  .page-hero-split { gap: 28px; }
  .planet-poster { padding-top: 78px; }
  .poster-kicker { margin-bottom: 34px; }
  .poster-collage { gap: 7px; }
  .poster-collage img { border-radius: 14px; }
  .story-block { grid-template-columns: 1fr; gap: 18px; }
  .art-grid { grid-template-columns: 1fr; }
  .art-card-media { border-radius: 22px; }
  .detail-header { min-height: 36svh; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery img { border-radius: 18px; }
  .musica-stage { min-height: 700px; border-radius: 0; }
  .visualizer-controls { top: 14px; left: 14px; width: calc(100% - 28px); }
  .visualizer-caption { left: 14px; right: 14px; text-align: left; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-address { margin-top: 30px; }
  .footer-bottom { flex-direction: column; margin-top: 50px; gap: 8px; }
  .player-launcher { left: 12px; bottom: 12px; }
  .music-drawer { display: block; }
  .music-backdrop { display: none; }
  .music-panel { width: 100%; }
  .back-top { right: 12px; bottom: 12px; }
}

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