:root {
  --bg: #040611;
  --bg2: #080b1b;
  --ink: #f3eff8;
  --muted: #a8a8bc;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.25);
  --violet: #9b6cff;
  --pink: #ff4f9a;
  --cyan: #55dffc;
  --silver: #d8d7e1;
  --glass: rgba(7, 9, 25, .62);
  --glass-strong: rgba(10, 12, 31, .84);
  --shadow: 0 24px 80px rgba(0,0,0,.46);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -5%, rgba(103,70,182,.14), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(39,129,180,.1), transparent 28%),
    linear-gradient(180deg, #050713 0%, #03050d 60%, #050611 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: rgba(155,108,255,.35); color: #fff; }

#space-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: .86;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(3,5,14,.74);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.brand-orb {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 26px rgba(143,111,255,.22);
}
.brand-orb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 12px 3px rgba(255,255,255,.7);
}
.brand-orb::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8ddff, #454364 55%, #080a14 56%);
  left: 12px;
  top: 12px;
}
.brand-name {
  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #cbc7d9;
}
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 10px 16px !important;
  background: rgba(255,255,255,.04);
}
.nav-cta:hover { background: rgba(255,255,255,.09); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  position: relative;
  margin: auto;
  transition: .2s ease;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 92px) 210px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3,5,14,.72), rgba(3,5,14,.16) 48%, rgba(3,5,14,.64)),
    linear-gradient(180deg, rgba(3,5,14,.15), rgba(3,5,14,.25) 58%, #040611 100%),
    url('../assets/images/hero-orbit.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-.5%,0,0); }
  to { transform: scale(1.08) translate3d(.7%,-.4%,0); }
}

.orbit-planet {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(105,87,196,.2));
}
.orbit-planet.one {
  width: 92px; height: 92px; right: 9vw; top: 18vh;
  background: radial-gradient(circle at 34% 27%, #d2c8ff 0 2%, #756a9b 7%, #222238 40%, #080914 68%);
  box-shadow: inset -18px -12px 32px rgba(0,0,0,.62), 0 0 46px rgba(147,119,255,.16);
  animation: floatPlanet 17s ease-in-out infinite;
}
.orbit-planet.two {
  width: 30px; height: 30px; left: 11vw; top: 27vh;
  background: radial-gradient(circle at 35% 30%, #f0d6ff, #725f8b 29%, #151723 64%);
  animation: floatPlanet 12s ease-in-out infinite reverse;
}
@keyframes floatPlanet {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,18px,0) rotate(7deg); }
}

.hero-copy { max-width: 860px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d6d0e5;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: linear-gradient(90deg, transparent, #d6d0e5); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-size: clamp(54px, 8.4vw, 132px);
  line-height: .82;
  text-shadow: 0 5px 30px rgba(0,0,0,.45);
}
.hero h1 span {
  display: block;
  font-size: .45em;
  letter-spacing: .28em;
  margin: .16em 0 .08em .15em;
  color: #d9d2e4;
}
.hero-subtitle {
  margin: 28px 0 0;
  max-width: 720px;
  color: #c9c5d5;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.65;
  letter-spacing: .02em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.42); }
.btn.primary { background: linear-gradient(110deg, rgba(128,86,230,.88), rgba(48,141,200,.74)); border-color: rgba(255,255,255,.2); box-shadow: 0 12px 34px rgba(78,62,184,.25); }
.btn svg { width: 17px; height: 17px; }

.release-dock {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  right: clamp(20px, 6vw, 92px);
  bottom: 28px;
  z-index: 3;
}
.release-dock-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 12px;
}
.release-dock h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .08em;
}
.release-dock .source-label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }

.mini-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 2px;
}
.mini-carousel::-webkit-scrollbar { display: none; }
.release-mini {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 62px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(5,7,18,.58);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.release-mini:hover { transform: translateY(-3px); background: rgba(12,14,34,.79); border-color: rgba(180,159,255,.3); }
.release-mini img { width: 62px; height: 62px; object-fit: cover; border-radius: 9px; }
.release-mini .meta { min-width: 0; }
.release-mini strong { display: block; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.release-mini small { color: var(--muted); display: block; margin-top: 4px; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.play-dot { width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.play-dot::before { content: ""; margin-left: 2px; border-left: 6px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent; }

.section { padding: 110px clamp(20px, 6vw, 92px); position: relative; }
.section-shell { max-width: 1420px; margin: 0 auto; }
.section-kicker { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: #aaa5bb; margin-bottom: 12px; }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 76px); font-weight: 400; letter-spacing: .03em; line-height: .98; }
.section-copy { max-width: 680px; color: var(--muted); line-height: 1.75; font-size: 15px; }

.music-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-top: 42px;
}
.player-shell {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
  background: #060812 url('../assets/images/brand-banner.webp') center/cover no-repeat;
}
#yt-player { width: 100%; height: 100%; }
#yt-player iframe { width: 100%; height: 100%; border: 0; }
.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(51,36,98,.12), rgba(3,5,13,.78));
  transition: opacity .25s ease;
}
.player-overlay.hidden { opacity: 0; pointer-events: none; }
.player-overlay-box { max-width: 420px; }
.player-overlay-logo { width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 38px rgba(159,126,255,.28); }
.player-overlay h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 10px; }
.player-overlay p { color: #bbb6c9; line-height: 1.6; font-size: 13px; margin: 0 0 16px; }
.player-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 6px 2px; }
.now-playing { min-width: 0; }
.now-playing small { color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.now-playing strong { display: block; margin-top: 4px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sound-btn { border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 999px; padding: 9px 12px; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; cursor: pointer; white-space: nowrap; }
.sound-btn:hover { background: rgba(255,255,255,.09); }

.track-panel { min-width: 0; }
.track-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.track-panel-head h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0; }
.carousel-controls { display: flex; gap: 8px; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.035); cursor: pointer; display: grid; place-items: center; }
.icon-btn:hover { background: rgba(255,255,255,.09); }
.track-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 78%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 16px;
}
.track-carousel::-webkit-scrollbar { display: none; }
.track-card {
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  min-height: 345px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.track-card:hover { transform: translateY(-4px); border-color: rgba(170,145,255,.3); background: rgba(255,255,255,.055); }
.track-art { position: relative; aspect-ratio: 1.35/1; overflow: hidden; background: #080a17; }
.track-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.track-card:hover .track-art img { transform: scale(1.04); }
.track-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,5,14,.76)); }
.track-index { position: absolute; top: 12px; left: 12px; z-index: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 5px 8px; font-size: 9px; letter-spacing: .12em; background: rgba(4,6,16,.55); backdrop-filter: blur(8px); }
.track-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.track-body h4 { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.25; }
.track-body p { margin: 7px 0 18px; color: var(--muted); font-size: 12px; }
.track-links { margin-top: auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.track-link { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; background: rgba(255,255,255,.03); }
.track-link:hover { background: rgba(255,255,255,.09); }

.live-status { margin-top: 12px; color: #9691a8; font-size: 10px; line-height: 1.5; }
.live-status strong { color: #ccc6dc; }

.social-section {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background:
    radial-gradient(circle at 50% 45%, rgba(86,58,157,.19), transparent 32%),
    linear-gradient(180deg, rgba(8,10,25,.15), rgba(12,11,29,.52));
}
.social-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.social-orbit-wrap { position: relative; min-height: 560px; display: grid; place-items: center; }
.social-orbit-ring { position: absolute; width: min(90%, 520px); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 0 70px rgba(112,75,213,.09) inset; animation: ringPulse 8s ease-in-out infinite; }
.social-orbit-ring::before { content: ""; position: absolute; inset: 15%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.1); animation: slowSpin 48s linear infinite; }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes ringPulse { 50% { box-shadow: 0 0 110px rgba(112,75,213,.16) inset, 0 0 35px rgba(74,164,216,.06); } }
.orbit-logo { width: 190px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: 0 20px 80px rgba(0,0,0,.48), 0 0 60px rgba(119,85,218,.18); }
.social-orbit-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 18px rgba(255,255,255,.78); top: calc(50% - min(45vw,260px)); left: 50%; transform: translateX(-50%); }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; margin-top: 28px; }
.social-card {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(163,141,255,.3); }
.social-card.disabled { opacity: .5; cursor: default; }
.social-card.disabled:hover { transform: none; background: rgba(255,255,255,.035); }
.social-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.11); }
.social-icon svg { width: 20px; height: 20px; }
.social-meta { min-width: 0; flex: 1; }
.social-meta strong { display: block; font-size: 13px; }
.social-meta span { color: var(--muted); font-size: 10px; margin-top: 3px; display: block; }
.social-arrow { color: #bfb7d6; }

.about-teaser { display: grid; grid-template-columns: minmax(0,.9fr) minmax(320px,1.1fr); gap: clamp(34px, 6vw, 90px); align-items: center; }
.about-art {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-art img { width: 100%; aspect-ratio: 1.15/1; object-fit: cover; }
.about-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.2); pointer-events: none; }
.quote-line { margin: 26px 0 0; padding-left: 18px; border-left: 1px solid rgba(201,189,244,.5); color: #d8d3e3; font-family: var(--serif); font-size: 24px; line-height: 1.35; max-width: 620px; }

.gallery-strip { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 12px; margin-top: 35px; }
.gallery-item { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); min-height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.045); }

.footer { padding: 50px clamp(20px, 6vw, 92px) 36px; border-top: 1px solid rgba(255,255,255,.07); background: rgba(2,3,9,.44); }
.footer-shell { max-width: 1420px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-logo { font-family: var(--serif); font-size: 28px; letter-spacing: .08em; text-transform: uppercase; }
.footer-note { margin-top: 8px; color: #77758a; font-size: 11px; line-height: 1.6; }
.footer-links { display: flex; gap: 18px; color: #a5a0b5; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; flex-wrap: wrap; justify-content: flex-end; }

.toast { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 20px); z-index: 80; opacity: 0; pointer-events: none; background: rgba(8,10,24,.9); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 11px 16px; font-size: 11px; color: #d5d1df; transition: opacity .25s ease, transform .25s ease; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* About page */
.inner-hero { min-height: 72svh; display: flex; align-items: end; position: relative; padding: 130px clamp(20px, 6vw, 92px) 72px; overflow: hidden; }
.inner-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(2,4,12,.16), rgba(3,5,14,.92)), url('../assets/images/brand-banner.webp') center/cover; transform: scale(1.03); }
.inner-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 40%, transparent, rgba(2,3,10,.35) 62%, #040611 100%); }
.inner-hero-copy { max-width: 940px; }
.inner-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(54px, 8vw, 116px); line-height: .9; margin: 0; letter-spacing: .03em; }
.inner-hero p { max-width: 720px; color: #c2bdce; line-height: 1.7; font-size: 16px; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(38px,6vw,100px); align-items: start; }
.about-sticky { position: sticky; top: 110px; }
.about-sticky img { border-radius: 50%; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 90px rgba(0,0,0,.5); }
.prose { max-width: 780px; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: 42px; margin: 0 0 14px; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 38px 0 10px; }
.prose p { color: #b0abbc; line-height: 1.85; margin: 0 0 18px; }
.manifesto { margin: 32px 0; padding: 24px 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: linear-gradient(135deg, rgba(112,77,189,.09), rgba(48,123,176,.05)); font-family: var(--serif); font-size: 27px; line-height: 1.42; color: #ddd7e8; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; color: #aaa5b7; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 980px) {
  .nav-links { position: fixed; left: 14px; right: 14px; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; background: rgba(4,6,17,.94); backdrop-filter: blur(22px); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .menu-toggle { display: grid; place-items: center; }
  .music-stage, .social-layout, .about-teaser, .about-grid { grid-template-columns: 1fr; }
  .player-shell, .about-sticky { position: relative; top: 0; }
  .social-orbit-wrap { min-height: 450px; }
  .about-sticky { max-width: 520px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 16px; }
  .brand-name { font-size: 11px; letter-spacing: .12em; }
  .hero { padding: 100px 18px 220px; align-items: center; }
  .hero h1 { font-size: clamp(54px, 18vw, 86px); }
  .hero h1 span { font-size: .42em; }
  .hero-subtitle { font-size: 14px; }
  .release-dock { left: 18px; right: 18px; bottom: 22px; }
  .release-dock-top { align-items: center; }
  .release-dock h2 { font-size: 18px; }
  .mini-carousel { grid-auto-columns: 82%; }
  .section { padding: 82px 18px; }
  .track-carousel { grid-auto-columns: 86%; }
  .social-grid { grid-template-columns: 1fr; }
  .social-orbit-wrap { min-height: 380px; }
  .orbit-logo { width: 150px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .orbit-planet.one { width: 58px; height: 58px; }
  .orbit-planet.two { display: none; }
  .inner-hero { padding: 120px 18px 52px; min-height: 66svh; }
  .inner-hero p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  #space-canvas { display: none; }
}
