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

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

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

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: block;
}

:root {
  color-scheme: dark;
  --bg: #030407;
  --panel: #0b0d13;
  --panel-soft: #11141d;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f6f3ff;
  --muted: #b6b1c8;
  --dim: #7c778d;
  --violet: #7d5cff;
  --violet-2: #a78bff;
  --cyan: #71d5ff;
  --green: #1db954;
  --orange: #ff6a00;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  --font-main: "Rajdhani", "Arial Narrow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f8fc;
  --panel: #ffffff;
  --panel-soft: #f0f3f9;
  --line: rgba(16, 20, 34, 0.13);
  --line-strong: rgba(16, 20, 34, 0.24);
  --text: #121522;
  --muted: #596073;
  --dim: #7a8192;
  --violet: #6848dc;
  --violet-2: #7757e9;
  --cyan: #007fb0;
  --shadow: 0 22px 68px rgba(42, 50, 73, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(125, 92, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 15% 42%, rgba(113, 213, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #05060a, #020306 48%, #05060a);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 500;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at 76% 6%, rgba(104, 72, 220, 0.13), transparent 25rem),
    radial-gradient(circle at 10% 40%, rgba(0, 127, 176, 0.09), transparent 22rem),
    linear-gradient(180deg, #fbfcff 0%, #eef2f8 46%, #f8faff 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 120;
  background:
    radial-gradient(circle at 50% 12%, rgba(125, 92, 255, 0.12), transparent 18rem),
    rgba(3, 4, 7, 0.64);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body[data-theme="light"]::after {
  background:
    radial-gradient(circle at 50% 12%, rgba(104, 72, 220, 0.1), transparent 18rem),
    rgba(247, 248, 252, 0.72);
}

body.is-navigating-out::after {
  opacity: 1;
}

body.is-navigating-out main,
body.is-navigating-out .site-footer {
  opacity: 0;
  transform: translateY(0.55rem) scale(0.992);
  transition: opacity 180ms ease, transform 180ms ease;
}

@keyframes text-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes media-enter {
  from {
    opacity: 0.72;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(125, 92, 255, 0));
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(125, 92, 255, 0.22));
  }
}

@keyframes legal-soft-rise {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes legal-title-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes legal-rule-in {
  from {
    opacity: 0;
    transform: scaleX(0.08);
  }

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

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 74px;
  padding: 0 7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 7, 0.86);
  backdrop-filter: blur(22px);
}

.theme-toggle {
  display: inline-grid;
  flex: 0 0 auto;
  order: 3;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(167, 139, 255, 0.7);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--violet-2);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 1.18rem;
  height: 1.18rem;
}

.theme-toggle .theme-icon-moon,
body[data-theme="light"] .theme-toggle .theme-icon-sun {
  display: none;
}

body[data-theme="light"] .theme-toggle .theme-icon-moon {
  display: block;
}

body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 34px rgba(42, 50, 73, 0.08);
}

body[data-theme="light"] .nav-toggle,
body[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

body[data-theme="light"] .primary-nav {
  color: #34394a;
}

body[data-theme="light"] .primary-nav a {
  color: #4c5264;
}

body[data-theme="light"] .primary-nav a:hover,
body[data-theme="light"] .primary-nav a.active {
  color: #121522;
}

.brand {
  order: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.54em;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  margin-left: auto;
  order: 2;
  color: #f4f1ff;
  font-size: 1rem;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding: 1.65rem 0;
  color: #ddd8eb;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  left: 0;
  height: 2px;
  background: var(--violet);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: white;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  order: 4;
}

.hero {
  position: relative;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f6f3ff;
  --muted: #b6b1c8;
  --dim: #7c778d;
  --violet: #7d5cff;
  --violet-2: #a78bff;
  color: #f6f3ff;
  min-height: clamp(430px, 55vw, 590px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-home,
.hero-music,
.hero-services,
.hero-about,
.hero-contact {
  min-height: clamp(330px, 36vw, 385px);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.72) 42%, rgba(3, 4, 7, 0.3) 74%, rgba(3, 4, 7, 0.7) 100%),
    radial-gradient(circle at 64% 45%, rgba(125, 92, 255, 0.2), transparent 22rem);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(180deg, transparent 72%, rgba(3, 4, 7, 0.98));
  content: "";
  opacity: 0.5;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(113, 213, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 62% 42%, rgba(125, 92, 255, 0.18), transparent 24rem),
    linear-gradient(115deg, #030407 0%, #060814 52%, #020306 100%);
  animation: media-enter 860ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
  transform-origin: center;
}

.hero-home .hero-media {
  background-color: #030407;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 34%, rgba(3, 4, 7, 0.28) 68%, rgba(3, 4, 7, 0.74) 100%),
    url("assets/images/curiocity-about-hero-1600.webp") 68% 26% / cover no-repeat;
}

.hero-music .hero-media {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 34%, rgba(3, 4, 7, 0.28) 68%, rgba(3, 4, 7, 0.74) 100%),
    url("assets/images/curiocity-hero-1600.webp") 58% 42% / cover no-repeat;
}

.hero-services .hero-media {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.8) 38%, rgba(3, 4, 7, 0.28) 70%, rgba(3, 4, 7, 0.66) 100%),
    url("assets/images/home-music-panel-1400.webp") 61% 50% / cover no-repeat;
}

.hero-about .hero-media {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 34%, rgba(3, 4, 7, 0.28) 68%, rgba(3, 4, 7, 0.74) 100%),
    url("assets/images/curiocity-about-hero-1600.webp") 68% 26% / cover no-repeat;
}

.hero-contact .hero-media {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 38%, rgba(3, 4, 7, 0.32) 72%, rgba(3, 4, 7, 0.7) 100%),
    url("assets/images/home-services-panel-1400.webp") 62% 50% / cover no-repeat;
}

.page-listen main {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.98), rgba(3, 4, 7, 0.68) 46%, rgba(3, 4, 7, 0.92)),
    radial-gradient(circle at 76% 16%, rgba(113, 213, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 26% 72%, rgba(125, 92, 255, 0.2), transparent 22rem),
    url("assets/images/home-music-panel-1400.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-services .service-console {
  display: none;
}

@media (min-width: 1500px) {
  .hero-home .hero-media {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 34%, rgba(3, 4, 7, 0.28) 68%, rgba(3, 4, 7, 0.74) 100%),
      url("assets/images/curiocity-about-hero-1600.webp") 68% 26% / cover no-repeat;
  }

  .hero-music .hero-media {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.84) 34%, rgba(3, 4, 7, 0.28) 68%, rgba(3, 4, 7, 0.74) 100%),
      url("assets/images/curiocity-hero-1600.webp") right center / auto 100% no-repeat;
  }

  body[data-theme="light"] .hero-music .hero-media {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 40%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.02) 100%),
      url("assets/images/light-mode/curiocity-light-hero-1600.webp") right center / auto 100% no-repeat;
  }
}

.hero-home .producer-silhouette,
.hero-home .particle-wave,
.hero-music .producer-silhouette,
.hero-music .particle-wave,
.hero-about .producer-silhouette,
.hero-about .particle-wave {
  display: none;
}

.producer-silhouette {
  position: absolute;
  right: 16vw;
  bottom: -8rem;
  width: min(38vw, 420px);
  aspect-ratio: 0.72;
  border-radius: 48% 48% 12% 12%;
  background:
    radial-gradient(circle at 45% 16%, #101827 0 18%, transparent 18.5%),
    radial-gradient(circle at 42% 24%, #0b101b 0 24%, transparent 24.5%),
    linear-gradient(160deg, rgba(31, 42, 62, 0.9), rgba(4, 5, 9, 0.1) 70%);
  filter: blur(0.2px);
  opacity: 0.82;
}

.producer-silhouette::before {
  position: absolute;
  top: 6%;
  left: -10%;
  width: 62%;
  height: 13%;
  border-radius: 100% 18% 30% 100%;
  background: #111827;
  content: "";
  transform: rotate(-9deg);
}

.service-console {
  position: absolute;
  right: 6vw;
  bottom: 1rem;
  width: min(54vw, 680px);
  height: 70%;
  border: 1px solid rgba(113, 213, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(167, 139, 255, 0.18) 8% 9%, transparent 9% 17%, rgba(113, 213, 255, 0.14) 17% 18%, transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 3px, transparent 3px 54px),
    repeating-linear-gradient(0deg, rgba(125, 92, 255, 0.16) 0 2px, transparent 2px 42px),
    linear-gradient(140deg, rgba(16, 25, 41, 0.86), rgba(4, 5, 9, 0.22));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.7);
  opacity: 0.72;
  transform: perspective(900px) rotateX(4deg) rotateY(-8deg);
}

.particle-wave {
  position: absolute;
  right: -6vw;
  top: 32%;
  width: min(72vw, 880px);
  height: 260px;
  background:
    radial-gradient(circle at 12% 46%, rgba(113, 213, 255, 0.3) 0 2px, transparent 2.4px),
    radial-gradient(circle at 32% 54%, rgba(167, 139, 255, 0.42) 0 2px, transparent 2.4px),
    radial-gradient(circle at 52% 42%, rgba(113, 213, 255, 0.26) 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 72% 58%, rgba(167, 139, 255, 0.35) 0 1.8px, transparent 2.2px);
  background-size: 44px 38px, 48px 44px, 52px 40px, 46px 36px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
  opacity: 0.9;
  transform: rotate(-4deg);
}

.particle-wave::before,
.particle-wave::after {
  position: absolute;
  inset: 12% 0;
  border-top: 1px solid rgba(167, 139, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.particle-wave::after {
  inset: 30% 4% 0 10%;
  border-color: rgba(113, 213, 255, 0.24);
}

.hero-content {
  width: min(90vw, 680px);
  min-width: 0;
  padding: clamp(5rem, 10vw, 7.7rem) 0 clamp(4rem, 8vw, 6.2rem);
  margin-left: 8vw;
}

.hero-content > * {
  animation: text-enter 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 70ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 150ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 230ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 310ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 390ms;
}

.hero-content.narrow {
  width: min(90vw, 650px);
}

.page-home .hero-content,
.page-music .hero-content,
.page-services .hero-content,
.page-about .hero-content,
.page-contact .hero-content {
  padding-top: clamp(3.8rem, 5.8vw, 5.2rem);
  padding-bottom: clamp(3rem, 4.5vw, 4.3rem);
}

.page-home .hero-content {
  padding-top: clamp(3.8rem, 5.8vw, 5.2rem);
  padding-bottom: clamp(3rem, 4.5vw, 4.3rem);
}

@media (min-width: 1500px) {
  .page-home .hero-content {
    padding-top: clamp(3.8rem, 5.8vw, 5.2rem);
    padding-bottom: clamp(3rem, 4.5vw, 4.3rem);
  }
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--violet-2);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.27em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.page-home h1 {
  max-width: 15ch;
  margin-bottom: 0.45rem;
  font-size: clamp(3rem, 6vw, 5.35rem);
}

.hero-music h1,
.hero-services h1,
.hero-about h1,
.hero-contact h1 {
  max-width: 17ch;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
}

.hero-music h1 {
  max-width: 100%;
}

.hero-kicker {
  max-width: 27rem;
  margin-bottom: 1rem;
  color: white;
  font-size: clamp(1.35rem, 2.2vw, 1.78rem);
  font-weight: 600;
  line-height: 1.02;
}

.page-home .hero-kicker {
  max-width: 36rem;
  margin-top: -0.2rem;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.05;
}

.hero-kicker span {
  display: block;
}

.page-home .hero-kicker span {
  display: inline;
}

.page-home .hero-kicker span + span::before {
  content: " ";
}

.hero-kicker span:first-child {
  white-space: nowrap;
}

@media (min-width: 681px) and (max-width: 900px) {
  .page-home .hero-content {
    padding-top: calc(clamp(3.8rem, 5.8vw, 5.2rem) - 0.55rem);
    padding-bottom: calc(clamp(3rem, 4.5vw, 4.3rem) - 0.55rem);
  }
}

.hero-copy {
  max-width: 35rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.2rem);
  line-height: 1.38;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.45rem;
  padding: 0 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), #663de7);
  box-shadow: 0 14px 34px rgba(125, 92, 255, 0.26);
  animation: glow-pulse 4.8s ease-in-out 1.1s infinite;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.025);
}

.button.compact {
  min-height: 2.9rem;
}

.button:hover,
.text-link:hover,
.platform-row a:hover,
.social-row a:hover,
.stream-preview:hover {
  transform: translateY(-1px);
  border-color: rgba(167, 139, 255, 0.7);
}

.platform-logo,
.button-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.modal-open {
  overflow: hidden;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  pointer-events: none;
}

.consultation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consultation-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 28%, rgba(125, 92, 255, 0.11), transparent 22rem),
    rgba(3, 4, 7, 0.38);
  backdrop-filter: blur(2px);
}

.consultation-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  max-height: min(90vh, 680px);
  overflow: auto;
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border: 1px solid rgba(167, 139, 255, 0.38);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(125, 92, 255, 0.12), rgba(113, 213, 255, 0.035)),
    linear-gradient(180deg, rgba(17, 20, 29, 0.95), rgba(6, 7, 12, 0.95));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(0.7rem) scale(0.98);
  transition: transform 180ms ease;
}

.consultation-modal.is-open .consultation-panel {
  transform: translateY(0) scale(1);
}

.consultation-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  transition: 180ms ease;
}

.consultation-close:hover {
  border-color: rgba(167, 139, 255, 0.7);
  background: rgba(125, 92, 255, 0.16);
}

.consultation-panel h2 {
  max-width: 12rem;
  margin-bottom: 0.75rem;
  font-size: clamp(2.05rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.02;
}

.consultation-copy {
  max-width: 24rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.consultation-form {
  display: grid;
  gap: 0.95rem;
}

.consultation-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.consultation-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(3, 4, 7, 0.52);
  color: white;
  font: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
  outline: 0;
  transition: 180ms ease;
}

.consultation-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 1.1rem) 54% / 0.45rem 0.45rem no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 0.85rem) 54% / 0.45rem 0.45rem no-repeat,
    rgba(3, 4, 7, 0.52);
}

.consultation-form textarea {
  width: 100%;
  min-height: 6.1rem;
  max-height: 16rem;
  padding: 0.8rem 0.95rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(3, 4, 7, 0.52);
  color: white;
  font: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.35;
  outline: 0;
  resize: vertical;
  transition: 180ms ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--violet-2);
  box-shadow: 0 0 0 3px rgba(125, 92, 255, 0.2);
}

.consultation-form .button {
  margin-top: 0.35rem;
}

.consultation-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.consultation-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.consultation-status[data-status="success"] {
  color: #9fffd0;
}

.consultation-status[data-status="error"] {
  color: #ffb1b1;
}

.site-toast {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(167, 139, 255, 0.42);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(125, 92, 255, 0.2), rgba(113, 213, 255, 0.06)),
    rgba(11, 13, 19, 0.96);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
  color: white;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-toast[data-status="success"] {
  border-color: rgba(159, 255, 208, 0.46);
}

.site-toast[data-status="error"] {
  border-color: rgba(255, 177, 177, 0.5);
}

.panel-icon {
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.75rem;
  border: 1px solid var(--violet);
  border-radius: 50%;
  color: var(--violet-2);
}

.section-shell {
  width: min(88vw, 1160px);
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.2rem) 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1), transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.section-shell.reveal-on-scroll,
.feature-release.reveal-on-scroll,
.split-panels.reveal-on-scroll,
.home-grid.reveal-on-scroll {
  transition-delay: 70ms;
}

.page-services .section-shell {
  padding-top: clamp(1.45rem, 2.35vw, 2.15rem);
  padding-bottom: clamp(1.45rem, 2.35vw, 2.15rem);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--violet-2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.sample-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.articles-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.feature-release {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  padding-right: 8vw;
  padding-left: 8vw;
  grid-template-columns: minmax(170px, 280px) minmax(240px, 430px) minmax(260px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.88) 0%, rgba(3, 4, 7, 0.76) 34%, rgba(3, 4, 7, 0.28) 70%, rgba(3, 4, 7, 0.52) 100%),
    url("assets/images/latest-release-waveform-banner-1400.webp") center / 100% 78% no-repeat,
    #030407;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), inset 0 -70px 90px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.album-art {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: end start;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(167, 139, 255, 0.52);
  border-radius: 5px;
  background: #080912;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.album-art::before,
.album-art::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.album-art::after {
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 24px);
  opacity: 0.74;
}

.album-art b,
.album-title {
  max-width: 9ch;
  color: white;
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.release-art {
  box-shadow: var(--shadow);
}

.album-albela::before {
  background: url("assets/images/releases/albela-900.webp") center / cover no-repeat;
}

.album-albela b,
.album-together b,
.album-sunless b,
.album-cant b,
.album-crazy b {
  display: none;
}

.album-albela::after,
.album-together::after,
.album-sunless::after,
.album-cant::after,
.album-crazy::after {
  background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.46));
  opacity: 0.42;
}

.album-together::before {
  background: url("assets/images/releases/together-900.webp") center / cover no-repeat;
}

.album-sunless::before {
  background: url("assets/images/releases/sunless-900.webp") center / cover no-repeat;
}

.album-cant::before {
  background: url("assets/images/releases/cant-you-see-900.webp") center / cover no-repeat;
}

.album-crazy::before {
  background: url("assets/images/releases/make-me-crazy-900.webp") center / cover no-repeat;
}

.album-sakaeru::before {
  background:
    radial-gradient(circle at 52% 48%, rgba(80, 255, 173, 0.38), transparent 34%),
    linear-gradient(135deg, #051310, #20382a 50%, #05060a);
}

.album-anytime::before {
  background:
    linear-gradient(90deg, rgba(113, 213, 255, 0.55), transparent 34%, rgba(167, 139, 255, 0.48)),
    linear-gradient(160deg, #101827, #05060a);
}

.album-justfine::before {
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 236, 190, 0.62), transparent 24%),
    linear-gradient(145deg, #2d1c38, #06121c);
}

.album-sweet::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 120, 182, 0.55), transparent 24%),
    radial-gradient(circle at 35% 64%, rgba(113, 213, 255, 0.4), transparent 22%),
    linear-gradient(145deg, #201327, #0a0d16);
}

.album-wave::before {
  background:
    repeating-radial-gradient(ellipse at 52% 48%, rgba(113, 213, 255, 0.42) 0 2px, transparent 3px 16px),
    linear-gradient(160deg, #041019, #111032);
}

.album-real::before {
  background:
    linear-gradient(130deg, #0d1f2a, #0a0b12 48%, #392d6d),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4), transparent 20%);
}

.album-night::before {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.75)),
    repeating-linear-gradient(90deg, rgba(167, 139, 255, 0.5) 0 2px, transparent 2px 20px),
    #060714;
}

.release-copy h2,
.quote-card h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.02;
}

.release-copy {
  min-width: 0;
}

.quote-card h2 {
  max-width: 22rem;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
}

.release-copy p,
.quote-card p,
.video-card p,
.service-teaser span,
.project-card p,
.cta-band p {
  color: var(--muted);
}

.wave-panel {
  min-height: 220px;
}

.wave-panel span {
  display: none;
}

.split-panels,
.music-embeds,
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.split-panels.section-shell {
  width: auto;
  max-width: none;
  margin: 0 8vw;
  padding: clamp(1.35rem, 2.6vw, 2.1rem) 0 0.65rem;
}

.home-grid.section-shell {
  width: auto;
  max-width: none;
  margin: 0.65rem 8vw 1.35rem;
  padding: 0;
}

.image-panel {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.panel-visual {
  position: absolute;
  inset: 0;
  transition: 240ms ease;
}

.visual-music .panel-visual {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.8), rgba(3, 4, 7, 0.18) 44%, rgba(3, 4, 7, 0.7)),
    linear-gradient(180deg, transparent 45%, rgba(3, 4, 7, 0.94)),
    url("assets/images/home-music-panel-1400.webp") center / cover no-repeat;
}

.visual-services .panel-visual {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.82), rgba(3, 4, 7, 0.16) 46%, rgba(3, 4, 7, 0.54)),
    linear-gradient(180deg, transparent 48%, rgba(3, 4, 7, 0.94)),
    url("assets/images/home-services-panel-1400.webp") center / cover no-repeat;
}

.image-panel:hover .panel-visual {
  transform: scale(1.03);
  filter: brightness(1.18);
}

.image-panel:hover {
  border-color: rgba(167, 139, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(3, 4, 7, 0.08), rgba(3, 4, 7, 0.2) 35%, rgba(3, 4, 7, 0.9));
}

.panel-overlay strong {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel-overlay small {
  max-width: 26rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.3;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.45rem;
  color: var(--violet-2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.embed-card,
.listen-card,
.service-teaser,
.quote-card,
.video-card {
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  padding: 1.25rem;
}

.music-embeds .embed-card {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 1.25rem;
}

.music-embeds .embed-card + .embed-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(104, 101, 118, 0.68);
  content: "";
}

.home-grid .listen-card,
.home-grid .service-teaser,
.home-grid .quote-card,
.home-grid .video-card {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 1.35rem 1.4rem;
}

.home-grid > article + article {
  border-left: 0;
  box-shadow: none;
}

.home-grid > article + article::before {
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 0;
  width: 1px;
  background: rgba(104, 101, 118, 0.68);
  content: "";
}

.listen-card,
.service-teaser,
.quote-card,
.video-card {
  min-height: 324px;
}

.listen-smart {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: center;
  min-width: 0;
}

.listen-release {
  display: grid;
  gap: 1.35rem;
  align-content: center;
  min-width: 0;
}

.listen-cover {
  width: min(100%, 340px);
  box-shadow: var(--shadow);
  animation: media-enter 760ms cubic-bezier(0.2, 0.72, 0.18, 1) 80ms both;
}

.listen-release h1 {
  max-width: 8ch;
  margin: 0;
  color: white;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.9;
}

.listen-release p:not(.eyebrow) {
  max-width: 28rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  overflow-wrap: anywhere;
}

.listen-release > div {
  animation: text-enter 620ms cubic-bezier(0.2, 0.72, 0.18, 1) 170ms both;
}

.smart-link-list {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.smart-link-list .smart-link {
  animation: text-enter 560ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.smart-link-list .smart-link:nth-child(1) {
  animation-delay: 220ms;
}

.smart-link-list .smart-link:nth-child(2) {
  animation-delay: 280ms;
}

.smart-link-list .smart-link:nth-child(3) {
  animation-delay: 340ms;
}

.smart-link-list .smart-link:nth-child(4) {
  animation-delay: 400ms;
}

.smart-link-list .smart-link:nth-child(5) {
  animation-delay: 460ms;
}

.smart-link-list .smart-link:nth-child(6) {
  animation-delay: 520ms;
}

.smart-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
  min-height: 4.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(6, 7, 12, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.smart-link:hover {
  border-color: rgba(167, 139, 255, 0.72);
  background: rgba(17, 20, 29, 0.88);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.smart-link span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.smart-link small {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

.listen-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  grid-column: 2;
  margin-top: -0.65rem;
  animation: text-enter 560ms cubic-bezier(0.2, 0.72, 0.18, 1) 580ms both;
}

.home-grid .listen-card,
.home-grid .service-teaser,
.home-grid .quote-card,
.home-grid .video-card {
  display: flex;
  flex-direction: column;
}

.video-card {
  gap: 1rem;
}

.video-card-heading {
  display: grid;
  gap: 0.25rem;
}

.video-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.video-embed-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(167, 139, 255, 0.48);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(167, 139, 255, 0.13), rgba(113, 213, 255, 0.05)),
    #05060a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.video-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .text-link {
  width: fit-content;
  margin-top: auto;
}

.music-embed-shell {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  background: #030407;
  clip-path: inset(0 round 12px);
  transform: translateZ(0);
}

.apple-embed-shell {
  background: #1d1d1f;
}

.soundcloud-embed-shell {
  background: #f2f2f2;
}

.music-embed-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  overflow: hidden;
}

.spotify-frame,
.apple-frame,
.soundcloud-frame {
  height: 450px;
}

.apple-frame {
  margin-inline: auto;
  overflow: hidden;
  background: transparent;
}

.soundcloud-frame {
  background: transparent;
}

.music-embeds .text-link {
  display: flex;
  width: fit-content;
  margin-top: 1rem;
}

.stream-preview-list {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stream-preview {
  display: grid;
  grid-template-columns: 4.6rem 1fr auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 5.4rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  transition: 180ms ease;
}

.stream-preview .thumb,
.soundcloud-tile,
.apple-music-tile {
  width: 4.1rem;
  height: 4.1rem;
}

.stream-preview strong,
.stream-preview .strong-label,
.stream-preview small {
  display: block;
}

.stream-preview small {
  color: var(--muted);
}

.soundcloud-tile {
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #ff8a00, #f74300);
}

.apple-music-tile {
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #ff5f7e, #b45cff 58%, #4da3ff);
}

.soundcloud-tile img {
  width: 2.2rem;
  height: 1.6rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  object-fit: contain;
}

.apple-music-tile img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  object-fit: contain;
}

.play-dot {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #05060a;
  font-size: 0.7rem;
}

.mini-links {
  display: flex;
  gap: 0.85rem;
  margin-top: auto;
  color: var(--violet-2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-links a + a {
  position: relative;
  padding-left: 0.85rem;
}

.mini-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.85rem;
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%);
}

.clean-list {
  display: grid;
  gap: 0.92rem;
  padding: 0;
  margin: 0 0 0.75rem;
  list-style: none;
}

.clean-list li {
  display: grid;
  grid-template-columns: 2.85rem 1fr;
  gap: 0.08rem 0.98rem;
  align-items: start;
}

.clean-list li svg {
  grid-row: 1 / 3;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  color: white;
  background: rgba(255, 255, 255, 0.025);
}

.clean-list strong,
.clean-list .strong-label {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clean-list span {
  font-size: 1.08rem;
  line-height: 1.18;
}

.service-teaser .text-link {
  margin-top: auto;
}

.release-grid,
.service-grid,
.sound-design-grid,
.discography-grid {
  display: grid;
  gap: 1rem;
}

.about-story {
  display: grid;
  width: min(92vw, 1280px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: start;
}

.about-profile-card,
.about-credential-panel,
.about-credential-panel article,
.article-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.018);
}

.about-profile-card {
  display: flex;
  flex-direction: column;
  min-height: 34.5rem;
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.about-profile-card h2 {
  max-width: 15.5ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.02;
}

.about-profile-card p,
.about-credential-panel p,
.article-card p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.about-profile-card p {
  max-width: 55rem;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.42;
}

.about-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.35rem;
  margin-top: auto;
  padding-top: 1.45rem;
}

.about-meta-row span {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0 0.65rem;
  align-items: center;
  min-width: min(100%, 8.8rem);
}

.about-meta-row svg {
  grid-row: 1 / 3;
  width: 2.1rem;
  height: 2.1rem;
  color: #d6d1e4;
  opacity: 0.92;
}

.about-meta-row b,
.about-meta-row small {
  display: block;
  line-height: 1.12;
}

.about-meta-row b {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

.about-meta-row small {
  color: var(--muted);
  font-size: 0.78rem;
}

.about-credential-panel {
  display: grid;
  gap: 0.82rem;
  align-content: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.about-credential-panel article {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.18rem 0.9rem;
  align-content: center;
  align-items: center;
  justify-items: start;
  min-height: 6.35rem;
  padding: 0.95rem 1rem;
  text-align: left;
  background:
    radial-gradient(circle at 88% 18%, rgba(125, 92, 255, 0.15), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012));
}

.about-credential-panel svg {
  grid-row: 1 / 3;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  color: var(--violet-2);
  filter: drop-shadow(0 0 14px rgba(125, 92, 255, 0.38));
}

.about-credential-panel h2 {
  max-width: none;
  margin: 0;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.16;
  text-transform: uppercase;
}

.about-credential-panel p {
  max-width: 15rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.2;
}

.article-source {
  color: var(--violet-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.16;
  text-transform: uppercase;
}

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

.article-card {
  position: relative;
  display: flex;
  min-height: 24.5rem;
  flex-direction: column;
  overflow: hidden;
  padding: 0.75rem 1.05rem 1.15rem;
  transition: 180ms ease;
}

.article-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(113, 213, 255, 0.14), transparent 6rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 44%);
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.article-card-featured::before {
  background:
    radial-gradient(circle at 78% 14%, rgba(167, 139, 255, 0.22), transparent 7rem),
    linear-gradient(120deg, rgba(113, 213, 255, 0.09), transparent 54%);
}

.article-card h2,
.article-card p,
.article-card span {
  position: relative;
}

.article-thumb {
  display: block;
  width: calc(100% + 0.3rem);
  aspect-ratio: 16 / 9;
  margin: -0.25rem -0.15rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 -42px 60px rgba(0, 0, 0, 0.36);
}

.article-card h2 {
  margin: 0.75rem 0 0.65rem;
  font-size: clamp(1.28rem, 1.85vw, 1.62rem);
  font-weight: 500;
  line-height: 1.02;
}

.article-card p {
  font-size: 1.02rem;
  line-height: 1.24;
}

.article-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--violet-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card:hover {
  border-color: rgba(167, 139, 255, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  transform: translateY(-2px);
}

.more-articles {
  display: none;
  margin-top: 1rem;
}

.more-articles.is-open {
  display: block;
}

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

.release-card,
.service-grid article,
.project-card,
.discography-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.release-card {
  padding: 0.7rem;
}

.release-card .album-art {
  aspect-ratio: 1;
}

.release-card h2,
.project-card h2,
.service-grid h2 {
  margin: 0.9rem 0 0.2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.05;
}

.release-card p,
.discography-grid span,
.discography-grid small {
  margin: 0;
  color: var(--muted);
}

.music-embeds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discography-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.discography-grid article {
  display: grid;
  gap: 0.22rem;
  padding: 0.7rem;
}

.discography-grid .album-art {
  margin-bottom: 0.45rem;
}

.discography-grid .album-art b {
  font-size: 0.78rem;
}

.listen-everywhere {
  border-top: 1px solid var(--line);
}

.platform-row,
.social-row {
  display: flex;
  gap: 0.65rem;
}

.platform-row {
  flex-wrap: nowrap;
}

.social-row {
  flex-wrap: wrap;
}

.platform-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 4.1rem;
  padding: 0 clamp(0.65rem, 1vw, 1.1rem);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: white;
  font-size: clamp(0.9rem, 0.92vw, 1.02rem);
  font-weight: 700;
  white-space: nowrap;
  transition: 180ms ease;
}

.sample-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.sample-preview-grid-more {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sample-more {
  display: none;
  margin-top: 1.15rem;
}

.sample-more.is-open {
  display: block;
}

.sample-preview-card {
  position: relative;
  min-height: 118px;
  padding: 0.9rem 0.85rem 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(15, 18, 27, 0.96), rgba(4, 5, 9, 0.84)),
    radial-gradient(circle at 82% 18%, rgba(125, 92, 255, 0.14), transparent 8rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.sample-preview-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%);
  content: "";
}

.sample-preview-card h2 {
  position: relative;
  margin: 0 0 0.7rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.05;
}

.sample-player {
  position: relative;
  display: grid;
  grid-template-columns: 1.7rem 2.25rem minmax(0, 1fr);
  column-gap: 0.45rem;
  align-items: center;
  min-height: 1.75rem;
}

.sample-player + .sample-player {
  margin-top: 0.42rem;
}

.sample-player span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.sample-player-after span {
  color: var(--violet-2);
}

.sample-waveform {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: none;
  height: 1.34rem;
  overflow: visible;
  opacity: 0;
  transition: opacity 220ms ease;
  filter: drop-shadow(0 0 6px rgba(125, 92, 255, 0.22));
}

.sample-waveform.waveform-ready {
  opacity: 1;
}

.sample-waveform > div {
  width: 100%;
  overflow: visible;
  transform: scaleY(0.86);
  transform-origin: center;
}

.sample-waveform::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  display: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.sample-play,
.project-play {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: white;
  transition: 180ms ease;
}

.sample-play {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.sample-play:disabled {
  cursor: wait;
  opacity: 0.55;
}

.sample-audio {
  display: none;
}

.sample-play::before,
.project-play::before {
  width: 0;
  height: 0;
  margin-left: 0.12rem;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.46rem solid currentColor;
  content: "";
}

.sample-play.is-playing::before {
  width: 0.48rem;
  height: 0.62rem;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 32%, transparent 32% 68%, currentColor 68% 100%);
}

.sample-play span,
.project-play span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sample-play:hover,
.sample-play.is-playing,
.project-play:hover {
  border-color: transparent;
  background: var(--violet);
  box-shadow: 0 10px 26px rgba(125, 92, 255, 0.3);
  transform: translateY(-1px);
}

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-grid article {
  padding: 1.35rem 1.15rem;
}

.service-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid var(--violet);
  border-radius: 50%;
  color: var(--violet-2);
}

.service-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.service-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.24;
}

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

.project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
}

.project-video-frame {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 32% 28%, rgba(125, 92, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #070a13, #030407);
}

.project-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #030407;
  object-fit: cover;
  pointer-events: auto;
}

.project-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(3, 4, 7, 0.68);
  color: white;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  backdrop-filter: blur(8px);
}

.project-video-play::before {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.46rem solid transparent;
  border-bottom: 0.46rem solid transparent;
  border-left: 0.68rem solid currentColor;
  content: "";
}

.project-video-play:hover {
  border-color: var(--violet-2);
  background: rgba(125, 92, 255, 0.62);
  transform: translate(-50%, -50%) scale(1.04);
}

.project-video-frame.is-playing .project-video-play {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.project-video-frame.has-controls .project-video-play {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.project-video-frame.is-playing .project-video {
  pointer-events: auto;
}

.project-video-frame.has-controls .project-video {
  pointer-events: auto;
}

.project-visual {
  position: absolute;
  inset: 0;
}

.project-unity .project-visual {
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 4, 7, 0.9)),
    radial-gradient(circle at 23% 36%, transparent 0 15%, rgba(113, 213, 255, 0.48) 15.5% 16.3%, transparent 17%),
    radial-gradient(circle at 67% 35%, rgba(125, 92, 255, 0.36), transparent 22%),
    repeating-linear-gradient(90deg, rgba(167, 139, 255, 0.14) 0 2px, transparent 2px 30px),
    linear-gradient(145deg, #070a13, #111827 56%, #05060a);
}

.project-animated .project-visual {
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 4, 7, 0.9)),
    radial-gradient(circle at 28% 52%, rgba(113, 213, 255, 0.18), transparent 25%),
    linear-gradient(165deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36%),
    repeating-linear-gradient(110deg, rgba(113, 213, 255, 0.13) 0 2px, transparent 2px 28px),
    linear-gradient(145deg, #07100d, #17241f 45%, #06080a);
}

.project-avengers .project-visual {
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 4, 7, 0.9)),
    radial-gradient(circle at 72% 38%, rgba(113, 213, 255, 0.28), transparent 18%),
    radial-gradient(circle at 46% 68%, rgba(125, 92, 255, 0.24), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 38px),
    linear-gradient(135deg, #14151d, #06070b 58%, #241a37);
}

.project-card .project-copy {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 0.85rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.55), rgba(3, 4, 7, 0.96)),
    linear-gradient(90deg, rgba(125, 92, 255, 0.14), transparent 72%);
}

.project-card div > span:not(.project-visual) {
  display: inline-flex;
  padding: 0.22rem 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card .project-play span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.project-card h2 {
  max-width: 15rem;
  margin-top: 0.6rem;
  font-size: 1.08rem;
}

.project-card p {
  max-width: 18rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.18;
}

.project-card::after {
  display: none;
}

.project-play {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-right: clamp(1rem, 3vw, 2rem);
  padding-left: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(125, 92, 255, 0.11), rgba(113, 213, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.contact-copy p {
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.14rem;
}

.contact-copy a {
  color: var(--violet-2);
}

.contact-detail-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.contact-detail-list span {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.1rem 0.85rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.contact-detail-list svg {
  grid-row: span 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.45rem;
  border: 1px solid rgba(167, 139, 255, 0.34);
  border-radius: 6px;
  color: var(--violet-2);
}

.contact-detail-list b {
  color: white;
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-detail-list small {
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-form-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(125, 92, 255, 0.12), rgba(113, 213, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.legal-hero {
  position: relative;
  width: min(86vw, 980px);
  margin: 0 auto;
  padding: clamp(3.4rem, 5.4vw, 5rem) 0 clamp(1.45rem, 3.2vw, 2.35rem);
}

.legal-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
  transform-origin: left center;
}

.legal-hero h1 {
  max-width: 620px;
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(2.45rem, 5.1vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-document {
  display: grid;
  max-width: 760px;
  gap: 1.05rem;
  padding-top: clamp(2rem, 3.6vw, 3rem);
}

.legal-document article {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--line);
}

.legal-document article:last-child {
  border-bottom: 0;
}

.legal-document h2 {
  margin: 0 0 0.48rem;
  color: white;
  font-size: clamp(1.12rem, 1.9vw, 1.48rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-document p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.25vw, 1.03rem);
  line-height: 1.55;
}

.legal-document a {
  color: var(--violet-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

@media (prefers-reduced-motion: no-preference) {
  .page-legal .legal-hero .eyebrow,
  .page-legal .legal-hero h1,
  .page-legal .legal-hero p:last-child {
    opacity: 0;
    animation: legal-title-in 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .page-legal .legal-hero h1 {
    animation-delay: 90ms;
  }

  .page-legal .legal-hero p:last-child {
    animation-delay: 180ms;
  }

  .page-legal .legal-hero::after {
    opacity: 0;
    animation: legal-rule-in 740ms cubic-bezier(0.16, 1, 0.3, 1) 260ms forwards;
  }

  .page-legal .legal-document article {
    opacity: 0;
  }

  .page-legal .legal-document.is-visible article {
    animation: legal-soft-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .page-legal .legal-document.is-visible article:nth-of-type(2) {
    animation-delay: 70ms;
  }

  .page-legal .legal-document.is-visible article:nth-of-type(3) {
    animation-delay: 140ms;
  }

  .page-legal .legal-document.is-visible article:nth-of-type(4),
  .page-legal .legal-document.is-visible article:nth-of-type(n + 5) {
    animation-delay: 210ms;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
  padding: 1.75rem 8vw 3rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.34);
}

.page-music .site-footer,
.page-services .site-footer,
.page-about .site-footer,
.page-contact .site-footer,
.page-legal .site-footer {
  padding-inline: max(6vw, calc((100vw - 1160px) / 2));
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.site-footer .brand {
  margin-bottom: 0.7rem;
  color: white;
}

.footer-brand p {
  max-width: 17rem;
}

.site-footer .social-row {
  display: flex;
  gap: 0.45rem;
}

.site-footer .social-row a {
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: white;
  transition: 180ms ease;
}

.site-footer .social-row .platform-logo {
  width: 1.28rem;
  height: 1.28rem;
}

.footer-legal {
  justify-items: end;
  text-align: right;
}

.footer-legal div {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  color: var(--violet-2);
  font-size: 1rem;
  white-space: nowrap;
}

.site-footer a:hover {
  color: white;
}

body[data-theme="light"] .button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.66);
}

body[data-theme="light"] .button.primary,
body[data-theme="light"] .hero .button,
body[data-theme="light"] .project-video-play,
body[data-theme="light"] .sample-play:hover,
body[data-theme="light"] .sample-play.is-playing,
body[data-theme="light"] .project-play:hover {
  color: white;
}

body[data-theme="light"] .button.primary {
  background: linear-gradient(135deg, var(--violet), #5d35d0);
  box-shadow: 0 16px 34px rgba(104, 72, 220, 0.22);
}

body[data-theme="light"] .hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.025);
}

body[data-theme="light"] .hero-home,
body[data-theme="light"] .hero-about {
  --line: rgba(16, 20, 34, 0.13);
  --line-strong: rgba(16, 20, 34, 0.24);
  --text: #101522;
  --muted: #535c70;
  --dim: #7a8192;
  --violet: #6848dc;
  --violet-2: #7757e9;
  color: var(--text);
}

body[data-theme="light"] .hero-home::before,
body[data-theme="light"] .hero-about::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.48) 68%, rgba(255, 255, 255, 0.14) 100%),
    radial-gradient(circle at 64% 45%, rgba(104, 72, 220, 0.11), transparent 22rem);
}

body[data-theme="light"] .hero-home::after,
body[data-theme="light"] .hero-about::after {
  background:
    repeating-linear-gradient(90deg, rgba(16, 20, 34, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(180deg, transparent 72%, rgba(248, 250, 255, 0.96));
  opacity: 0.48;
}

body[data-theme="light"] .hero-home .hero-media,
body[data-theme="light"] .hero-about .hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.66) 40%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.02) 100%),
    url("assets/images/curiocity-about-hero-1600.webp") 68% 26% / cover no-repeat;
}

body[data-theme="light"] .hero-music,
body[data-theme="light"] .hero-services,
body[data-theme="light"] .hero-contact {
  --line: rgba(16, 20, 34, 0.13);
  --line-strong: rgba(16, 20, 34, 0.24);
  --text: #101522;
  --muted: #535c70;
  --dim: #7a8192;
  --violet: #6848dc;
  --violet-2: #7757e9;
  color: var(--text);
}

body[data-theme="light"] .hero-music::before,
body[data-theme="light"] .hero-services::before,
body[data-theme="light"] .hero-contact::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.48) 68%, rgba(255, 255, 255, 0.14) 100%),
    radial-gradient(circle at 64% 45%, rgba(104, 72, 220, 0.12), transparent 22rem);
}

body[data-theme="light"] .hero-music::after,
body[data-theme="light"] .hero-services::after,
body[data-theme="light"] .hero-contact::after {
  background:
    repeating-linear-gradient(90deg, rgba(16, 20, 34, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(180deg, transparent 72%, rgba(248, 250, 255, 0.96));
  opacity: 0.48;
}

body[data-theme="light"] .hero-music .hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 40%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.02) 100%),
    url("assets/images/light-mode/curiocity-light-hero-1600.webp") 58% calc(42% + 4px) / cover no-repeat;
}

body[data-theme="light"] .hero-services .hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 40%, rgba(255, 255, 255, 0.28) 70%, rgba(255, 255, 255, 0.06) 100%),
    url("assets/images/light-mode/light-studio-panel-1400.webp") 49.5% calc(50% + 2px) / cover no-repeat;
}

body[data-theme="light"] .hero-contact .hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 40%, rgba(255, 255, 255, 0.25) 70%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/light-mode/light-console-panel-1400.webp") center / cover no-repeat;
}

body[data-theme="light"] .hero-services .particle-wave,
body[data-theme="light"] .hero-contact .particle-wave {
  background:
    radial-gradient(circle at 12% 46%, rgba(0, 127, 176, 0.55) 0 2px, transparent 2.4px),
    radial-gradient(circle at 32% 54%, rgba(104, 72, 220, 0.7) 0 2px, transparent 2.4px),
    radial-gradient(circle at 52% 42%, rgba(0, 127, 176, 0.44) 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 72% 58%, rgba(104, 72, 220, 0.58) 0 1.8px, transparent 2.2px);
  background-size: 44px 38px, 48px 44px, 52px 40px, 46px 36px;
  filter: drop-shadow(0 0 14px rgba(104, 72, 220, 0.18));
  opacity: 0.98;
}

body[data-theme="light"] .hero-services .particle-wave::before,
body[data-theme="light"] .hero-contact .particle-wave::before {
  border-top-color: rgba(104, 72, 220, 0.56);
}

body[data-theme="light"] .hero-services .particle-wave::after,
body[data-theme="light"] .hero-contact .particle-wave::after {
  border-color: rgba(0, 127, 176, 0.42);
}

body[data-theme="light"] .hero-home .hero-kicker,
body[data-theme="light"] .hero-about .hero-kicker,
body[data-theme="light"] .hero-music .hero-kicker,
body[data-theme="light"] .hero-services .hero-kicker,
body[data-theme="light"] .hero-contact .hero-kicker {
  color: var(--text);
}

body[data-theme="light"] .hero-home .button.ghost,
body[data-theme="light"] .hero-about .button.ghost,
body[data-theme="light"] .hero-music .button.ghost,
body[data-theme="light"] .hero-services .button.ghost,
body[data-theme="light"] .hero-contact .button.ghost {
  border-color: rgba(16, 20, 34, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

body[data-theme="light"] .feature-release {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.94) 34%, rgba(248, 250, 255, 0.58) 70%, rgba(248, 250, 255, 0.86) 100%),
    #f8faff;
  border-top: 1px solid rgba(16, 20, 34, 0.12);
  border-bottom-color: rgba(16, 20, 34, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), inset 0 -58px 86px rgba(42, 50, 73, 0.035);
}

body[data-theme="light"] .feature-release::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #f8faff 0%, #f8faff 32%, rgba(248, 250, 255, 0.9) 43%, rgba(248, 250, 255, 0.18) 56%, rgba(248, 250, 255, 0) 66%),
    url("assets/images/light-mode/light-waveform-banner-1400.webp") calc(50% - 8px) calc(50% + 9px) / 100% 78% no-repeat;
  content: "";
  opacity: 0.86;
  pointer-events: none;
  transform: translateX(clamp(2.1rem, 4.1vw, 3.7rem));
}

body[data-theme="light"] .feature-release > * {
  position: relative;
  z-index: 1;
}

body[data-theme="light"] .home-grid,
body[data-theme="light"] .embed-card,
body[data-theme="light"] .listen-card,
body[data-theme="light"] .service-teaser,
body[data-theme="light"] .quote-card,
body[data-theme="light"] .video-card,
body[data-theme="light"] .about-profile-card,
body[data-theme="light"] .about-credential-panel article,
body[data-theme="light"] .article-card,
body[data-theme="light"] .release-card,
body[data-theme="light"] .service-grid article,
body[data-theme="light"] .project-card,
body[data-theme="light"] .discography-grid article,
body[data-theme="light"] .contact-form-panel,
body[data-theme="light"] .cta-band {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 250, 0.86)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 20, 34, 0.16);
  box-shadow: 0 22px 64px rgba(42, 50, 73, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .home-grid {
  border-color: rgba(16, 20, 34, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 252, 0.92)),
    #ffffff;
  box-shadow: 0 26px 74px rgba(42, 50, 73, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .home-grid .listen-card,
body[data-theme="light"] .home-grid .service-teaser,
body[data-theme="light"] .home-grid .quote-card,
body[data-theme="light"] .home-grid .video-card,
body[data-theme="light"] .music-embeds .embed-card,
body[data-theme="light"] .about-credential-panel {
  background: transparent;
  box-shadow: none;
}

body[data-theme="light"] .home-grid > article + article::before,
body[data-theme="light"] .music-embeds .embed-card + .embed-card::before {
  background: rgba(16, 20, 34, 0.2);
}

body[data-theme="light"] .spotify-embed-shell {
  background: #725857;
}

body[data-theme="light"] .apple-embed-shell {
  background: #f5f5f7;
}

body[data-theme="light"] .image-panel {
  background: #10131f;
  box-shadow: 0 16px 46px rgba(42, 50, 73, 0.12);
}

body[data-theme="light"] .visual-music .panel-visual {
  background:
    linear-gradient(90deg, rgba(6, 7, 12, 0.68), rgba(6, 7, 12, 0.12) 48%, rgba(6, 7, 12, 0.34)),
    linear-gradient(180deg, transparent 48%, rgba(6, 7, 12, 0.88)),
    url("assets/images/light-mode/light-studio-panel-1400.webp") center / cover no-repeat;
}

body[data-theme="light"] .visual-services .panel-visual {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(6, 7, 12, 0.68)),
    url("assets/images/light-mode/light-console-panel-1400.webp") center / cover no-repeat;
}

body[data-theme="light"] .panel-overlay {
  --muted: #ded9ec;
  --violet-2: #c7b9ff;
  color: white;
}

body[data-theme="light"] .panel-overlay small {
  color: #ded9ec;
}

body[data-theme="light"] .release-copy h2,
body[data-theme="light"] .quote-card h2,
body[data-theme="light"] .cta-band h2,
body[data-theme="light"] .video-card h2,
body[data-theme="light"] .about-profile-card h2,
body[data-theme="light"] .about-meta-row b,
body[data-theme="light"] .about-credential-panel h2,
body[data-theme="light"] .article-card h2,
body[data-theme="light"] .release-card h2,
body[data-theme="light"] .project-card h2,
body[data-theme="light"] .service-grid h2,
body[data-theme="light"] .contact-detail-list b,
body[data-theme="light"] .legal-document h2,
body[data-theme="light"] .site-footer h2,
body[data-theme="light"] .site-footer .brand,
body[data-theme="light"] .clean-list .strong-label,
body[data-theme="light"] .stream-preview .strong-label,
body[data-theme="light"] .smart-link span {
  color: var(--text);
}

body[data-theme="light"] .sample-preview-card,
body[data-theme="light"] .project-card .project-copy,
body[data-theme="light"] .video-embed-shell {
  background:
    linear-gradient(145deg, rgba(15, 18, 27, 0.96), rgba(4, 5, 9, 0.84)),
    radial-gradient(circle at 82% 18%, rgba(125, 92, 255, 0.14), transparent 8rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-theme="light"] .sample-preview-card {
  border-color: rgba(104, 72, 220, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 238, 248, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(104, 72, 220, 0.11), transparent 8rem);
  box-shadow: 0 18px 48px rgba(42, 50, 73, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .sample-preview-card::before {
  background: linear-gradient(120deg, rgba(104, 72, 220, 0.08), transparent 42%);
}

body[data-theme="light"] .sample-preview-card h2 {
  color: var(--text);
}

body[data-theme="light"] .sample-player span {
  color: #6c7385;
}

body[data-theme="light"] .sample-player-after span {
  color: var(--violet);
}

body[data-theme="light"] .sample-waveform {
  filter: drop-shadow(0 0 3px rgba(104, 72, 220, 0.2));
}

body[data-theme="light"] .sample-waveform::before {
  display: none;
}

body[data-theme="light"] .sample-play {
  border-color: rgba(16, 20, 34, 0.48);
  background: transparent;
  color: #111522;
}

body[data-theme="light"] .sample-player-after .sample-play {
  border-color: rgba(104, 72, 220, 0.52);
  color: var(--violet);
}

body[data-theme="light"] .sample-play:hover,
body[data-theme="light"] .sample-play.is-playing {
  border-color: var(--violet);
  background: var(--violet);
  color: white;
}

body[data-theme="light"] .project-card .project-copy {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 238, 248, 0.9)),
    linear-gradient(90deg, rgba(104, 72, 220, 0.1), transparent 74%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .project-card .project-copy h2,
body[data-theme="light"] .project-card .project-copy p {
  color: var(--text);
}

body[data-theme="light"] .project-card div > span:not(.project-visual) {
  border-color: rgba(104, 72, 220, 0.18);
  background: rgba(104, 72, 220, 0.08);
  color: #596073;
}

body[data-theme="light"] .project-video-frame,
body[data-theme="light"] .video-embed-shell {
  border-color: rgba(104, 72, 220, 0.22);
  background:
    radial-gradient(circle at 32% 28%, rgba(104, 72, 220, 0.12), transparent 32%),
    linear-gradient(145deg, #f8faff, #e9edf6);
  box-shadow: 0 18px 46px rgba(42, 50, 73, 0.12);
}

body[data-theme="light"] .stream-preview,
body[data-theme="light"] .smart-link {
  border-color: rgba(16, 20, 34, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 251, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 26px rgba(42, 50, 73, 0.07);
}

body[data-theme="light"] .platform-logo {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

body[data-theme="light"] .button.primary .platform-logo,
body[data-theme="light"] .button.ghost .platform-logo,
body[data-theme="light"] .platform-row a .platform-logo,
body[data-theme="light"] .social-row a .platform-logo,
body[data-theme="light"] .stream-preview > .platform-logo,
body[data-theme="light"] .smart-link .platform-logo {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

body[data-theme="light"] .button.primary .platform-logo {
  filter: none;
  opacity: 1;
}

body[data-theme="light"] .platform-row a {
  border-color: rgba(16, 20, 34, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 251, 0.9));
  color: var(--text);
  box-shadow: 0 12px 30px rgba(42, 50, 73, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .site-footer .social-row a {
  border-color: rgba(16, 20, 34, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(42, 50, 73, 0.08);
}

body[data-theme="light"] .service-icon,
body[data-theme="light"] .panel-icon,
body[data-theme="light"] .clean-list li svg,
body[data-theme="light"] .about-credential-panel svg,
body[data-theme="light"] .contact-detail-list svg {
  color: #151923;
  border-color: rgba(16, 20, 34, 0.2);
  background: rgba(255, 255, 255, 0.8);
  filter: none;
}

body[data-theme="light"] .clean-list li svg,
body[data-theme="light"] .panel-icon,
body[data-theme="light"] .service-icon,
body[data-theme="light"] .about-meta-row svg,
body[data-theme="light"] .contact-detail-list svg {
  color: #151923;
  border-color: rgba(16, 20, 34, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .service-grid .service-icon {
  border-color: rgba(104, 72, 220, 0.46);
  background: rgba(104, 72, 220, 0.06);
  color: var(--violet-2);
}

body[data-theme="light"] .about-credential-panel svg,
body[data-theme="light"] .about-meta-row svg,
body[data-theme="light"] .contact-detail-list svg {
  border-color: rgba(16, 20, 34, 0.22);
  background: transparent;
  color: var(--text);
  filter: none;
}

body[data-theme="light"] .consultation-backdrop {
  background:
    radial-gradient(circle at 54% 28%, rgba(104, 72, 220, 0.11), transparent 22rem),
    rgba(247, 248, 252, 0.46);
}

body[data-theme="light"] .consultation-panel,
body[data-theme="light"] .site-toast {
  background:
    linear-gradient(145deg, rgba(104, 72, 220, 0.08), rgba(0, 127, 176, 0.04)),
    rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

body[data-theme="light"] .consultation-close {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

body[data-theme="light"] .consultation-form input,
body[data-theme="light"] .consultation-form select,
body[data-theme="light"] .consultation-form textarea {
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

body[data-theme="light"] .consultation-form select {
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 1.1rem) 54% / 0.45rem 0.45rem no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 0.85rem) 54% / 0.45rem 0.45rem no-repeat,
    rgba(255, 255, 255, 0.86);
}

body[data-theme="light"] .contact-detail-list span {
  background: transparent;
}

body[data-theme="light"] .legal-hero,
body[data-theme="light"] .legal-document {
  color: var(--text);
}

body[data-theme="light"] .site-footer {
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

body[data-theme="light"] .site-footer a:hover {
  color: var(--text);
}

body[data-theme="light"].page-listen main {
  min-height: calc(100vh - 74px);
  background:
    linear-gradient(90deg, rgba(248, 250, 255, 0.98), rgba(248, 250, 255, 0.78) 46%, rgba(248, 250, 255, 0.94)),
    radial-gradient(circle at 76% 16%, rgba(0, 127, 176, 0.1), transparent 18rem),
    radial-gradient(circle at 26% 72%, rgba(104, 72, 220, 0.14), transparent 22rem),
    url("assets/images/light-mode/light-studio-panel-1400.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

body[data-theme="light"].page-listen .listen-release h1,
body[data-theme="light"].page-listen .smart-link span {
  color: var(--text);
}

@media (min-width: 1500px) {
  body[data-theme="light"] .hero-music .hero-media {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 40%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.02) 100%),
      url("assets/images/light-mode/curiocity-light-hero-1600.webp") right calc(50% + 4px) / auto 100% no-repeat;
  }
}

@media (max-width: 980px) {
  .site-header {
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0 5vw;
  }

  .theme-toggle {
    order: 3;
    margin-left: auto;
  }

  .nav-toggle {
    order: 4;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    min-height: 0;
    padding: 0 0.9rem;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: transparent;
    color: white;
    font: inherit;
    line-height: 1;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--violet-2);
    outline-offset: 2px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: auto;
    display: grid;
    width: min(17rem, calc(100vw - 2rem));
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
    order: 5;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(6, 7, 12, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.45rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  body[data-theme="light"] .primary-nav {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(42, 50, 73, 0.12);
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .primary-nav a {
    padding: 0.9rem 0;
  }

  .primary-nav a::after {
    bottom: 0.65rem;
  }

  .feature-release,
  .about-story,
  .home-grid,
  .music-embeds,
  .sample-preview-grid,
  .service-grid,
  .sound-design-grid,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .music-embeds {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }

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

  .listen-secondary {
    grid-column: auto;
    margin-top: 0;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .music-embeds .embed-card {
    padding: 0;
  }

  .music-embeds .embed-card + .embed-card::before {
    top: -1.2rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .wave-panel,
  .quote-card,
  .video-card,
  .cta-band .button {
    grid-column: 1 / -1;
  }

  .home-grid .quote-card,
  .home-grid .video-card {
    border-left: 0;
    box-shadow: none;
  }

  .home-grid .quote-card::before,
  .home-grid .video-card::before {
    top: 0;
    right: 1.4rem;
    bottom: auto;
    left: 1.4rem;
    width: auto;
    height: 1px;
    background: rgba(104, 101, 118, 0.68);
    box-shadow: none;
  }

  .wave-panel {
    min-height: 150px;
  }

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

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

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

@media (max-width: 900px) {
  .platform-row {
    flex-wrap: wrap;
  }

  .platform-row a {
    flex-basis: calc(50% - 0.8rem);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 0 5.2vw;
  }

  .brand {
    font-size: 0.82rem;
    letter-spacing: 0.32em;
  }

  .nav-toggle {
    height: 2.25rem;
    min-height: 0;
    padding: 0 0.72rem;
    font-size: 0.9rem;
  }

  .site-header .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .hero-home,
  .hero-music,
  .hero-services,
  .hero-about,
  .hero-contact {
    min-height: 22.5rem;
  }

  .page-contact .hero-contact {
    min-height: 19.5rem;
  }

  .hero-content {
    width: min(90vw, 620px);
    max-width: calc(100vw - 10vw);
    margin-right: 5vw;
    margin-left: 5vw;
    padding-top: 3.25rem;
    padding-bottom: 2.5rem;
  }

  .page-home .hero-content,
  .page-music .hero-content,
  .page-services .hero-content,
  .page-about .hero-content,
  .page-contact .hero-content {
    padding-top: 3.25rem;
    padding-bottom: 2.5rem;
  }

  .page-contact .hero-content {
    padding-bottom: 1.45rem;
  }

  .eyebrow {
    margin-bottom: 0.58rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  h1,
  .page-home h1,
  .hero-music h1,
  .hero-services h1,
  .hero-about h1,
  .hero-contact h1 {
    margin-bottom: 0.55rem;
    font-size: 2.55rem;
    line-height: 0.96;
  }

  .page-home .hero-kicker,
  .hero-kicker {
    max-width: 20rem;
    margin-bottom: 0.72rem;
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 22rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.28;
  }

  .page-about h1,
  .page-about h2,
  .page-about p,
  .page-about strong {
    overflow-wrap: break-word;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(3, 4, 7, 0.98), rgba(3, 4, 7, 0.72));
  }

  .producer-silhouette,
  .service-console {
    right: -18vw;
    width: 78vw;
    opacity: 0.48;
  }

  .button {
    width: auto;
    min-height: 2.72rem;
    padding: 0 0.92rem;
    gap: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .button-row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin-top: 1.08rem;
  }

  .hero .button-row {
    flex-wrap: nowrap;
  }

  .button.compact {
    min-height: 2.48rem;
  }

  .platform-logo,
  .button-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .section-shell {
    width: min(91vw, 1160px);
    padding: 2rem 0;
  }

  .section-heading {
    align-items: center;
    flex-direction: row;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .text-link {
    gap: 0.42rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .feature-release {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    grid-template-columns: minmax(4.9rem, 5.85rem) minmax(0, 1fr);
    gap: 0.95rem;
    align-items: center;
    padding: 1.25rem 5vw;
  }

  .feature-release .release-art {
    align-self: start;
  }

  .feature-release .button-row {
    flex-wrap: wrap;
  }

  .feature-release .button.compact {
    min-height: 2.32rem;
    padding: 0 0.68rem;
    font-size: 0.68rem;
  }

  .release-copy h2,
  .quote-card h2,
  .cta-band h2 {
    margin-bottom: 0.45rem;
    font-size: 1.72rem;
  }

  .release-copy p {
    overflow-wrap: break-word;
    font-size: 0.98rem;
    line-height: 1.24;
  }

  .split-panels.section-shell,
  .home-grid.section-shell {
    margin-right: 5vw;
    margin-left: 5vw;
  }

  .image-panel {
    min-height: 180px;
  }

  .panel-overlay {
    gap: 0.38rem;
    padding: 1.2rem;
  }

  .panel-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.58rem;
  }

  .panel-overlay small {
    font-size: 0.92rem;
  }

  .embed-card,
  .listen-card,
  .service-teaser,
  .quote-card,
  .video-card,
  .about-profile-card,
  .about-credential-panel article,
  .article-card,
  .home-grid .listen-card,
  .home-grid .service-teaser,
  .home-grid .quote-card,
  .home-grid .video-card {
    padding: 1rem;
  }

  .listen-card,
  .service-teaser,
  .quote-card,
  .video-card,
  .about-profile-card {
    min-height: auto;
  }

  .stream-preview {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    min-height: 4.3rem;
    padding: 0.55rem;
  }

  .stream-preview .thumb,
  .soundcloud-tile,
  .apple-music-tile {
    width: 3.2rem;
    height: 3.2rem;
  }

  .music-embeds {
    row-gap: 1.35rem;
  }

  .about-profile-card h2 {
    max-width: none;
    margin-bottom: 0.85rem;
    font-size: 2rem;
    line-height: 1;
  }

  .about-profile-card p {
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .about-meta-row {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .about-meta-row span {
    grid-template-columns: 1.85rem minmax(0, 1fr);
    min-width: min(100%, 9.5rem);
  }

  .about-meta-row svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .split-panels,
  .home-grid,
  .music-embeds,
  .about-story,
  .about-credential-panel,
  .sample-preview-grid,
  .release-grid,
  .service-grid,
  .sound-design-grid,
  .contact-section,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-credential-panel,
  .sample-preview-grid,
  .sample-preview-grid-more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .about-credential-panel article {
    grid-template-columns: 1fr;
    min-height: 4.2rem;
    gap: 0.12rem 0.6rem;
    align-content: center;
    align-items: center;
    justify-items: center;
    padding: 0.75rem;
    text-align: center;
  }

  .about-credential-panel svg {
    grid-row: auto;
    width: 1.75rem;
    height: 1.75rem;
  }

  .about-credential-panel h2 {
    font-size: 0.68rem;
    letter-spacing: 0.095em;
  }

  .about-credential-panel p {
    display: none;
  }

  .sample-preview-card {
    min-height: 0;
    padding: 0.72rem;
  }

  .sample-preview-card h2 {
    min-height: 2.05rem;
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.08;
  }

  .sample-player {
    grid-template-columns: 1.55rem minmax(0, 1fr);
    gap: 0.28rem 0.5rem;
    min-height: 2.15rem;
  }

  .sample-player span {
    font-size: 0.62rem;
  }

  .sample-waveform {
    grid-column: 1 / -1;
    height: 0.78rem;
    opacity: 0.86;
  }

  .sample-waveform.waveform-ready {
    opacity: 1;
  }

  .sample-waveform > div {
    transform: scaleY(0.58);
  }

  .sample-play {
    width: 1.48rem;
    height: 1.48rem;
  }

  .article-grid,
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .article-card {
    min-height: auto;
    padding: 0.55rem 0.65rem 0.8rem;
  }

  .article-thumb {
    margin-bottom: 0.65rem;
  }

  .article-source,
  .article-cta {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .article-card h2 {
    margin: 0.45rem 0 0.45rem;
    font-size: 1.02rem;
    line-height: 1.05;
  }

  .article-card p {
    display: none;
  }

  .release-card {
    padding: 0.52rem;
  }

  .release-card h2 {
    margin-top: 0.62rem;
    font-size: 1.05rem;
  }

  .release-card p {
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .discography-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .discography-grid article {
    padding: 0.48rem;
  }

  .discography-grid .album-art {
    margin-bottom: 0.28rem;
  }

  .discography-grid strong {
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .discography-grid span {
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .service-grid article {
    padding: 0.88rem;
  }

  .service-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .service-icon svg {
    width: 1.18rem;
    height: 1.18rem;
  }

  .service-grid h2 {
    margin-top: 0.7rem;
    font-size: 1.08rem;
  }

  .service-grid p {
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .project-card .project-copy {
    padding: 0.72rem 0.78rem 0.85rem;
  }

  .project-card h2 {
    max-width: none;
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  .project-card p {
    max-width: none;
    font-size: 0.8rem;
  }

  .cta-band {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
  }

  .cta-band h2 {
    max-width: none;
  }

  .cta-band p {
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .cta-band .button,
  .consultation-form .button {
    width: auto;
    justify-self: start;
  }

  .contact-copy {
    gap: 0.72rem;
  }

  .contact-copy h2 {
    max-width: none;
    font-size: 2.35rem;
  }

  .contact-copy p {
    font-size: 1rem;
    line-height: 1.32;
  }

  .contact-detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  .contact-detail-list span {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-content: center;
    justify-items: center;
    min-height: 6.2rem;
    padding: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.018);
    text-align: center;
  }

  .contact-detail-list svg {
    grid-row: auto;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.34rem;
  }

  .contact-detail-list b {
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .contact-detail-list small {
    font-size: 0.76rem;
    line-height: 1.12;
  }

  .contact-form-panel {
    padding: 1rem;
  }

  .consultation-form {
    gap: 0.78rem;
  }

  .consultation-form input,
  .consultation-form select {
    min-height: 2.8rem;
  }

  .consultation-form textarea {
    min-height: 5rem;
  }

  .home-grid > article + article {
    border-top: 0;
    border-left: 0;
    box-shadow: none;
  }

  .home-grid > article + article::before {
    top: 0;
    right: 1.4rem;
    bottom: auto;
    left: 1.4rem;
    width: auto;
    height: 1px;
    background: rgba(104, 101, 118, 0.68);
    box-shadow: none;
  }

  .platform-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .platform-row a {
    min-height: 2.9rem;
    padding: 0;
    font-size: 0;
    line-height: 0;
    gap: 0;
    flex-basis: auto;
    display: grid;
    place-content: center;
    place-items: center;
  }

  .platform-row a .platform-logo {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    margin: 0;
    object-position: center;
  }

  .page-listen main {
    min-height: auto;
  }

  .listen-smart {
    width: min(91vw, 1160px);
    padding-top: 2rem;
    padding-bottom: 2.2rem;
  }

  .listen-release p:not(.eyebrow) {
    max-width: 18rem;
  }

  .listen-cover {
    width: min(82vw, 340px);
  }

  .smart-link-list {
    width: 100%;
    justify-self: stretch;
  }

  .smart-link {
    min-height: 4.1rem;
  }

  .smart-link small {
    display: none;
  }

  .site-footer {
    padding: 1.75rem 6vw 2rem;
  }

  .wave-panel {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-about .hero-content,
  .page-about .section-shell {
    width: min(91vw, 1160px);
    margin-right: auto;
    margin-left: auto;
  }

  .page-about .hero-content {
    max-width: calc(100vw - 10vw);
    margin-right: 5vw;
    margin-left: 5vw;
  }

  .page-about .about-profile-card,
  .page-about .about-credential-panel article,
  .page-about .article-card {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .page-about .about-credential-panel {
    padding: 0;
  }
}

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

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

  .reveal-on-scroll,
  .hero-content > *,
  .hero-media,
  body.is-navigating-out main,
  body.is-navigating-out .site-footer {
    opacity: 1;
    filter: none;
    transform: none;
  }

  body::after {
    display: none;
  }
}
