:root {
  color-scheme: light;
  --bg: #f5f5f2;
  --paper: #ffffff;
  --ink: #111313;
  --muted: #73736d;
  --soft: #e8e6df;
  --line: rgba(16, 18, 18, 0.1);
  --dark: #080a0b;
  --dark-2: #121515;
  --acid: #bfff21;
  --cyan: #70d7e8;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --shadow-soft: 0 26px 80px rgba(12, 16, 18, 0.12);
  --shadow-deep: 0 44px 120px rgba(0, 0, 0, 0.28);
  --font-sans: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", sans-serif;
  --font-latin: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(191, 255, 33, 0.11), transparent 28vw),
    radial-gradient(circle at 14% 18%, rgba(112, 215, 232, 0.09), transparent 30vw),
    linear-gradient(180deg, #f8f8f4 0%, #efeee8 54%, #e7e6df 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  right: clamp(16px, 4vw, 56px);
  left: clamp(16px, 4vw, 56px);
  z-index: 20;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 44px rgba(12, 16, 18, 0.08);
  backdrop-filter: blur(28px) saturate(1.2);
}

.brand {
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(17, 19, 19, 0.62);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

main {
  min-height: 100vh;
}

.work-space {
  max-width: 1440px;
  margin: 0 auto;
  padding: 84px clamp(18px, 4vw, 56px) 12px;
}

.work-space__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(390px, 40vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: var(--dark);
  box-shadow: var(--shadow-deep);
}

.showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.78);
  transform: scale(1.04);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

.work-space__inner::before,
.work-space__inner::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.work-space__inner::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.9) 0 31%, rgba(4, 6, 7, 0.44) 58%, rgba(4, 6, 7, 0.72)),
    linear-gradient(180deg, rgba(4, 6, 7, 0.12), rgba(4, 6, 7, 0.28)),
    radial-gradient(circle at 70% 45%, rgba(191, 255, 33, 0.1), transparent 28vw);
}

.work-space__inner::after {
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.showcase-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.38;
}

.showcase-track {
  position: absolute;
  left: -10%;
  width: 120%;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.showcase-track--top {
  top: 28%;
  transform: rotate(-3deg);
  animation: trackSlide 8s linear infinite;
}

.showcase-track--bottom {
  bottom: 16%;
  transform: rotate(2.5deg);
  animation: trackSlideReverse 10s linear infinite;
}

@keyframes trackSlide {
  from {
    translate: 0 0;
  }

  to {
    translate: -8% 0;
  }
}

@keyframes trackSlideReverse {
  from {
    translate: -8% 0;
  }

  to {
    translate: 0 0;
  }
}

.work-space__copy {
  position: absolute;
  top: 50%;
  left: clamp(34px, 8vw, 118px);
  z-index: 3;
  width: min(500px, 46vw);
  transform: translateY(-45%);
}

.eyebrow {
  margin: 0;
  color: rgba(17, 19, 19, 0.42);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-space__copy .eyebrow,
.case-meta,
.section-bridge span {
  color: var(--acid);
}

.showcase-title {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.showcase-title__latin {
  color: #f8f4e9;
  font-family: var(--font-latin);
  font-size: clamp(78px, 9.4vw, 142px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.showcase-title__zh {
  color: #f8f4e9;
  font-size: clamp(32px, 3.9vw, 58px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.showcase-title__zh::after {
  display: inline-block;
  width: 0.8em;
  height: 0.1em;
  margin-left: 0.28em;
  content: "";
  vertical-align: 0.18em;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 0 28px rgba(191, 255, 33, 0.48);
}

.work-space__copy .showcase-lead {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(248, 244, 233, 0.72);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 520;
  line-height: 1.66;
}

.model-note {
  position: absolute;
  right: auto;
  left: clamp(70px, 7vw, 136px);
  top: auto;
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 4;
  width: min(720px, 43vw);
  margin: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(248, 244, 233, 0.84);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.6;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
  backdrop-filter: none;
  transform: none;
}

.model-note::before {
  position: absolute;
  top: 0.25em;
  bottom: 0.25em;
  left: 0;
  width: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--acid), var(--cyan));
  box-shadow: 0 0 18px rgba(191, 255, 33, 0.3);
}

.showcase-reel {
  position: absolute;
  left: clamp(360px, 30vw, 620px);
  right: clamp(-460px, -16vw, -220px);
  bottom: 9%;
  z-index: 2;
  width: auto;
  overflow: hidden;
  padding: 42px 0;
  transform: none;
}

.showcase-reel__track {
  display: flex;
  width: max-content;
  animation: reelMarquee 20s linear infinite;
  will-change: transform;
}

.showcase-reel__set {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  padding-right: clamp(12px, 1.4vw, 20px);
}

@keyframes reelMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.showcase-reel figure {
  position: relative;
  flex: 0 0 auto;
  width: clamp(188px, 15vw, 286px);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.showcase-reel figure:hover {
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.showcase-reel__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

.showcase-reel figure:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.showcase-reel figure:nth-child(2) {
  transform: none;
}

.showcase-reel figure:nth-child(3) {
  transform: none;
}

.showcase-reel figure:nth-child(4) {
  transform: none;
}

.showcase-reel figure:nth-child(5) {
  transform: none;
}

.showcase-reel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-reel figcaption {
  display: none;
}

.section-bridge {
  padding: clamp(22px, 3vw, 40px) clamp(18px, 5vw, 84px);
}

.section-bridge__inner {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 2.8vw, 38px);
}

.section-bridge span {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-bridge p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 520;
  line-height: 1.7;
  text-align: right;
}

.cases.section {
  position: relative;
  display: grid;
  width: calc(100% - clamp(36px, 8vw, 112px));
  max-width: 1328px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.2vw, 30px);
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 74% 4%, rgba(191, 255, 33, 0.17), transparent 26vw),
    radial-gradient(circle at 4% 90%, rgba(112, 215, 232, 0.11), transparent 24vw),
    linear-gradient(145deg, #050707 0%, #111615 48%, #070909 100%);
  box-shadow: var(--shadow-deep);
  color: #f8f4e9;
}

.cases .section-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(280px, 1fr);
  margin: 0;
  min-height: auto;
  align-items: end;
  gap: 10px clamp(18px, 3vw, 44px);
  padding: 0 0 clamp(20px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.cases .section-head::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(22vw, 220px);
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid), rgba(112, 215, 232, 0.76), transparent);
  box-shadow: 0 0 24px rgba(191, 255, 33, 0.28);
}

.cases .section-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
  color: var(--acid);
}

.cases-title {
  grid-column: 1;
  grid-row: 2;
  margin: 8px 0 0;
  color: #f8f4e9;
  font-family: var(--font-sans);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 820;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.cases-intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
  max-width: 420px;
  margin: 0 0 4px;
  color: rgba(248, 244, 233, 0.62);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 520;
  line-height: 1.7;
  text-align: right;
}

.case-grid {
  display: grid;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-height: clamp(430px, 38vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.case-media {
  position: relative;
  min-height: clamp(230px, 21vw, 300px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.case-media::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  min-width: 54px;
  height: 42px;
  place-items: center;
  content: "View";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(18px);
}

.case-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.case-card:hover .case-cover {
  transform: scale(1.035);
}

.case-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(8, 10, 11, 0.42);
  padding: 8px 12px;
  color: #fff;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(18px);
}

.case-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(22px, 3vw, 34px);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-copy h3 {
  margin: 14px 0 0;
  color: #f8f4e9;
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.case-copy p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(248, 244, 233, 0.62);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 520;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-points {
  display: none;
}

.case-link {
  margin-top: auto;
  padding-top: 22px;
  color: #f8f4e9;
  font-size: 15px;
  font-weight: 760;
}

.case-link::after {
  margin-left: 8px;
  content: "→";
}

.case-empty {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 54px;
  color: rgba(248, 244, 233, 0.62);
}

.contact {
  margin: 0 clamp(18px, 5vw, 84px) clamp(28px, 4vw, 56px);
  padding: clamp(54px, 7vw, 100px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 76% 18%, rgba(112, 215, 232, 0.16), transparent 28vw),
    radial-gradient(circle at 18% 92%, rgba(191, 255, 33, 0.14), transparent 26vw),
    #111414;
  color: #fff;
  box-shadow: var(--shadow-deep);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.44);
}

.contact h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 58px);
}

.contact-link,
.contact-copy {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 20px;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 720;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.contact-copy.is-copied {
  border-color: rgba(191, 255, 33, 0.6);
  color: var(--acid);
}

.contact-note {
  max-width: 620px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.case-dialog {
  width: min(1120px, calc(100vw - 34px));
  border: 0;
  border-radius: 28px;
  background: #fff;
  padding: 0;
  color: var(--ink);
  box-shadow: var(--shadow-deep);
}

.case-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.dialog-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.dialog-cover,
.dialog-media video {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
}

.dialog-copy {
  padding: 34px;
}

.dialog-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 56px);
}

.dialog-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.dialog-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.dialog-copy div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.dialog-copy dt {
  color: var(--muted);
  font-size: 12px;
}

.dialog-copy dd {
  margin: 8px 0 0;
  line-height: 1.6;
}

.dialog-play {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 84px) 42px;
  color: var(--muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-bg,
  .showcase-track--top,
  .showcase-track--bottom,
  .showcase-reel,
  .showcase-reel__track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .work-space {
    padding-top: 84px;
  }

  .work-space__inner {
    min-height: 620px;
  }

  .work-space__copy {
    top: 28px;
    left: 26px;
    width: calc(100% - 52px);
    transform: none;
  }

  .showcase-reel {
    right: -22vw;
    bottom: 12%;
    width: 88vw;
  }

  .section-bridge__inner {
    display: grid;
    gap: 12px;
  }

  .cases.section {
    grid-template-columns: 1fr;
  }

  .cases .section-head {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .cases-intro {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    max-width: 620px;
    margin: 0;
    text-align: left;
  }

  .section-bridge p {
    text-align: left;
  }

  .cases .section-head::after {
    width: min(42vw, 240px);
  }

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

  .case-card {
    min-height: auto;
  }

  .case-media {
    min-height: 340px;
  }

  .dialog-copy dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    min-height: 52px;
    padding: 0 16px;
  }

  .brand {
    font-size: 13px;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .work-space {
    padding: 72px 12px 16px;
  }

  .work-space__inner {
    min-height: 520px;
    border-radius: 24px;
  }

  .showcase-title__latin {
    font-size: clamp(58px, 22vw, 86px);
  }

  .showcase-title__zh {
    font-size: clamp(28px, 9vw, 40px);
  }

  .work-space__copy .showcase-lead {
    font-size: 14px;
  }

  .showcase-reel {
    right: -68vw;
    bottom: 15%;
    width: 142vw;
  }

  .showcase-reel figure {
    width: 170px;
    border-radius: 14px;
  }

  .section-bridge {
    padding: 18px;
  }

  .cases.section {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding: 16px;
    border-radius: 24px;
  }

  .cases-title {
    font-size: 42px;
  }

  .cases .section-head {
    padding: 22px;
    border-radius: 20px;
  }

  .cases-intro {
    font-size: 14px;
  }

  .case-media {
    min-height: 260px;
  }

  .case-copy {
    padding: 24px 20px 28px;
  }

  .case-copy h3 {
    font-size: 32px;
  }

  .contact {
    margin: 0 12px 24px;
    padding: 38px 22px;
    border-radius: 24px;
  }

  .contact-methods {
    display: grid;
  }

  .site-footer {
    padding: 24px 18px 34px;
  }
}

/* v9 cinema gallery direction */
body {
  background:
    radial-gradient(circle at 74% 12%, rgba(191, 255, 33, 0.12), transparent 30vw),
    radial-gradient(circle at 12% 24%, rgba(112, 215, 232, 0.08), transparent 28vw),
    linear-gradient(180deg, #f2f2ed 0 9%, #060808 9% 100%);
}

.site-header {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(245, 245, 239, 0.78);
}

.work-space {
  max-width: none;
  padding: 86px clamp(14px, 3.4vw, 48px) 18px;
}

.work-space__inner {
  min-height: clamp(520px, 54vw, 760px);
  border-radius: 34px;
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.showcase-bg {
  filter: saturate(1.02) contrast(1.15) brightness(0.6);
  transform: scale(1.08);
}

.work-space__inner::before {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.94) 0 34%, rgba(2, 3, 4, 0.5) 58%, rgba(2, 3, 4, 0.24) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.08), rgba(2, 3, 4, 0.5)),
    radial-gradient(circle at 78% 58%, rgba(191, 255, 33, 0.17), transparent 30vw);
}

.work-space__copy {
  left: clamp(34px, 7.5vw, 122px);
  width: min(560px, 45vw);
}

.showcase-title {
  gap: 10px;
}

.showcase-title__latin {
  font-size: clamp(92px, 12vw, 190px);
  line-height: 0.72;
  letter-spacing: -0.085em;
}

.showcase-title__zh {
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 820;
}

.work-space__copy .showcase-lead {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(248, 244, 233, 0.74);
  font-size: clamp(15px, 1.15vw, 18px);
}

.showcase-backdrop {
  opacity: 0.5;
}

.showcase-track {
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(13px, 1.08vw, 18px);
}

.showcase-track--top {
  top: 21%;
}

.showcase-track--bottom {
  bottom: 12%;
}

.showcase-reel {
  left: clamp(360px, 30vw, 620px);
  right: clamp(-560px, -18vw, -260px);
  bottom: 12%;
  width: auto;
  padding: 50px 0;
  transform: none;
}

.showcase-reel__track {
  animation-duration: 20s;
}

.showcase-reel figure {
  width: clamp(210px, 16vw, 320px);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.showcase-reel figure:nth-child(2) {
  transform: none;
}

.showcase-reel figure:nth-child(3) {
  transform: none;
}

.showcase-reel figure:nth-child(4) {
  transform: none;
}

.cases.section {
  width: calc(100% - clamp(28px, 6.8vw, 96px));
  max-width: 1360px;
  margin-top: clamp(22px, 3vw, 42px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cases .section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(260px, 1fr);
  margin-bottom: clamp(18px, 2.4vw, 32px);
  padding: 0 0 clamp(18px, 2.2vw, 28px);
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.cases-title {
  font-size: clamp(48px, 5.4vw, 86px);
}

.cases-intro {
  max-width: 480px;
  color: rgba(248, 244, 233, 0.58);
  font-size: clamp(14px, 1.08vw, 17px);
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 410px), 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.case-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 48vw, 680px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #0a0d0d;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0 34%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 18% 18%, rgba(191, 255, 33, 0.12), transparent 28vw);
}

.case-media {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.case-media::after {
  right: 28px;
  bottom: auto;
  top: 28px;
}

.case-cover {
  min-height: 100%;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.01);
}

.case-card:hover .case-cover {
  transform: scale(1.06);
}

.case-badge {
  top: 28px;
  left: 28px;
}

.case-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  min-height: 42%;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(180deg, transparent, rgba(5, 7, 7, 0.38));
}

.case-meta {
  color: var(--acid);
}

.case-copy h3 {
  max-width: 9em;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
}

.case-copy p {
  max-width: 620px;
  color: rgba(248, 244, 233, 0.72);
  font-size: clamp(15px, 1.12vw, 18px);
}

.case-link {
  margin-top: 0;
  padding-top: clamp(20px, 2vw, 30px);
  font-size: 16px;
}

.section-bridge--contact {
  display: none;
}

.contact {
  max-width: 1360px;
  margin: clamp(34px, 4vw, 58px) auto clamp(28px, 4vw, 56px);
  width: calc(100% - clamp(28px, 6.8vw, 96px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
}

@media (max-width: 900px) {
  .work-space__inner {
    min-height: 640px;
  }

  .work-space__copy {
    width: calc(100% - 52px);
  }

  .showcase-reel {
    right: -70vw;
    bottom: 4%;
    width: 172vw;
  }

  .cases.section {
    width: calc(100% - 24px);
    margin-top: 18px;
  }

  .cases .section-head {
    grid-template-columns: 1fr;
  }

  .cases-intro {
    max-width: 100%;
    text-align: left;
  }

  .case-card {
    min-height: 540px;
  }
}

@media (max-width: 620px) {
  body {
    background: linear-gradient(180deg, #f2f2ed 0 7%, #060808 7% 100%);
  }

  .work-space {
    padding: 72px 12px 14px;
  }

  .work-space__inner {
    min-height: 520px;
    border-radius: 24px;
  }

  .showcase-title__latin {
    font-size: clamp(62px, 21vw, 92px);
  }

  .showcase-title__zh {
    font-size: clamp(30px, 9vw, 44px);
  }

  .showcase-reel {
    left: 0;
    right: 0;
    bottom: 7%;
    width: 100%;
    padding: 18px 0 22px;
    transform: none;
  }

  .showcase-reel__set {
    gap: 9px;
    padding-right: 9px;
  }

  .showcase-reel figure {
    width: 160px;
    border-radius: 16px;
  }

  .showcase-reel figure:nth-child(2) {
    transform: none;
  }

  .showcase-reel figure:nth-child(3) {
    transform: none;
  }

  .showcase-reel figure:nth-child(4) {
    transform: none;
  }

  .showcase-reel figure:nth-child(5) {
    transform: none;
  }

  .cases-title {
    font-size: 46px;
  }

  .case-card {
    min-height: 500px;
    border-radius: 26px;
  }

  .case-copy {
    padding: 26px 22px 30px;
  }

  .case-copy h3 {
    font-size: 42px;
  }

  .contact {
    width: calc(100% - 24px);
    margin: 28px auto 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    right: 10px;
    left: 10px;
    min-height: 48px;
    padding: 0 14px;
  }

  .work-space {
    padding: 62px 8px 8px;
  }

  .work-space__inner {
    min-height: clamp(430px, 112vw, 486px);
    border-radius: 22px;
  }

  .work-space__copy {
    top: 36px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .showcase-title {
    gap: 5px;
    margin-top: 9px;
  }

  .showcase-title__latin {
    font-size: clamp(56px, 18vw, 76px);
  }

  .showcase-title__zh {
    font-size: clamp(27px, 8vw, 36px);
  }

  .work-space__copy .showcase-lead {
    max-width: 19em;
    margin-top: 48px;
    font-size: 13px;
    line-height: 1.55;
    display: none;
  }

  .model-note {
    right: auto;
    top: clamp(174px, 45vw, 198px);
    bottom: auto;
    left: 24px;
    width: min(330px, calc(100% - 48px));
    padding: 0 0 0 12px;
    border-radius: 0;
    font-size: 10.5px;
    line-height: 1.48;
  }

  .model-note::before {
    top: 0.2em;
    bottom: 0.2em;
    left: 0;
    width: 2px;
  }

  .showcase-reel {
    left: -12px;
    right: -12px;
    bottom: 8%;
    width: auto;
    padding: 12px 0 16px;
    transform: none;
  }

  .showcase-reel figure {
    width: 150px;
    border-radius: 14px;
  }

  .cases.section {
    width: calc(100% - 18px);
    margin: 8px auto 0;
    gap: 14px;
  }

  .cases .section-head {
    gap: 10px;
    padding-bottom: 18px;
  }

  .cases-title {
    margin-top: 6px;
    font-size: 38px;
  }

  .cases-intro {
    font-size: 13px;
    line-height: 1.55;
  }

  .case-grid {
    gap: 14px;
  }

  .case-card {
    min-height: 430px;
  }

  .case-copy {
    padding: 22px 20px 26px;
  }

  .contact {
    margin-top: 22px;
  }
}

.case-copy .case-meta {
  min-height: 1.35em;
}

.case-copy p {
  min-height: 3.3em;
}

.case-link {
  display: inline-block;
  align-self: flex-start;
}

@media (max-width: 620px) {
  .case-card {
    min-height: 470px;
  }

  .case-card::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0 38%, rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.9) 100%),
      radial-gradient(circle at 18% 22%, rgba(191, 255, 33, 0.1), transparent 70%);
  }

  .case-copy {
    min-height: 245px;
    justify-content: flex-end;
    padding: 0 22px 28px;
  }

  .case-meta {
    gap: 8px;
    font-size: 12px;
    line-height: 1.28;
  }

  .case-copy h3 {
    margin-top: 12px;
    font-size: 44px;
    line-height: 0.98;
  }

  .case-copy p {
    max-width: none;
    min-height: 3.16em;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.58;
    -webkit-line-clamp: 2;
  }

  .case-link {
    padding-top: 18px;
    font-size: 19px;
  }
}

@media (max-width: 620px) {
  .site-header {
    right: 12px;
    left: 12px;
    min-height: 46px;
    padding: 0 12px;
  }

  .brand {
    font-size: 12px;
  }

  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .cases.section {
    margin-top: 6px;
  }

  .case-grid {
    gap: 12px;
  }

  .case-card {
    min-height: 340px;
    border-radius: 20px;
  }

  .case-copy {
    min-height: 176px;
    padding: 0 18px 22px;
  }

  .case-meta {
    font-size: 11px;
  }

  .case-copy h3,
  .cases.section .case-copy h3 {
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.02;
  }

  .case-copy p {
    min-height: 2.7em;
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.52;
  }

  .case-link {
    padding-top: 12px;
    font-size: 15px;
  }

  .case-media::after {
    right: 18px;
    top: 18px;
    min-width: 54px;
    height: 48px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  .work-space__inner {
    min-height: clamp(382px, 100vw, 430px);
  }

  .work-space__copy {
    top: 32px;
  }

  .showcase-reel {
    bottom: 13%;
    padding: 8px 0 12px;
  }

  .showcase-reel figure {
    width: 138px;
    border-radius: 13px;
  }

  .cases.section {
    padding-top: 14px;
  }

  .cases .section-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .case-grid {
    gap: 10px;
  }

  .case-card {
    height: 292px;
    min-height: 0 !important;
    border-radius: 18px;
  }

  .case-card::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0 34%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.92) 100%),
      radial-gradient(circle at 18% 20%, rgba(191, 255, 33, 0.1), transparent 64%);
  }

  .case-cover {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .case-copy {
    min-height: 0 !important;
    padding: 0 16px 18px !important;
  }

  .case-copy .case-meta {
    min-height: 0;
  }

  .case-meta {
    gap: 6px;
    font-size: 10px;
  }

  .case-copy h3,
  .cases.section .case-copy h3 {
    max-width: 7em;
    margin-top: 7px;
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.04;
  }

  .case-copy p {
    max-width: 19em;
    min-height: 0 !important;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .case-link {
    padding-top: 9px;
    font-size: 14px;
  }

  .case-media::after {
    right: 14px;
    top: 14px;
    min-width: 50px;
    height: 44px;
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .cases.section {
    width: calc(100% - 36px);
    margin-top: 10px;
  }

  .case-grid {
    gap: 12px;
  }

  .case-card {
    height: 282px;
    border-radius: 19px;
  }

  .case-copy {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

/* Interactive Cinematic Showcase */
.case-grid > .interactive-showcase {
  grid-column: 1 / -1;
}

.interactive-showcase {
  --tilt-x: 0px;
  --tilt-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: clamp(18px, 2.2vw, 30px);
  min-height: clamp(420px, 42vw, 600px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at calc(48% + var(--tilt-x)) calc(14% + var(--tilt-y)), rgba(191, 255, 33, 0.13), transparent 26vw),
    radial-gradient(circle at 80% 72%, rgba(25, 164, 155, 0.18), transparent 24vw),
    linear-gradient(135deg, rgba(8, 10, 10, 0.96), rgba(17, 22, 21, 0.94));
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interactive-showcase::before,
.interactive-showcase::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.interactive-showcase::before {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
}

.interactive-showcase::after {
  background:
    radial-gradient(circle at 50% 48%, transparent 0 48%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 44%, rgba(0, 0, 0, 0.28));
  mix-blend-mode: multiply;
}

.interactive-showcase__screen {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  margin: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  background: #050606;
  color: #f8f4e9;
  transform: translate3d(calc(var(--tilt-x) * 0.14), calc(var(--tilt-y) * 0.14), 0);
}

.interactive-showcase__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 700ms ease;
}

.interactive-showcase__image.is-visible,
.interactive-showcase__screen:hover .interactive-showcase__image {
  opacity: 1;
  transform: scale(1.015);
}

.interactive-showcase__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background:
    linear-gradient(180deg, transparent 0 48%, rgba(0, 0, 0, 0.66) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
}

.interactive-showcase__info {
  position: absolute;
  left: clamp(22px, 3vw, 42px);
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 40px);
  z-index: 2;
  max-width: 640px;
}

.interactive-showcase__kicker {
  margin: 0 0 10px;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.interactive-showcase__info h3 {
  max-width: 8em;
  margin: 0;
  color: #fffaf0;
  font-family: var(--font-sans);
  font-size: clamp(44px, 5.6vw, 88px);
  font-weight: 860;
  line-height: 0.95;
  letter-spacing: 0;
}

.interactive-showcase__desc {
  margin: 14px 0 0;
  color: rgba(248, 244, 233, 0.78);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 680;
  line-height: 1.45;
}

.interactive-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.interactive-showcase__tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 5, 5, 0.42);
  padding: 7px 11px;
  color: rgba(248, 244, 233, 0.78);
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.interactive-showcase__result {
  position: absolute;
  right: clamp(18px, 2.2vw, 28px);
  top: clamp(18px, 2.2vw, 28px);
  z-index: 2;
  border: 1px solid rgba(191, 255, 33, 0.4);
  border-radius: 999px;
  background: rgba(7, 9, 9, 0.52);
  padding: 9px 13px;
  color: #fffaf0;
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

.interactive-showcase__side {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: stretch;
  grid-auto-rows: minmax(0, 1fr);
  gap: 12px;
  height: 100%;
  padding: clamp(22px, 2.8vw, 42px) clamp(18px, 2.2vw, 34px) clamp(22px, 2.8vw, 42px) 0;
}

.interactive-showcase__option {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-content: center;
  height: 100%;
  min-height: 0;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  padding: clamp(22px, 2.4vw, 34px) clamp(18px, 2vw, 28px);
  color: rgba(248, 244, 233, 0.58);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.interactive-showcase__option::before {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: transparent;
}

.interactive-showcase__option span {
  grid-row: 1 / span 2;
  color: rgba(208, 64, 55, 0.9);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 860;
}

.interactive-showcase__option strong {
  color: #fffaf0;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 820;
  line-height: 1.05;
}

.interactive-showcase__option em {
  color: rgba(248, 244, 233, 0.52);
  margin-top: 6px;
  font-size: clamp(13px, 1vw, 16px);
  font-style: normal;
  font-weight: 660;
}

.interactive-showcase__option:hover,
.interactive-showcase__option:focus-visible,
.interactive-showcase__option.is-active {
  border-color: rgba(112, 215, 232, 0.46);
  background:
    linear-gradient(90deg, rgba(112, 215, 232, 0.14), rgba(191, 255, 33, 0.06)),
    rgba(255, 255, 255, 0.04);
  color: #fffaf0;
  transform: translateX(-4px);
}

.interactive-showcase__option:hover::before,
.interactive-showcase__option:focus-visible::before,
.interactive-showcase__option.is-active::before {
  background: linear-gradient(180deg, rgba(112, 215, 232, 0.92), var(--acid));
  box-shadow: 0 0 18px rgba(112, 215, 232, 0.38);
}

@media (max-width: 900px) {
  .interactive-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .interactive-showcase__screen {
    margin: 14px 14px 0;
  }

  .interactive-showcase__side {
    align-content: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    height: auto;
    padding: 0 14px 14px;
  }

  .interactive-showcase__option {
    align-content: start;
    height: auto;
    min-height: 88px;
  }
}

@media (max-width: 620px) {
  .cases.section {
    width: calc(100% - 36px);
  }

  .interactive-showcase {
    border-radius: 22px;
  }

  .interactive-showcase__screen {
    border-radius: 18px;
    aspect-ratio: 4 / 5;
  }

  .interactive-showcase__info {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .interactive-showcase__info h3 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .interactive-showcase__desc {
    margin-top: 9px;
    font-size: 14px;
  }

  .interactive-showcase__tags {
    gap: 6px;
    margin-top: 12px;
  }

  .interactive-showcase__tags span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .interactive-showcase__side {
    gap: 8px;
  }

  .interactive-showcase__option {
    grid-template-columns: 30px 1fr;
    min-height: 74px;
    border-radius: 14px;
    padding: 14px 12px 12px;
  }

  .interactive-showcase__option strong {
    font-size: 16px;
  }

  .interactive-showcase__option em {
    font-size: 11px;
  }
}
