: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%;
}

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

.ambient,
.pointer-glow {
  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;
}

.pointer-glow {
  z-index: -1;
  width: 220px;
  height: 220px;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 79, 216, 0.18), transparent 72%);
  transform: translate3d(-50%, -50%, 0);
  transition: left 120ms linear, top 120ms linear, opacity 220ms ease;
}

.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;
}

.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 {
  transform: scaleX(1);
}

.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 h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
}

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

.hero-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

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

.hero-line-accent {
  --hero-accent-angle: 0deg;
  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 6.67s 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(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(255, 79, 216, 0.04),
    0 0 120px rgba(55, 230, 255, 0.16);
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

.feature-panel,
.info-card,
.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,
.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: panelFloatMain 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: panelFloatCard 16s ease-in-out infinite;
}

.panel-card strong,
.panel-stack li,
.info-card 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: panelFloatStack 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;
}

.stage-badge {
  position: absolute;
  right: 2%;
  bottom: 6%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 240, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.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, 62px);
  line-height: 0.94;
}

.identity-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;
}

.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, 4vw, 62px);
  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: 110px;
}

.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 h2 {
  max-width: 780px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.94;
}

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

.contact-link {
  display: inline-flex;
  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:hover,
.contact-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.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 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 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 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 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,
  .hero-marquee-track,
  .orbital-ring,
  .info-visual::before,
  .info-visual::after,
  .info-visual i,
  .info-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,
  .section-heading,
  .identity-grid,
  .artist-showcase,
  .experience-timeline,
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .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;
    transform: none;
  }

  .hero-stage {
    gap: 18px;
  }

  .stage-badge {
    bottom: 4%;
    right: 50%;
    transform: translateX(50%);
  }
}

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

  .site-nav {
    gap: 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,
  .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;
  }

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