:root {
  --muted-strong: rgba(240, 240, 240, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --luxury: rgba(200, 255, 0, 0.9);
  --luxury-soft: rgba(200, 255, 0, 0.56);
  --luxury-line: rgba(200, 255, 0, 0.16);
  --luxury-glow: rgba(200, 255, 0, 0.08);
  --ornament-white: rgba(245, 250, 238, 0.2);
  --ornament-soft: rgba(220, 234, 182, 0.1);
}

#startup-screen {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 255, 0, 0.085), transparent 30%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.055), transparent 22%),
    radial-gradient(circle at 82% 70%, rgba(200, 255, 0, 0.045), transparent 22%),
    linear-gradient(180deg, #0d1013 0%, #090b0d 100%);
  transition: opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#startup-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 100% 72px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 72px 100%;
  opacity: 0.1;
  mask-image: radial-gradient(circle at center, #000 32%, transparent 88%);
  pointer-events: none;
}

#startup-screen.is-exiting {
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
}

#startup-screen.is-launching {
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 255, 0, 0.03), transparent 34%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.015), transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(200, 255, 0, 0.018), transparent 24%),
    linear-gradient(180deg, rgba(13, 16, 19, 0.38) 0%, rgba(9, 11, 13, 0.16) 100%);
}

.startup-core {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 56px));
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.startup-logo {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}

.startup-logo::before,
.startup-logo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 8px;
  border: 1px solid rgba(200, 255, 0, 0.1);
  animation: startupPulse 2.6s ease-in-out infinite;
}

.startup-logo::after {
  inset: -10px;
  border-color: rgba(255, 255, 255, 0.06);
  animation-delay: -1.3s;
}

.startup-cube {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  perspective: 320px;
  animation: startupCubeGlow 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(200, 255, 0, 0.08)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  transform: translateZ(0);
  will-change: filter, transform;
}

.startup-cube-rig {
  position: relative;
  width: 28px;
  height: 28px;
  transform-style: preserve-3d;
  animation: startupCubeRotate 2.6s cubic-bezier(0.32, 0.02, 0.2, 1) infinite;
  will-change: transform;
}

.startup-cube-face {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: 1.4px solid rgba(241, 247, 228, 0.92);
  background: transparent;
  backface-visibility: hidden;
}

.startup-cube-face--front {
  border-color: rgba(200, 255, 0, 0.9);
  transform: translateZ(14px);
}

.startup-cube-face--back {
  border-color: rgba(241, 247, 228, 0.18);
  transform: rotateY(180deg) translateZ(14px);
}

.startup-cube-face--right {
  border-color: rgba(241, 247, 228, 0.92);
  transform: rotateY(90deg) translateZ(14px);
}

.startup-cube-face--left {
  border-color: rgba(241, 247, 228, 0.22);
  transform: rotateY(-90deg) translateZ(14px);
}

.startup-cube-face--top {
  border-color: rgba(241, 247, 228, 0.88);
  transform: rotateX(90deg) translateZ(14px);
}

.startup-cube-face--bottom {
  border-color: rgba(241, 247, 228, 0.16);
  transform: rotateX(-90deg) translateZ(14px);
}

#startup-screen.is-launching .startup-logo {
  opacity: 1;
  transform: none;
}

#startup-screen.is-launching .startup-cube {
  animation-play-state: running;
}

.startup-wordmark {
  font-size: 12px;
  letter-spacing: 0.34em;
  color: rgba(245, 250, 238, 0.92);
  text-transform: uppercase;
}

.startup-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.startup-label,
#startup-percent {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.startup-label {
  color: rgba(239, 244, 226, 0.52);
}

.startup-carousel {
  position: relative;
  width: 100%;
  height: 2em;
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
}

.startup-carousel-item {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(239, 244, 226, 0.6);
  opacity: 0;
  transition: opacity 0.8s ease;
  white-space: nowrap;
}

.startup-carousel-item.is-active {
  opacity: 1;
}

#startup-percent {
  color: rgba(200, 255, 0, 0.9);
}

.startup-progress {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#startup-progress-fill {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.68), rgba(232, 245, 187, 0.98));
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.22);
  transform-origin: left center;
  transition: width 0.18s linear;
}

.startup-orbit {
  position: absolute;
  width: 38vw;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0.28;
  pointer-events: none;
}

.startup-orbit::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px dashed rgba(200, 255, 0, 0.08);
}

.startup-orbit--left {
  left: -12vw;
  top: 12vh;
  animation: startupOrbitLeft 14s linear infinite;
}

.startup-orbit--right {
  right: -10vw;
  bottom: 8vh;
  animation: startupOrbitRight 16s linear infinite;
}

@keyframes startupPulse {
  0%, 100% { opacity: 0.28; transform: scale(0.96); }
  50% { opacity: 0.72; transform: scale(1.02); }
}

@keyframes startupCubeGlow {
  0%, 100% {
    filter: drop-shadow(0 0 18px rgba(200, 255, 0, 0.08)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(200, 255, 0, 0.14)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  }
}

@keyframes startupCubeRotate {
  0% {
    transform: rotateX(-28deg) rotateY(38deg) rotateZ(0deg);
  }
  24% {
    transform: rotateX(-24deg) rotateY(128deg) rotateZ(0deg);
  }
  50% {
    transform: rotateX(-28deg) rotateY(218deg) rotateZ(0deg);
  }
  74% {
    transform: rotateX(-24deg) rotateY(308deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(-28deg) rotateY(398deg) rotateZ(0deg);
  }
}

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

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

nav {
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 24;
  box-sizing: border-box;
  min-height: 84px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

nav::after {
  display: none;
}

.nav-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-signature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 38px;
}

.brand-mark {
  position: relative;
  top: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26));
}

.brand-mark__plate {
  fill: rgba(14, 16, 14, 0.94);
  stroke: rgba(255, 255, 255, 0.11);
}

.brand-mark__halo {
  stroke: rgba(200, 255, 0, 0.22);
}

.brand-mark__face--top {
  fill: rgba(255, 255, 255, 0.06);
}

.brand-mark__face--left {
  fill: rgba(255, 255, 255, 0.03);
}

.brand-mark__face--right {
  fill: rgba(200, 255, 0, 0.14);
}

.brand-mark__edge {
  stroke: rgba(246, 249, 240, 0.86);
}

.brand-mark__edge--soft {
  stroke: rgba(246, 249, 240, 0.24);
}

.brand-mark__accent {
  fill: rgba(200, 255, 0, 0.68);
}

.brand-mark__spark {
  stroke: rgba(200, 255, 0, 0.82);
}

.logo {
  line-height: 1;
  letter-spacing: 0.24em;
}

.nav-block-right {
  align-items: flex-end;
  text-align: right;
}

.nav-role,
.nav-year {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--luxury-soft);
  text-transform: uppercase;
}

.hero-aside {
  position: fixed;
  z-index: 7;
  max-width: 232px;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  padding-top: 16px;
  will-change: transform, opacity;
}

.hero-aside::before {
  display: none;
}

.hero-aside::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 88px;
  height: 88px;
  pointer-events: none;
  opacity: 0.78;
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 255, 0, 0.92) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 66px 60px, rgba(244, 250, 236, 0.24) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72px 16px, rgba(200, 255, 0, 0.22) 0 1px, transparent 1.6px),
    linear-gradient(var(--luxury-line), var(--luxury-line)) 22px 8px / 1px 38px no-repeat,
    linear-gradient(90deg, var(--luxury-line), var(--luxury-line)) 8px 22px / 38px 1px no-repeat,
    linear-gradient(var(--ornament-soft), var(--ornament-soft)) 22px 50px / 1px 18px no-repeat,
    linear-gradient(90deg, var(--ornament-soft), var(--ornament-soft)) 50px 22px / 18px 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)) 30px 60px / 36px 1px no-repeat;
  filter: drop-shadow(0 0 16px rgba(200, 255, 0, 0.08));
}

#hero-aside-left::before {
  display: none;
}

#hero-aside-left::after {
  left: -30px;
}

#hero-aside-right::before {
  display: none;
}

#hero-aside-right::after {
  right: -30px;
  transform: scaleX(-1);
}

#hero-aside-left {
  left: 44px;
  top: 18vh;
}

#hero-aside-right {
  right: 34px;
  top: calc(50% - 182px);
  display: flex;
  justify-content: flex-end;
  z-index: 10;
  text-align: left;
  pointer-events: auto;
  transform: translate3d(0, var(--timeline-shift-y, 0px), 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

#hero-aside-right.hero-timeline::after {
  display: none;
}

.hero-timeline {
  width: 124px;
  min-height: var(--timeline-height, 392px);
  padding-right: 0;
}

.hero-timeline-track {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 18px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(200, 255, 0, 0.18),
    rgba(200, 255, 0, 0.5) 18%,
    rgba(200, 255, 0, 0.22) 52%,
    rgba(200, 255, 0, 0.08)
  );
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.06);
}

.hero-timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: var(--timeline-progress-end, 0px);
  background: linear-gradient(
    to bottom,
    rgba(200, 255, 0, 0.16),
    rgba(200, 255, 0, 0.5) 34%,
    rgba(214, 255, 56, 0.9)
  );
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.1);
}

.hero-timeline-track::after {
  content: '';
  position: absolute;
  left: -1px;
  top: var(--timeline-indicator-top, 0px);
  width: 3px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(224, 255, 109, 0.86) 18%,
    rgba(200, 255, 0, 0.96) 52%,
    rgba(255, 255, 255, 0)
  );
  box-shadow:
    0 0 18px rgba(200, 255, 0, 0.18),
    0 0 36px rgba(200, 255, 0, 0.12);
  opacity: 0.9;
  animation: heroTimelineSweep 2.8s ease-in-out infinite;
}

.hero-timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--timeline-gap, 42px);
  width: 100%;
}

.hero-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  min-height: var(--timeline-item-height, 74px);
  opacity: 0.52;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  will-change: transform, opacity;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.hero-timeline-item:focus-visible {
  outline: none;
}

.hero-timeline-item:hover,
.hero-timeline-item:focus-visible {
  opacity: 0.84;
}

.hero-timeline-item:hover .hero-timeline-dot,
.hero-timeline-item:focus-visible .hero-timeline-dot {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px rgba(200, 255, 0, 0.06),
    0 0 20px rgba(200, 255, 0, 0.16);
}

.hero-timeline-item::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 12px;
  width: 14px;
  height: 1px;
  background: linear-gradient(to right, rgba(200, 255, 0, 0.4), rgba(200, 255, 0, 0));
  opacity: 0.42;
  transition: opacity 0.32s ease, width 0.32s ease;
}

.hero-timeline-dot {
  position: relative;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  margin-left: 14px;
  border: 1px solid rgba(200, 255, 0, 0.55);
  border-radius: 50%;
  background: rgba(9, 12, 9, 0.92);
  box-shadow:
    0 0 0 4px rgba(200, 255, 0, 0.045),
    0 0 16px rgba(200, 255, 0, 0.08);
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.hero-timeline-item.is-active {
  opacity: 1;
}

.hero-timeline-item.is-active::before {
  width: 22px;
  opacity: 0.92;
}

.hero-timeline-item.is-active .hero-timeline-dot {
  border-color: rgba(200, 255, 0, 0.88);
  box-shadow:
    0 0 0 6px rgba(200, 255, 0, 0.07),
    0 0 20px rgba(200, 255, 0, 0.18);
  transform: scale(1.08);
}

.hero-timeline-item.is-active .hero-timeline-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.92);
}

.hero-timeline-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hero-timeline-label {
  font-size: var(--timeline-label-size, 9px);
  letter-spacing: 0.26em;
  color: rgba(200, 255, 0, 0.54);
  text-transform: uppercase;
  transition: color 0.32s ease;
}

.hero-timeline-title {
  font-size: var(--timeline-title-size, 13px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: rgba(244, 250, 232, 0.52);
  text-transform: uppercase;
  transition: color 0.32s ease;
}

.hero-timeline-item.is-active .hero-timeline-label {
  color: rgba(200, 255, 0, 0.86);
}

.hero-timeline-item.is-active .hero-timeline-title {
  color: rgba(244, 250, 232, 0.94);
}

@keyframes heroTimelineSweep {
  0% {
    filter: saturate(0.92) brightness(0.96);
  }
  50% {
    filter: saturate(1.14) brightness(1.06);
  }
  100% {
    filter: saturate(0.92) brightness(0.96);
  }
}

.hero-aside-label {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--luxury);
  text-transform: uppercase;
}

.hero-aside p {
  max-width: 28ch;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(236, 244, 218, 0.56);
  will-change: transform, opacity;
}

.hero-aside-tags,
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-aside-tags {
  margin-top: 14px;
  max-width: 240px;
}

.hero-aside-tags span,
.hero-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(200, 255, 0, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    linear-gradient(to top, rgba(200, 255, 0, 0.045), rgba(200, 255, 0, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(228, 239, 191, 0.72);
  text-transform: uppercase;
  will-change: transform, opacity;
}

#hero-text {
  padding: 0 24px;
}

#hero-text h1 {
  font-size: clamp(43px, 8.8vw, 123px);
  line-height: 0.96;
  letter-spacing: 0.05em;
  font-weight: 200;
  text-transform: uppercase;
}

#hero-text h1 strong {
  display: inline-block;
  margin-top: 0.08em;
  font-size: 1em;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.hero-kicker {
  margin-bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--luxury-soft);
  text-transform: uppercase;
}

.hero-capabilities {
  justify-content: center;
  margin-top: 18px;
  gap: 14px;
}

.hero-manifesto {
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 12px;
  line-height: 1.72;
  color: rgba(238, 245, 224, 0.62);
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(200, 255, 0, 0.04);
}

#hero-footer-note {
  position: fixed;
  left: 44px;
  right: 44px;
  bottom: 98px;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 14px;
  border-top: none;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}

#hero-footer-note span {
  max-width: 32ch;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.14em;
  color: rgba(226, 238, 196, 0.5);
  text-transform: uppercase;
  will-change: transform, opacity;
}

.stage-editorial {
  position: fixed;
  left: 44px;
  right: 44px;
  z-index: 7;
  display: grid;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.stage-editorial::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--luxury-line), transparent);
  opacity: 0.72;
}

#stage-two-editorial::before {
  display: none;
}

#stage-three-editorial::before {
  display: none;
}

#stage-three-editorial::before,
#stage-three-editorial::after {
  content: '';
  position: absolute;
  top: 24%;
  width: 104px;
  height: 184px;
  display: block;
  pointer-events: none;
  opacity: 0.82;
  background:
    radial-gradient(circle at 16px 18px, rgba(200, 255, 0, 0.92) 0 1.15px, transparent 1.8px),
    radial-gradient(circle at 52px 136px, rgba(244, 250, 236, 0.2) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80px 50px, rgba(200, 255, 0, 0.18) 0 1px, transparent 1.5px),
    linear-gradient(90deg, var(--luxury-line), var(--luxury-line)) 0 22px / 62px 1px no-repeat,
    linear-gradient(90deg, var(--ornament-soft), var(--ornament-soft)) 20px 90px / 48px 1px no-repeat,
    linear-gradient(var(--luxury-line), var(--luxury-line)) 20px 22px / 1px 116px no-repeat,
    linear-gradient(var(--ornament-soft), var(--ornament-soft)) 68px 50px / 1px 94px no-repeat,
    linear-gradient(var(--line), var(--line)) 86px 24px / 1px 28px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)) 22px 138px / 52px 1px no-repeat;
  filter: drop-shadow(0 0 16px rgba(200, 255, 0, 0.06));
}

#stage-three-editorial::before {
  left: 44px;
}

#stage-three-editorial::after {
  right: 44px;
  transform: scaleX(-1);
}

#stage-two-editorial {
  top: 16vh;
  grid-template-columns: minmax(380px, 560px) 240px;
  justify-content: space-between;
  column-gap: min(6vw, 88px);
  align-items: start;
}

#stage-three-editorial {
  position: fixed;
  top: clamp(56px, 8vh, 82px);
  bottom: 20px;
  left: 0;
  right: 0;
  min-height: calc(100vh - clamp(56px, 8vh, 82px) - 20px);
  justify-items: center;
  align-items: start;
  padding: 0;
}

.stage-panel,
.stage-card {
  position: relative;
  padding: 20px 0 0;
}

.stage-panel::before,
.stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, var(--luxury-line), transparent);
}

.stage-panel::after,
.stage-card::after {
  content: '';
  position: absolute;
  top: -18px;
  width: 90px;
  height: 110px;
  pointer-events: none;
  opacity: 0.8;
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 255, 0, 0.86) 0 1.15px, transparent 1.8px),
    radial-gradient(circle at 58px 74px, rgba(244, 250, 236, 0.22) 0 1px, transparent 1.5px),
    linear-gradient(var(--luxury-line), var(--luxury-line)) 24px 10px / 1px 54px no-repeat,
    linear-gradient(90deg, var(--luxury-line), var(--luxury-line)) 10px 24px / 52px 1px no-repeat,
    linear-gradient(var(--ornament-soft), var(--ornament-soft)) 58px 24px / 1px 60px no-repeat,
    linear-gradient(90deg, var(--ornament-soft), var(--ornament-soft)) 24px 84px / 34px 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)) 26px 58px / 44px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 74px 42px / 1px 18px no-repeat;
  filter: drop-shadow(0 0 14px rgba(200, 255, 0, 0.06));
}

.stage-panel-left::after {
  left: -34px;
}

.stage-panel-right::after {
  right: -34px;
  transform: scaleX(-1);
}

.stage-panel-right::before {
  display: none;
}

.stage-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--luxury-soft);
  text-transform: uppercase;
}

.stage-panel h2,
.stage-card h3 {
  margin: 0;
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(247, 252, 236, 0.94);
}

.stage-panel h2 {
  max-width: 15ch;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.06;
}

.stage-card h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.14;
}

.stage-panel p,
.stage-card p {
  margin: 14px 0 0;
  max-width: 40ch;
  font-size: 13px;
  line-height: 1.82;
  color: rgba(233, 241, 214, 0.64);
}

.stage-panel-left p {
  max-width: 50ch;
}

.stage-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 420px;
  margin-top: 22px;
}

.stage-stat-row div,
.stage-mini,
.stage-card {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    linear-gradient(to top, rgba(200, 255, 0, 0.03), rgba(200, 255, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.stage-stat-row div {
  padding: 14px 16px 16px;
  will-change: transform, opacity;
}

.stage-stat-row span,
.stage-mini span {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(223, 236, 186, 0.6);
  text-transform: uppercase;
}

.stage-stat-row strong,
.stage-mini strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(244, 250, 232, 0.84);
}

.stage-stack {
  display: grid;
  gap: 12px;
  margin-top: 0;
  width: 240px;
  justify-self: end;
}

.stage-mini {
  width: 100%;
  max-width: 240px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 14px 16px 16px;
  will-change: transform, opacity;
}

.stage-mini-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.stage-mini-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(216, 232, 171, 0.78);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-mini-copy {
  min-width: 0;
}

.stage-mini-copy strong {
  display: block;
}

.stage-panel-right {
  width: 240px;
  justify-self: end;
  text-align: left;
}

.stage-panel-left,
.stage-panel-right {
  will-change: transform, opacity;
}

.stage-contact-shell {
  position: relative;
  width: min(820px, calc(100vw - 88px));
  min-height: 100%;
  max-height: calc(100vh - clamp(56px, 8vh, 82px) - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(92px, 13vh, 148px) 32px 32px;
  overflow: visible;
}

.stage-contact-shell::before {
  display: none;
}

.stage-contact-shell::after {
  display: none;
}

.stage-contact-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: rgb(200, 255, 0);
  text-transform: uppercase;
}

.stage-contact-title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 8.4ch;
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(56px, 8.1vw, 102px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: rgb(247, 250, 240);
  text-transform: uppercase;
}

.stage-contact-title-line {
  display: block;
  will-change: transform, opacity;
}

.stage-contact-title em,
.stage-contact-title-accent {
  font-style: normal;
  font-weight: 600;
  color: rgb(200, 255, 0);
}

.stage-contact-copy {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgb(230, 238, 210);
  will-change: transform, opacity;
}

.stage-contact-mail {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200, 255, 0, 0.24);
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgb(248, 251, 242);
  text-decoration: none;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  will-change: transform, opacity;
}

.stage-contact-mail:hover {
  color: rgb(222, 248, 160);
  border-color: rgba(200, 255, 0, 0.46);
  transform: translateY(-1px);
}

.stage-contact-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 22px;
}

.stage-contact-links span,
.stage-contact-footer span {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.stage-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(200, 255, 0, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    linear-gradient(to top, rgba(200, 255, 0, 0.04), rgba(200, 255, 0, 0.01));
  color: rgb(221, 235, 184);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  will-change: transform, opacity;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
}

a.stage-contact-link:hover {
  border-color: rgba(200, 255, 0, 0.5);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(to top, rgba(200, 255, 0, 0.1), rgba(200, 255, 0, 0.04));
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 24px rgba(200, 255, 0, 0.06);
}

.stage-contact-link-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stage-contact-link-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-contact-link-label {
  color: inherit;
}

#global-bottom-note {
  position: fixed;
  left: 44px;
  right: 44px;
  bottom: 16px;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#global-bottom-note span {
  color: rgb(208, 221, 174);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.lbl-card {
  display: grid;
  align-content: end;
  justify-items: stretch;
  gap: 6px;
  transition: background 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, 0.96) 0%,
    rgba(6, 6, 6, 0.82) 30%,
    rgba(6, 6, 6, 0.42) 60%,
    rgba(8, 8, 8, 0) 100%
  );
}

.lbl-meta {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.lbl .lbl-index,
.lbl .lbl-year,
.lbl .lbl-category {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lbl .lbl-index {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.26s ease, color 0.26s ease, background 0.26s ease, transform 0.26s ease;
}

.lbl .lbl-category {
  color: rgba(245, 248, 239, 0.58);
  white-space: nowrap;
}

.lbl .lbl-year {
  color: rgba(200, 255, 0, 0.9);
  transition: color 0.26s ease, transform 0.26s ease;
}

.lbl-foot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  transition: transform 0.26s ease;
}

.lbl h3 {
  max-width: calc(100% - 34px);
  font-size: clamp(16px, 1.26vw, 22px);
  line-height: 0.98;
  text-wrap: pretty;
  transition: transform 0.26s ease, color 0.26s ease, text-shadow 0.26s ease;
}

.lbl .click-hint {
  flex: 0 0 auto;
}

.lbl.is-hovered .lbl-card {
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, 0.965) 0%,
    rgba(6, 6, 6, 0.86) 34%,
    rgba(14, 18, 8, 0.42) 60%,
    rgba(8, 8, 8, 0) 100%
  );
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lbl.is-hovered .lbl-meta {
  transform: translateY(-1px);
}

.lbl.is-hovered .lbl-index {
  border-color: rgba(200, 255, 0, 0.22);
  color: rgba(244, 249, 234, 0.82);
  background: rgba(200, 255, 0, 0.05);
  transform: translateX(1px);
}

.lbl.is-hovered h3 {
  color: rgba(248, 252, 240, 1);
  transform: translateX(1px);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.04);
}

.lbl.is-hovered .lbl-foot {
  transform: translateX(1px);
}

.lbl.is-hovered .lbl-year {
  color: rgba(210, 255, 44, 1);
}

.lbl.is-hovered .click-hint {
  transform: translateX(3px);
  border-color: rgba(200, 255, 0, 0.28);
  color: rgba(210, 255, 44, 0.96);
  background: rgba(200, 255, 0, 0.08);
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.08);
}

.modal-intro {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(239, 246, 227, 0.8);
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.01em;
}

.modal-title {
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(247, 252, 236, 0.94);
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: 24px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(200, 255, 0, 0.08);
}

.modal-meta-item {
  min-width: 128px;
  gap: 8px;
}

.modal-meta-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(228, 240, 192, 0.42);
  text-transform: uppercase;
}

.modal-meta-value {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(247, 252, 236, 0.92);
}

.modal-meta-value-year {
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
}

.modal-copy-block {
  max-width: var(--modal-max-width, 960px);
  margin-bottom: 38px;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 34px;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--luxury-line);
}

.modal-side-stack {
  display: grid;
  gap: 24px;
  padding-left: 28px;
  border-left: 1px solid var(--luxury-line);
}

.modal-section {
  width: min(100%, var(--modal-max-width, 1920px));
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 255, 0, 0.1);
}

.modal-section:first-child {
  padding-top: 0;
  border-top: none;
}

.modal-section-title {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--luxury-soft);
  text-transform: uppercase;
}

.modal-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.modal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--luxury-line);
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 0 24px rgba(200, 255, 0, 0.03);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(228, 240, 192, 0.68);
  text-transform: uppercase;
}

.modal-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.modal-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(243, 249, 232, 0.72);
}

.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.5);
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.12);
}

.modal-note {
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(229, 239, 204, 0.64);
  font-family: "MiSans", "MiSans VF", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.008em;
}

.modal-gallery-title {
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--luxury-soft);
  text-transform: uppercase;
}

.modal-intro,
.modal-description {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.86;
  font-weight: 300;
  letter-spacing: 0;
}

.modal-intro {
  margin-bottom: 18px;
  color: rgba(240, 245, 231, 0.86);
}

.modal-description {
  margin-bottom: 0;
  color: rgba(236, 241, 228, 0.74);
}

.modal-detail-notes {
  display: grid;
  gap: 20px;
  width: min(100%, var(--modal-max-width, 960px));
  margin: 0 0 36px;
}

.modal-detail-note {
  display: grid;
  gap: 12px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(200, 255, 0, 0.08);
}

.modal-detail-note-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(246, 249, 240, 0.92);
}

.modal-detail-note-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  font-weight: 300;
  color: rgba(236, 241, 228, 0.74);
}

.modal-section {
  margin-top: 8px;
  padding-top: 28px;
}

.modal-gallery {
  width: 100%;
  gap: 28px;
  position: relative;
}

.modal-gallery-rail {
  display: grid;
  gap: 28px;
}

.modal-gallery-item {
  width: min(100%, var(--modal-max-width, 1920px));
  max-width: var(--modal-max-width, 1920px);
  margin: 0 auto;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(22, 25, 24, 0.96), rgba(13, 16, 16, 0.94)),
    radial-gradient(circle at 18% 20%, rgba(200, 255, 0, 0.09), transparent 30%);
  box-shadow: none;
  min-height: min(42vw, 420px);
  overflow: hidden;
  position: relative;
}

.modal-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 44px 100%;
  opacity: 0.2;
  pointer-events: none;
}

.modal-gallery-item.is-ready {
  min-height: 0;
}

.modal-gallery-item img,
.modal-gallery-item video {
  width: min(100%, var(--modal-max-width, 1920px));
  max-width: var(--modal-max-width, 1920px);
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-gallery-item.is-ready img,
.modal-gallery-item.is-ready video {
  opacity: 1;
}

.modal-gallery-item--kugou-composite {
  position: relative;
  overflow: hidden;
}

.modal-gallery-item--layered {
  position: relative;
  overflow: hidden;
}

.modal-gallery-item--kugou-composite > img {
  width: 100%;
}

.modal-gallery-item--layered > img,
.modal-gallery-item--layered > video:first-child {
  width: 100%;
}

.modal-gallery-child {
  position: absolute;
  z-index: 2;
  display: block;
  margin: 0;
  background: transparent;
}

.modal-gallery-item.is-ready .modal-gallery-child {
  opacity: 1;
}

.modal-media-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(18, 21, 20, 0.94), rgba(11, 14, 14, 0.9)),
    radial-gradient(circle at 50% 42%, rgba(200, 255, 0, 0.08), transparent 26%);
  transition: opacity 0.32s ease, visibility 0.32s ease;
  pointer-events: none;
}

.modal-gallery-item.is-ready .modal-media-loader {
  opacity: 0;
  visibility: hidden;
}

.modal-media-loader-core {
  width: min(168px, 42vw);
  display: grid;
  gap: 10px;
  justify-items: center;
}

.modal-media-loader-cube {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  perspective: 240px;
  filter: drop-shadow(0 0 14px rgba(200, 255, 0, 0.08));
}

.modal-media-loader-rig {
  position: relative;
  width: 18px;
  height: 18px;
  transform-style: preserve-3d;
  animation: modalMediaCubeRotate 1.8s linear infinite;
}

.modal-media-loader-face {
  position: absolute;
  inset: 0;
  border: 1.1px solid rgba(242, 245, 238, 0.78);
  background: transparent;
  box-sizing: border-box;
  backface-visibility: hidden;
}

.modal-media-loader-face--front {
  border-color: rgba(200, 255, 0, 0.9);
  transform: translateZ(9px);
}

.modal-media-loader-face--back {
  border-color: rgba(242, 245, 238, 0.18);
  transform: rotateY(180deg) translateZ(9px);
}

.modal-media-loader-face--right {
  transform: rotateY(90deg) translateZ(9px);
}

.modal-media-loader-face--left {
  border-color: rgba(242, 245, 238, 0.22);
  transform: rotateY(-90deg) translateZ(9px);
}

.modal-media-loader-face--top {
  transform: rotateX(90deg) translateZ(9px);
}

.modal-media-loader-face--bottom {
  border-color: rgba(242, 245, 238, 0.16);
  transform: rotateX(-90deg) translateZ(9px);
}

.modal-media-loader-progress {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.modal-media-loader-progress span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(168, 226, 0, 0.72), rgba(200, 255, 0, 1));
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.28);
  animation: modalMediaLoaderSweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.modal-gallery-item--kugou-composite .modal-kugou-video {
  position: absolute;
  left: 415px;
  top: auto;
  bottom: 438px;
  z-index: 2;
  width: min(390px, 24vw);
  max-width: 390px;
  height: auto;
  margin: 0;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  pointer-events: auto;
}

@keyframes modalGallerySweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes modalMediaCubeRotate {
  0% { transform: rotateX(-28deg) rotateY(34deg) rotateZ(0deg); }
  100% { transform: rotateX(-28deg) rotateY(394deg) rotateZ(0deg); }
}

@keyframes modalMediaLoaderSweep {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(320%); }
}

.modal-like-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, var(--modal-max-width, 1920px));
  max-width: var(--modal-max-width, 1920px);
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 255, 0, 0.06);
}

.modal-like-button {
  position: relative;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(200, 255, 0, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    rgba(15, 16, 12, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.2);
  color: rgba(242, 246, 234, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
  overflow: hidden;
}

.modal-like-button:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(200, 255, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.26),
    0 0 0 8px rgba(200, 255, 0, 0.025);
}

.modal-like-button:disabled {
  cursor: default;
}

.modal-like-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.22) 0%, rgba(200, 255, 0, 0.06) 44%, transparent 68%);
  transform: scale(0.4);
}

.modal-like-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-like-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-like-icon-line {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.modal-like-icon-fill {
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.modal-like-button.is-liked {
  color: rgba(210, 255, 44, 0.98);
  border-color: rgba(200, 255, 0, 0.3);
  background:
    radial-gradient(circle at 50% 35%, rgba(210, 255, 44, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(18, 20, 10, 0.84);
}

.modal-like-button.is-liked .modal-like-icon-line {
  opacity: 0;
  transform: scale(0.7);
}

.modal-like-button.is-liked .modal-like-icon-fill {
  opacity: 1;
  transform: scale(1);
}

.modal-like-button.is-burst {
  animation: modalLikePulse 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-like-button.is-burst .modal-like-ripple {
  animation: modalLikeRipple 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-like-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.modal-like-metric {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
}

.modal-like-count {
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(247, 252, 236, 0.94);
}

.modal-like-unit {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 240, 220, 0.36);
}

@keyframes modalLikePulse {
  0% { transform: scale(1); }
  38% { transform: scale(0.9); }
  72% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes modalLikeRipple {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  24% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 980px) {
  .hero-aside::after,
  .stage-panel::after,
  #stage-three-editorial::before,
  #stage-three-editorial::after {
    opacity: 0.56;
  }

  #hero-aside-left::after,
  .stage-panel-left::after,
  #stage-three-editorial::before {
    left: -18px;
  }

  #hero-aside-right::after,
  .stage-panel-right::after,
  #stage-three-editorial::after {
    right: -18px;
  }

  nav {
    padding: 20px 22px;
  }

  nav::after {
    display: none;
  }

  .hint,
  .nav-year,
  #hero-aside-right {
    display: none;
  }

  #hero-aside-left {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 170px;
    max-width: none;
  }

  .hero-aside p {
    max-width: 36ch;
  }

  #hero-text {
    bottom: 14vh;
  }

  #hero-footer-note {
    left: 22px;
    right: 22px;
    bottom: 92px;
    flex-direction: column;
    gap: 8px;
  }

  #hero-footer-note span {
    max-width: none;
  }

  .stage-editorial {
    left: 22px;
    right: 22px;
  }

  #stage-two-editorial {
    top: 14vh;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stage-panel-right {
    width: 100%;
    justify-self: start;
  }

  #stage-three-editorial {
    top: clamp(48px, 7vh, 72px);
    bottom: 18px;
    min-height: calc(100vh - clamp(48px, 7vh, 72px) - 18px);
  }

  .stage-stack {
    gap: 10px;
  }

  .stage-mini {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .stage-mini-icon {
    width: 28px;
    height: 28px;
  }

  .stage-contact-shell {
    width: 100%;
    min-height: 100%;
    max-height: calc(100vh - clamp(48px, 7vh, 72px) - 18px);
    padding: clamp(72px, 11vh, 112px) 12px 20px;
  }

  .stage-contact-shell::after {
    inset: 12% 12%;
  }

  .lbl-meta,
  .lbl-foot,
  .lbl h3 {
    max-width: 100%;
  }

  .lbl h3 {
    font-size: clamp(15px, 2.1vw, 19px);
  }

  #global-bottom-note {
    left: 22px;
    right: 22px;
    bottom: 16px;
  }

  .modal-body {
    padding: 28px 24px 32px;
    margin-top: 0;
  }

  .modal-copy-block {
    margin-bottom: 30px;
  }

  .modal-intro,
  .modal-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .modal-meta {
    flex-wrap: wrap;
    gap: 20px;
  }

  .modal-like-zone {
    gap: 16px;
    margin-top: 30px;
    padding-top: 22px;
  }

  .modal-like-button {
    width: 66px;
    height: 66px;
  }

  .modal-like-copy {
    justify-items: center;
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .modal-side-stack {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 640px) {
  .hero-aside::after,
  .stage-panel::after,
  #stage-three-editorial::before,
  #stage-three-editorial::after {
    display: none;
  }

  .logo {
    font-size: 11px;
  }

  .nav-role {
    font-size: 9px;
  }

  #hero-aside-left {
    display: none;
  }

  .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  #hero-text h1 {
    font-size: clamp(34px, 10vw, 54px);
  }

  #hero-text p {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero-capabilities {
    gap: 8px;
  }

  .hero-aside-tags span,
  .hero-capabilities span,
  .modal-chip {
    min-height: 26px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero-manifesto {
    font-size: 12px;
  }

  #hero-footer-note {
    bottom: 84px;
  }

  .stage-editorial {
    top: auto !important;
    bottom: 92px;
    gap: 14px;
  }

  .stage-editorial::before {
    top: -12px;
  }

  .stage-panel h2 {
    max-width: none;
    font-size: clamp(22px, 7vw, 30px);
  }

  .stage-panel p,
  .stage-card p {
    max-width: none;
    font-size: 12px;
    line-height: 1.72;
  }

  .stage-stat-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .stage-mini {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .stage-mini-icon {
    width: 24px;
    height: 24px;
  }

  .stage-mini-icon svg {
    width: 15px;
    height: 15px;
  }

  .lbl-card {
    gap: 5px;
    padding: 12px 12px 14px;
  }

  .lbl-meta {
    margin-bottom: 2px;
  }

  .lbl .lbl-category {
    display: none;
  }

  .lbl h3 {
    font-size: 14px;
    line-height: 1.02;
  }

  .lbl-foot {
    margin-top: 4px;
  }

  .stage-contact-shell {
    width: calc(100vw - 40px);
    min-height: 100%;
    max-height: calc(100vh - 92px - 78px);
    padding: 54px 10px 18px;
  }

  .stage-contact-shell::before,
  .stage-contact-shell::after {
    display: none;
  }

  .stage-contact-title {
    max-width: 9ch;
    font-size: clamp(46px, 16vw, 76px);
  }

  .stage-contact-copy {
    font-size: 13px;
    line-height: 1.76;
  }

  .stage-contact-mail {
    margin-top: 22px;
    font-size: clamp(22px, 7.5vw, 30px);
  }

  .stage-contact-links {
    gap: 14px;
    margin-top: 26px;
  }

  #global-bottom-note {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    left: 20px;
    right: 20px;
    bottom: 16px;
    text-align: center;
  }

  #back-to-top {
    right: 20px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }
}

/* ── 媒体加载进度 Toast ── */
#modal-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  width: 260px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}

#modal-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.modal-toast-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.modal-toast-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(239, 244, 226, 0.6);
}

.modal-toast-text strong {
  color: var(--accent);
  font-weight: 700;
}

.modal-toast-count {
  font-size: 11px;
  font-weight: 600;
  color: rgba(239, 244, 226, 0.5);
  letter-spacing: 0.04em;
}

.modal-toast-count strong {
  color: var(--accent);
  font-weight: 700;
}

.modal-toast-bar {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.modal-toast-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.6), rgba(200, 255, 0, 0.95));
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.15);
  transition: width 0.25s ease;
}
