:root {
  --bg: #07010f;
  --bg-soft: #120622;
  --text: #f7f0ff;
  --muted: rgba(247, 240, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --hot-pink: #ff4fd8;
  --cyan: #37e6ff;
  --lime: #c6ff54;
  --orange: #ff8a36;
  --panel: rgba(13, 7, 27, 0.58);
  --panel-strong: rgba(20, 11, 42, 0.84);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 79, 216, 0.16), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(55, 230, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #090112 0%, #12031e 42%, #07010f 100%);
  font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
}

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

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

.scroll-more-indicator {
  appearance: none;
  -webkit-appearance: none;
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: 28px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.scroll-more-indicator::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  border-right: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
  content: "";
  filter:
    drop-shadow(0 2px 0 #101114)
    drop-shadow(0 -2px 0 #101114)
    drop-shadow(2px 0 0 #101114)
    drop-shadow(-2px 0 0 #101114);
  transform: translateX(-50%) rotate(45deg);
}

.scroll-more-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  animation: scrollMoreBlink 1.05s ease-in-out infinite;
}

.scroll-more-indicator:hover,
.scroll-more-indicator:focus-visible {
  outline: none;
}

.scroll-more-indicator:hover::before,
.scroll-more-indicator:focus-visible::before {
  border-color: #e4ff91;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.ambient {
  z-index: -2;
  opacity: 0.45;
}

.ambient-a {
  top: 14vh;
  left: -8vw;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.75), transparent 72%);
  animation: driftA 15s ease-in-out infinite alternate;
}

.ambient-b {
  top: 45vh;
  right: -6vw;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(55, 230, 255, 0.7), transparent 72%);
  animation: driftB 19s ease-in-out infinite alternate;
}

.ambient-c {
  bottom: -8vh;
  left: 32vw;
  width: 26vw;
  height: 26vw;
  background: radial-gradient(circle, rgba(198, 255, 84, 0.32), transparent 70%);
  animation: driftC 17s ease-in-out infinite alternate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(24px);
  background: rgba(7, 1, 15, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand img {
  width: 70px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-nav a:last-child {
  color: rgba(247, 240, 255, 0.48);
  margin-left: 50px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--hot-pink), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current] {
  color: var(--text);
  text-shadow: 0 0 14px rgba(247, 240, 255, 0.32);
}

.site-header .site-nav a.nav-link-music,
.site-header .site-nav a.nav-link-music[aria-current] {
  color: var(--lime) !important;
  text-shadow: 0 0 16px rgba(198, 255, 84, 0.42);
}

.site-header .site-nav a.nav-link-music {
  margin-left: 50px;
}

.site-header .site-nav a.nav-link-music::after {
  background: var(--lime);
}

.hero,
.section,
.metrics {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: 54px 0 36px;
}

.hero-copy,
.hero-stage {
  width: 100%;
}

.hero-copy {
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.92;
  max-width: 100%;
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 100%;
  color: var(--text);
  overflow-wrap: normal;
}

.hero-line-plain {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(247, 240, 255, 0.72);
}

.hero-line-plain::before,
.hero-line-plain::after,
.building-pixi {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-line-plain::before,
.hero-line-plain::after {
  content: attr(data-text);
  color: transparent;
  background:
    linear-gradient(180deg, rgba(222, 255, 255, 0.96), rgba(55, 230, 255, 0.86) 46%, rgba(18, 116, 255, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 8px, transparent 8px 22px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: polygon(
    0 72%,
    7% 66%,
    14% 72%,
    21% 66%,
    28% 72%,
    35% 66%,
    42% 72%,
    49% 66%,
    56% 72%,
    63% 66%,
    70% 72%,
    77% 66%,
    84% 72%,
    91% 66%,
    100% 72%,
    100% 100%,
    0 100%
  );
  animation: buildingWaterRise 7.5s linear infinite;
}

.hero-line-plain::after {
  animation-delay: -3.75s;
}

.building-pixi {
  z-index: 4;
  display: block;
}

.building-pixi canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@property --hero-accent-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.hero-line-accent {
  --hero-accent-angle: 0deg;
  display: inline-block;
  color: transparent;
  background:
    conic-gradient(
      from var(--hero-accent-angle) at 50% 50%,
      var(--hot-pink) 0deg,
      #ff5f96 60deg,
      var(--orange) 132deg,
      #d9b060 184deg,
      var(--cyan) 248deg,
      var(--hot-pink) 360deg
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroAccentSpin 4s linear infinite;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.hero-marquee {
  margin-top: 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 20s linear infinite;
}

.hero-marquee-track span {
  color: rgba(247, 240, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  max-width: none;
  min-height: 620px;
  display: grid;
  align-content: center;
  justify-items: stretch;
  margin-inline: 0;
  padding: 22px;
  overflow: visible;
}

.orbital-ring {
  position: absolute;
  inset: 50%;
  width: min(78%, 440px);
  height: min(78%, 440px);
  border: 1px solid rgba(198, 255, 84, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(198, 255, 84, 0.035),
    0 0 70px rgba(198, 255, 84, 0.22),
    0 0 130px rgba(55, 230, 255, 0.18);
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

.orbital-ring::before {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  content: "";
  background: conic-gradient(
    from 0deg,
    transparent 0deg 42deg,
    rgba(198, 255, 84, 0.92) 48deg 66deg,
    transparent 74deg 198deg,
    rgba(55, 230, 255, 0.72) 210deg 224deg,
    transparent 236deg 360deg
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.feature-panel,
.info-card,
.work-card,
.process-item,
.artist-card,
.timeline-item,
.contact-panel,
.metric {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  will-change: transform;
}

.feature-panel::before,
.info-card::before,
.work-card::before,
.process-item::before,
.artist-card::before,
.timeline-item::before,
.contact-panel::before,
.metric::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%);
  opacity: 0.8;
  pointer-events: none;
}

.feature-panel p,
.artist-card p,
.timeline-item span {
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-main {
  position: absolute;
  width: min(82%, 430px);
  padding: 28px;
  animation: randomPanelFloat var(--panel-float-duration, 14s) ease-in-out infinite;
}

.panel-main strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.panel-card {
  position: absolute;
  width: min(46%, 280px);
  padding: 22px;
  animation: randomPanelFloat var(--panel-float-duration, 16s) ease-in-out infinite;
}

.panel-card strong,
.panel-stack li,
.info-card h3,
.work-card h2,
.work-card h3,
.process-item h3,
.artist-card h3,
.timeline-item h3,
.contact-panel h2 {
  font-family: "Syne", "Space Grotesk", sans-serif;
}

.panel-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1;
}

.panel-card span,
.info-card p,
.artist-card span,
.timeline-item p,
.contact-panel p {
  color: var(--muted);
}

.panel-stack {
  position: absolute;
  width: min(48%, 300px);
  padding: 24px;
  animation: randomPanelFloat var(--panel-float-duration, 15s) ease-in-out infinite;
}

.panel-stack ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.panel-stack li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 18px;
}

.section {
  padding: 106px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 41px);
  line-height: 0.94;
}

.section-heading h1 {
  font-size: clamp(40px, 6.8vw, 86px);
  line-height: 0.9;
}

.identity-grid,
.works-grid,
.artist-showcase,
.experience-timeline,
.metrics {
  margin-top: 34px;
}

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

.info-card {
  min-height: 320px;
  padding: 26px;
}

.info-visual {
  position: absolute;
  top: 64px;
  right: 24px;
  width: 108px;
  height: 108px;
  opacity: 0.82;
  pointer-events: none;
}

.info-visual i,
.info-visual b {
  position: absolute;
  display: block;
}

.info-visual::before,
.info-visual::after,
.artist-visual::before,
.artist-visual::after,
.timeline-visual::before,
.timeline-visual::after {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.info-visual-mark::before,
.info-visual-mark::after {
  position: absolute;
  content: "";
}

.info-visual-mark::before {
  inset: 18px;
  border: 1px solid rgba(55, 230, 255, 0.28);
  transform: rotate(45deg);
  animation: objectTiltA 6.8s ease-in-out infinite alternate;
}

.info-visual-mark::after {
  inset: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
  animation: objectPulseA 5.4s ease-in-out infinite alternate;
}

.info-visual-mark i:nth-child(1) {
  top: 14px;
  left: 50%;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255, 79, 216, 0.9), transparent);
  transform: translateX(-50%);
  animation: objectSlideY 4.8s ease-in-out infinite alternate;
}

.info-visual-mark i:nth-child(2) {
  top: 50%;
  left: 14px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(55, 230, 255, 0.88), transparent);
  transform: translateY(-50%);
  animation: objectSlideX 5.6s ease-in-out infinite alternate;
}

.info-visual-mark b {
  right: 16px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--orange), var(--hot-pink));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(255, 138, 54, 0.2);
  animation: objectBobSmall 4.6s ease-in-out infinite alternate;
}

.info-visual-grid {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.info-visual-grid i {
  width: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(55, 230, 255, 0.18));
}

.info-visual-grid i:nth-child(1) {
  height: 42px;
  animation: barFloatA 5.2s ease-in-out infinite alternate;
}

.info-visual-grid i:nth-child(2) {
  height: 74px;
  animation: barFloatB 4.8s ease-in-out infinite alternate;
}

.info-visual-grid i:nth-child(3) {
  height: 58px;
  animation: barFloatC 5.5s ease-in-out infinite alternate;
}

.info-visual-grid i:nth-child(4) {
  height: 92px;
  animation: barFloatD 4.4s ease-in-out infinite alternate;
}

.info-visual-spark i {
  left: 50%;
  top: 50%;
  width: 72px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transform-origin: center;
}

.info-visual-spark i:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: sparkTiltA 5.7s ease-in-out infinite alternate;
}

.info-visual-spark i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
  animation: sparkTiltB 4.9s ease-in-out infinite alternate;
}

.info-visual-spark i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(45deg);
  animation: sparkTiltC 5.3s ease-in-out infinite alternate;
}

.info-card span {
  color: rgba(247, 240, 255, 0.4);
  font-size: 15px;
  font-weight: 700;
}

.info-card h3 {
  margin: 80px 0 14px;
  font-size: 30px;
  line-height: 0.95;
}

.info-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.66;
}

.works-intro {
  max-width: 760px;
  margin-top: 24px;
}

.music-page-main {
  position: relative;
}

.music-page-main > section,
.music-page-main .contact-panel {
  position: relative;
  z-index: 1;
}

.works-page {
  min-height: calc(100vh - 82px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 22px;
}

.music-icon-field {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.music-icon-field i {
  position: absolute;
  color: rgba(198, 255, 84, 0.11);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1;
  text-shadow: 0 0 34px rgba(198, 255, 84, 0.13);
  transform: rotate(var(--icon-rotate, 0deg));
}

.music-icon-field i:nth-child(1) {
  top: 2%;
  left: 6%;
  --icon-rotate: -18deg;
}

.music-icon-field i:nth-child(2) {
  top: 7%;
  right: 8%;
  color: rgba(55, 230, 255, 0.1);
  --icon-rotate: 16deg;
}

.music-icon-field i:nth-child(3) {
  left: 42%;
  top: 16%;
  color: rgba(255, 79, 216, 0.09);
  font-size: clamp(54px, 7vw, 104px);
  --icon-rotate: -6deg;
}

.music-icon-field i:nth-child(4) {
  right: 2%;
  top: 29%;
  --icon-rotate: -14deg;
}

.music-icon-field i:nth-child(5) {
  left: 18%;
  top: 37%;
  color: rgba(55, 230, 255, 0.09);
  --icon-rotate: 12deg;
}

.music-icon-field i:nth-child(6) {
  left: 58%;
  top: 49%;
  color: rgba(255, 138, 54, 0.09);
  --icon-rotate: 20deg;
}

.music-icon-field i:nth-child(7) {
  right: 12%;
  top: 58%;
  color: rgba(198, 255, 84, 0.08);
  --icon-rotate: 10deg;
}

.music-icon-field i:nth-child(8) {
  left: 4%;
  top: 69%;
  color: rgba(55, 230, 255, 0.08);
  --icon-rotate: -12deg;
}

.music-icon-field i:nth-child(9) {
  right: 28%;
  top: 78%;
  color: rgba(255, 79, 216, 0.08);
  --icon-rotate: 18deg;
}

.music-icon-field i:nth-child(10) {
  left: 34%;
  top: 90%;
  color: rgba(198, 255, 84, 0.08);
  --icon-rotate: -20deg;
}

.works-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.works-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.works-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(48px, 8vw, 63px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.works-subtitle {
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.34;
}

.works-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.72;
}

.works-lead-note {
  margin: 12px 0 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.works-studio-visual {
  position: relative;
  min-height: 560px;
}

.studio-note,
.studio-wave,
.studio-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.studio-note {
  top: 0%;
  left: 2%;
  z-index: 2;
  width: min(82%, 430px);
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    rgba(18, 9, 32, 0.78);
  transform: rotate(-6deg);
  animation: panelFloatMain 14s ease-in-out infinite;
}

.studio-note span {
  display: block;
  max-width: 310px;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(30px, 3.5vw, 33px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.studio-note i {
  display: block;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgba(198, 255, 84, 0.84), rgba(55, 230, 255, 0.54), transparent);
}

.studio-wave {
  right: 0;
  bottom: 12%;
  z-index: 3;
  width: min(74%, 380px);
  min-height: 210px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(198, 255, 84, 0.2), transparent 42%),
    rgba(7, 1, 15, 0.66);
  transform: rotate(5deg);
  animation: panelFloatCard 16s ease-in-out infinite;
}

.studio-wave i {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(198, 255, 84, 0.86), rgba(255, 255, 255, 0.08));
}

.studio-wave i:nth-child(1) {
  height: 56px;
  animation: barFloatA 5.2s ease-in-out infinite alternate;
}

.studio-wave i:nth-child(2) {
  height: 104px;
  animation: barFloatB 4.8s ease-in-out infinite alternate;
}

.studio-wave i:nth-child(3) {
  height: 142px;
  animation: barFloatC 5.6s ease-in-out infinite alternate;
}

.studio-wave i:nth-child(4) {
  height: 86px;
  animation: barFloatD 5s ease-in-out infinite alternate;
}

.studio-wave i:nth-child(5) {
  height: 122px;
  animation: barFloatA 5.8s ease-in-out infinite alternate;
}

.studio-orbit {
  top: 19%;
  right: 8%;
  z-index: 1;
  width: min(78%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border-color: rgba(198, 255, 84, 0.34);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 18%, transparent 20%),
    radial-gradient(circle at 70% 30%, rgba(255, 138, 54, 0.34) 0 9%, transparent 10%);
  box-shadow:
    0 0 0 28px rgba(198, 255, 84, 0.035),
    0 0 70px rgba(198, 255, 84, 0.22),
    0 0 130px rgba(55, 230, 255, 0.18);
  animation: spin 26s linear infinite;
  backdrop-filter: none;
  pointer-events: none;
}

.studio-orbit::before {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  content: "";
  background: conic-gradient(
    from 0deg,
    transparent 0deg 44deg,
    rgba(198, 255, 84, 0.9) 50deg 70deg,
    transparent 78deg 198deg,
    rgba(55, 230, 255, 0.72) 212deg 228deg,
    transparent 238deg 360deg
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.works-about {
  padding-top: 40px;
}

.works-services {
  padding-top: 70px;
}

.process-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-item {
  min-height: 187px;
  padding: 26px;
}

.process-item span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-item h3 {
  margin: 36px 0 14px;
  font-size: clamp(30px, 3vw, 39px);
  line-height: 0.94;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

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

.work-card {
  min-height: 390px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.work-card span {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(247, 240, 255, 0.4);
  font-size: 15px;
  font-weight: 700;
}

.work-card h2,
.work-card h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 32px);
  line-height: 0.94;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.work-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.work-card li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 240, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-visual {
  position: absolute;
  top: 72px;
  right: 24px;
  width: 132px;
  height: 132px;
  opacity: 0.86;
  pointer-events: none;
}

.work-visual i,
.work-visual b {
  position: absolute;
  display: block;
}

.work-visual-lines i {
  left: 8px;
  width: 112px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(55, 230, 255, 0.9), rgba(255, 79, 216, 0.78), transparent);
}

.work-visual-lines {
  top: 12px;
}

.work-visual-lines i:nth-child(1) {
  top: 32px;
  animation: curveWaveA 5.4s ease-in-out infinite alternate;
}

.work-visual-lines i:nth-child(2) {
  top: 64px;
  animation: curveWaveB 5.8s ease-in-out infinite alternate;
}

.work-visual-lines i:nth-child(3) {
  top: 96px;
  animation: curveWaveC 6.2s ease-in-out infinite alternate;
}

.work-visual-private i {
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04);
  animation: objectPulseRound 5.8s ease-in-out infinite alternate;
}

.work-visual-private {
  top: 12px;
}

.work-visual-private b {
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 0 24px rgba(55, 230, 255, 0.26);
  transform: translate(-50%, -50%);
  animation: objectBobCenter 4.9s ease-in-out infinite alternate;
}

.work-visual-tone {
  top: 12px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.work-visual-tone i {
  bottom: 10px;
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 79, 216, 0.88), rgba(255, 138, 54, 0.34));
}

.work-visual-tone i:nth-child(1) {
  left: 8px;
  height: 54px;
  animation: barFloatA 5.2s ease-in-out infinite alternate;
}

.work-visual-tone i:nth-child(2) {
  left: 54px;
  height: 96px;
  animation: barFloatB 4.8s ease-in-out infinite alternate;
}

.work-visual-tone i:nth-child(3) {
  left: 100px;
  height: 72px;
  animation: barFloatC 5.5s ease-in-out infinite alternate;
}

.work-visual-collab i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--cyan));
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.18);
}

.work-visual-collab {
  top: 12px;
}

.work-visual-collab i:nth-child(1) {
  left: 24px;
  top: 34px;
  animation: nodePulseA 4.8s ease-in-out infinite alternate;
}

.work-visual-collab i:nth-child(2) {
  right: 24px;
  bottom: 30px;
  animation: nodePulseB 5.2s ease-in-out infinite alternate;
}

.work-visual-collab b {
  left: 32px;
  right: 32px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.86), rgba(55, 230, 255, 0.86));
  transform: rotate(-24deg);
  animation: objectTiltB 5.4s ease-in-out infinite alternate;
}

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

.artist-card {
  min-height: 320px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.artist-visual {
  position: absolute;
  inset: 28px 28px auto auto;
  width: 150px;
  height: 150px;
  opacity: 0.88;
  pointer-events: none;
}

.artist-visual i,
.artist-visual b {
  position: absolute;
  display: block;
}

.artist-visual-curve::before,
.artist-visual-curve::after {
  position: absolute;
  content: "";
}

.artist-visual-curve::before {
  left: 14px;
  right: 14px;
  top: 24px;
  bottom: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  animation: objectPulseA 6.2s ease-in-out infinite alternate;
}

.artist-visual-curve::after {
  left: 22px;
  bottom: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: objectBobSmall 4.5s ease-in-out infinite alternate;
}

.artist-visual-curve i {
  left: 26px;
  width: 94px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, currentColor 18%, currentColor 82%, transparent);
}

.artist-visual-curve i:nth-child(1) {
  top: 42px;
  color: rgba(55, 230, 255, 0.9);
  box-shadow:
    -16px 8px 0 -0.5px rgba(55, 230, 255, 0.72),
    16px -8px 0 -0.5px rgba(55, 230, 255, 0.72),
    34px 10px 0 -0.5px rgba(55, 230, 255, 0.5);
  animation: curveWaveA 6.1s ease-in-out infinite alternate;
}

.artist-visual-curve i:nth-child(2) {
  top: 72px;
  color: rgba(255, 79, 216, 0.92);
  box-shadow:
    -18px -10px 0 -0.5px rgba(255, 79, 216, 0.68),
    18px 10px 0 -0.5px rgba(255, 79, 216, 0.68),
    34px -10px 0 -0.5px rgba(255, 79, 216, 0.46);
  animation: curveWaveB 5.4s ease-in-out infinite alternate;
}

.artist-visual-curve i:nth-child(3) {
  top: 102px;
  color: rgba(255, 138, 54, 0.9);
  box-shadow:
    -14px 7px 0 -0.5px rgba(255, 138, 54, 0.62),
    14px -7px 0 -0.5px rgba(255, 138, 54, 0.62),
    30px 9px 0 -0.5px rgba(255, 138, 54, 0.42);
  animation: curveWaveC 6.6s ease-in-out infinite alternate;
}

.artist-visual-curve b {
  top: 14px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  box-shadow: 0 0 18px rgba(55, 230, 255, 0.2);
  animation: novaOrbStretch 4.8s ease-in-out infinite alternate;
}

.artist-visual-beam i {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 216, 0.95), rgba(55, 230, 255, 0.75), transparent);
}

.artist-visual-beam i:nth-child(1) {
  top: 40px;
  transform-origin: 50% 50%;
  animation: beamSpinA 24s linear infinite;
}

.artist-visual-beam i:nth-child(2) {
  top: 96px;
  transform-origin: 50% 50%;
  animation: beamSpinB 30s linear infinite;
}

.artist-visual-node::before {
  position: absolute;
  left: 30px;
  right: 26px;
  top: 24px;
  bottom: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
}

.artist-node-group {
  position: absolute;
  inset: 0;
  animation: nodeGroupSpin 36s linear infinite;
  transform-origin: 50% 50%;
}

.artist-node-group i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--cyan));
  box-shadow: 0 0 20px rgba(55, 230, 255, 0.18);
}

.artist-node-group i:nth-child(1) {
  top: 20px;
  left: 18px;
}

.artist-node-group i:nth-child(2) {
  right: 18px;
  top: 54px;
}

.artist-node-group i:nth-child(3) {
  left: 54px;
  bottom: 20px;
}

.artist-card.large {
  min-height: 430px;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.artist-card h3 {
  margin: 16px 0 8px;
  font-size: clamp(34px, 3vw, 45px);
  line-height: 0.92;
}

.artist-card span {
  font-size: 15px;
  line-height: 1.5;
}

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

.timeline-item {
  min-height: 300px;
  padding: 24px;
}

.timeline-visual {
  position: absolute;
  top: 66px;
  left: 24px;
  width: 112px;
  height: 112px;
  opacity: 0.92;
  pointer-events: none;
}

.timeline-visual i,
.timeline-visual b {
  position: absolute;
  display: block;
}

.visual-orbit::before {
  position: absolute;
  inset: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  content: "";
  animation: objectTiltA 6.7s ease-in-out infinite alternate;
}

.visual-orbit i {
  inset: 6px 20px 44px 20px;
  border: 1px solid rgba(55, 230, 255, 0.3);
  border-radius: 999px;
  animation: orbitShift 5.7s ease-in-out infinite alternate;
}

.visual-orbit b {
  top: 50px;
  left: 18px;
  width: 18px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.4);
  animation: objectSlideX 4.7s ease-in-out infinite alternate;
}

.visual-wave {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.visual-wave i {
  bottom: 12px;
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(55, 230, 255, 0.9), rgba(255, 79, 216, 0.32));
  box-shadow: 0 0 20px rgba(55, 230, 255, 0.16);
}

.visual-wave i:nth-child(1) {
  left: 0;
  height: 46px;
  animation: barFloatA 4.9s ease-in-out infinite alternate;
}

.visual-wave i:nth-child(2) {
  left: 36px;
  height: 82px;
  animation: barFloatB 5.5s ease-in-out infinite alternate;
}

.visual-wave i:nth-child(3) {
  left: 72px;
  height: 62px;
  animation: barFloatC 5.1s ease-in-out infinite alternate;
}

.visual-burst i {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border-top: 2px solid rgba(255, 138, 54, 0.85);
  border-right: 2px solid transparent;
  border-radius: 50%;
  transform-origin: center;
  animation: burstSpinClockwise 9s linear infinite;
}

.visual-burst i:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.visual-burst i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(60deg);
}

.visual-burst i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(120deg);
}

.timeline-item h3 {
  margin: 110px 0 14px;
  font-size: 34px;
  line-height: 0.96;
}

.timeline-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.66;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 106px 0 0;
}

.metric {
  padding: 32px 24px;
}

.metric strong {
  display: block;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact {
  padding-bottom: 46px;
}

.contact-panel {
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at top right, rgba(55, 230, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 79, 216, 0.24), transparent 36%),
    rgba(13, 7, 27, 0.68);
}

.contact-panel > *:not(.music-panel-icon-field) {
  position: relative;
  z-index: 1;
}

.lv1-logo-mark {
  display: block;
  width: clamp(104px, 13vw, 132px);
  height: auto;
  margin: 0 0 18px;
}

.music-panel-icon-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.music-panel-icon-field i {
  position: absolute;
  color: rgba(198, 255, 84, 0.12);
  font-size: clamp(42px, 7vw, 100px);
  line-height: 1;
  text-shadow: 0 0 34px rgba(198, 255, 84, 0.12);
}

.music-panel-icon-field i:nth-child(1) {
  left: 8%;
  top: 16%;
  transform: rotate(-18deg);
}

.music-panel-icon-field i:nth-child(2) {
  right: 10%;
  top: 10%;
  color: rgba(55, 230, 255, 0.11);
  transform: rotate(14deg);
}

.music-panel-icon-field i:nth-child(3) {
  left: 42%;
  bottom: 8%;
  color: rgba(255, 79, 216, 0.1);
  transform: rotate(-6deg);
}

.music-panel-icon-field i:nth-child(4) {
  right: 22%;
  bottom: 16%;
  color: rgba(255, 138, 54, 0.1);
  transform: rotate(18deg);
}

.inquiry-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.contact-panel h2 {
  max-width: 780px;
  font-size: clamp(36px, 6vw, 48px);
  line-height: 0.94;
}

.contact-panel p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.68;
}

.inquiry-contact-panel .contact-copy h2:not(.contact-copy-title),
.inquiry-contact-panel .contact-copy p:not(.eyebrow):not(.contact-copy-text) {
  display: none;
}

.music-bottom-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(198, 255, 84, 0.48);
  background:
    radial-gradient(circle at top left, rgba(198, 255, 84, 0.24), transparent 36%),
    linear-gradient(90deg, rgba(198, 255, 84, 0.2), rgba(198, 255, 84, 0.08)),
    rgba(198, 255, 84, 0.055);
  box-shadow: 0 30px 90px rgba(198, 255, 84, 0.12), var(--shadow);
  backdrop-filter: blur(24px);
}

.contact .music-bottom-link {
  transform: translateY(-64px);
}

.music-bottom-link h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.96;
}

.music-bottom-link p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}

.contact-link-logo {
  display: block;
  width: 52px;
  height: auto;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.music-bottom-link .contact-link {
  border-color: rgba(198, 255, 84, 0.72);
  background: rgba(198, 255, 84, 0.18);
  color: var(--lime);
}

.music-bottom-link .contact-link:hover,
.music-bottom-link .contact-link:focus-visible {
  background: rgba(198, 255, 84, 0.28);
  border-color: rgba(198, 255, 84, 0.95);
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-status {
  display: none;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 240, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-status.is-visible {
  display: block;
}

.inquiry-status.is-success {
  border-color: rgba(198, 255, 84, 0.52);
  background: rgba(198, 255, 84, 0.12);
}

.inquiry-status.is-error {
  border-color: rgba(255, 79, 120, 0.54);
  background: rgba(255, 79, 120, 0.12);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form span {
  color: rgba(247, 240, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 14px 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  transition: border-color 220ms ease, background 220ms ease;
}

.inquiry-form select option {
  background: #f7f0ff;
  color: #120622;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(198, 255, 84, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.inquiry-form button {
  justify-self: start;
  border: 1px solid rgba(198, 255, 84, 0.44);
  padding: 15px 20px;
  background: rgba(198, 255, 84, 0.12);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}

.inquiry-form button:hover,
.inquiry-form button:focus-visible {
  background: rgba(198, 255, 84, 0.2);
  border-color: rgba(198, 255, 84, 0.72);
  transform: translateY(-2px);
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 44px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 62px;
  filter: brightness(0) invert(1);
}

.footer-brand strong,
.footer-meta a,
.footer-meta span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand strong {
  display: block;
}

.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--muted);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--text);
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  transition: opacity 900ms ease, transform 900ms var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes scrollMoreBlink {
  0%,
  100% {
    opacity: 0.55;
    filter: brightness(0.7);
  }

  50% {
    opacity: 1;
    filter: brightness(2.2) drop-shadow(0 0 12px rgba(198, 255, 84, 0.95));
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes driftA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(90px, 40px, 0) scale(1.18);
  }
}

@keyframes driftB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-80px, -30px, 0) scale(1.14);
  }
}

@keyframes driftC {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(40px, -70px, 0) scale(1.16);
  }
}

@keyframes heroAccentSpin {
  from {
    --hero-accent-angle: 0deg;
  }

  to {
    --hero-accent-angle: 360deg;
  }
}

@keyframes buildingWaterRise {
  0% {
    clip-path: polygon(
      0 84%,
      7% 78%,
      14% 84%,
      21% 78%,
      28% 84%,
      35% 78%,
      42% 84%,
      49% 78%,
      56% 84%,
      63% 78%,
      70% 84%,
      77% 78%,
      84% 84%,
      91% 78%,
      100% 84%,
      100% 100%,
      0 100%
    );
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  68% {
    clip-path: polygon(
      0 24%,
      7% 18%,
      14% 24%,
      21% 18%,
      28% 24%,
      35% 18%,
      42% 24%,
      49% 18%,
      56% 24%,
      63% 18%,
      70% 24%,
      77% 18%,
      84% 24%,
      91% 18%,
      100% 24%,
      100% 100%,
      0 100%
    );
    opacity: 1;
  }

  100% {
    clip-path: polygon(
      0 2%,
      7% -4%,
      14% 2%,
      21% -4%,
      28% 2%,
      35% -4%,
      42% 2%,
      49% -4%,
      56% 2%,
      63% -4%,
      70% 2%,
      77% -4%,
      84% 2%,
      91% -4%,
      100% 2%,
      100% 100%,
      0 100%
    );
    opacity: 0;
  }
}

@keyframes panelFloatMain {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(14px, -10px, 0) rotate(-7.5deg);
  }
}

@keyframes panelFloatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }

  50% {
    transform: translate3d(-12px, 14px, 0) rotate(7.5deg);
  }
}

@keyframes panelFloatStack {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }

  50% {
    transform: translate3d(16px, -9px, 0) rotate(-4.6deg);
  }
}

@keyframes randomPanelFloat {
  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--panel-rotate, 0deg));
  }

  35% {
    transform:
      translate3d(var(--panel-float-x-a, 10px), var(--panel-float-y-a, -8px), 0)
      rotate(calc(var(--panel-rotate, 0deg) + var(--panel-rotate-a, 0.7deg)));
  }

  70% {
    transform:
      translate3d(var(--panel-float-x-b, -8px), var(--panel-float-y-b, 9px), 0)
      rotate(calc(var(--panel-rotate, 0deg) + var(--panel-rotate-b, -0.6deg)));
  }
}

@keyframes objectTiltA {
  0%,
  100% {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(49deg) translate3d(2px, -2px, 0);
  }
}

@keyframes objectTiltB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(3px, -3px, 0) rotate(3deg);
  }
}

@keyframes objectPulseA {
  0%,
  100% {
    opacity: 0.65;
    transform: rotate(45deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.04);
  }
}

@keyframes objectPulseRound {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes objectBobCenter {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 6px)) scale(1.08);
  }
}

@keyframes objectBobSmall {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(45deg);
  }

  50% {
    transform: translate3d(0, -4px, 0) rotate(53deg);
  }
}

@keyframes objectSlideX {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(6px, 0, 0);
  }
}

@keyframes objectSlideY {
  0%,
  100% {
    transform: translateX(-50%) translate3d(0, 0, 0);
  }

  50% {
    transform: translateX(-50%) translate3d(0, -6px, 0);
  }
}

@keyframes barFloatA {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(-4px) scaleY(1.08);
  }
}

@keyframes barFloatB {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(4px) scaleY(0.92);
  }
}

@keyframes barFloatC {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(-3px) scaleY(1.05);
  }
}

@keyframes barFloatD {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(3px) scaleY(0.95);
  }
}

@keyframes sparkTiltA {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-37deg);
  }
}

@keyframes sparkTiltB {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(6deg);
  }
}

@keyframes sparkTiltC {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(37deg);
  }
}

@keyframes curveWaveA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(4px, -4px, 0);
  }
}

@keyframes curveWaveB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-5px, 3px, 0);
  }
}

@keyframes curveWaveC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(5px, 2px, 0);
  }
}

@keyframes novaOrbStretch {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scaleX(1) scaleY(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scaleX(0.82) scaleY(1.72);
  }
}

@keyframes beamSpinA {
  from {
    transform: rotate(-24deg);
  }

  to {
    transform: rotate(336deg);
  }
}

@keyframes beamSpinB {
  from {
    transform: rotate(18deg);
  }

  to {
    transform: rotate(378deg);
  }
}

@keyframes nodePulseA {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes nodePulseB {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(0.88);
    opacity: 1;
  }
}

@keyframes nodePulseC {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes nodeGroupSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(4px, -3px, 0);
  }
}

@keyframes burstSpinClockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  .ambient,
  .scroll-more-indicator,
  .hero-marquee-track,
  .orbital-ring,
  .hero-line-plain::before,
  .hero-line-plain::after,
  .studio-note,
  .studio-wave,
  .studio-wave i,
  .studio-orbit,
  .info-visual::before,
  .info-visual::after,
  .info-visual i,
  .info-visual b,
  .work-visual i,
  .work-visual b,
  .artist-visual::before,
  .artist-visual::after,
  .artist-visual i,
  .artist-visual b,
  .timeline-visual::before,
  .timeline-visual::after,
  .timeline-visual i,
  .timeline-visual b,
  .panel-main,
  .panel-card,
  .panel-stack,
  .reveal-item {
    animation: none;
    transition: none;
    transform: none;
  }

  .reveal-item {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .works-hero,
  .section-heading,
  .identity-grid,
  .works-grid,
  .process-list,
  .inquiry-contact-panel,
  .artist-showcase,
  .experience-timeline,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .works-page {
    padding-top: 52px;
  }

  .works-hero {
    min-height: auto;
  }

  .works-studio-visual {
    min-height: 500px;
  }

  .hero-stage {
    min-height: 500px;
    margin-top: 24px;
  }

  .panel-main,
  .panel-card,
  .panel-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
    transform: none;
  }

  .hero-stage {
    gap: 18px;
  }

  .orbital-ring {
    display: none;
  }

}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a:last-child {
    margin-left: 12px;
  }

  .site-header .site-nav a.nav-link-music {
    margin-left: 12px;
  }

  .hero,
  .section,
  .metrics,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-text,
  .info-card p,
  .timeline-item p,
  .contact-panel p {
    font-size: 16px;
  }

  .feature-panel,
  .info-card,
  .work-card,
  .process-item,
  .artist-card,
  .timeline-item,
  .metric,
  .contact-panel {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

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

  .music-bottom-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
    gap: 8px;
  }
}
