@font-face {
  font-family: "Alimama ShuHeiTi";
  src: url("../AlimamaShuHeiTi-Bold.otf") format("opentype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #212ea5;
  --green: #00e334;
  --black: #050505;
  --white: #f7f7f2;
  --gray: #d8d8d8;
  --line: rgba(5, 5, 5, 0.18);
  --margin: clamp(16px, 2.2vw, 34px);
  --gutter: clamp(12px, 1.4vw, 22px);
  --font-en-title: "Helvetica-Condensed-Black-Se", "Helvetica Neue Condensed Black", "Arial Narrow", Arial, sans-serif;
  --font-en-body: "HelveticaNeue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cn-title: "Alimama ShuHeiTi", "阿里妈妈数黑体", "AlimamaShuHeiTi", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --font-cn-body: "Source Han Sans SC", "思源黑体", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  --mono: var(--font-en-body), var(--font-cn-body);
  --grotesk: var(--font-en-body), var(--font-cn-body);
  --display: var(--font-cn-title);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--black);
  font-family: var(--grotesk);
  background: var(--black);
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 2;
  background: var(--black);
}

main > section,
main + footer {
  --section-bg: var(--black);
}

.hero,
.music-op,
.poster-showcase,
.commercial-ad,
.footer {
  --section-bg: var(--blue);
}

.section-dark,
.web-design {
  --section-bg: var(--black);
}

.section-light,
.sr1-showcase,
.corporate-culture,
.amazon-design,
.clients {
  --section-bg: var(--white);
}

.experience,
.works,
.film-tv,
.activity-design {
  --section-bg: var(--gray);
}

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

button {
  color: inherit;
  font: inherit;
}

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

.mono {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 8.8vw, 142px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}

.display--split {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  width: 100%;
}

.display--split span:last-child {
  font-family: var(--font-en-body), var(--font-cn-body);
  font-weight: 500;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.5) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  animation: grain-shift 0.42s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(1%, 1%); }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  width: 100%;
}

.panel,
section,
footer {
  position: relative;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: var(--margin);
  color: var(--white);
  background: var(--blue);
  pointer-events: none;
  animation: preloader-fallback-hide 4.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.9s;
}

.preloader.is-hidden {
  transform: translateY(-105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  overflow: hidden;
  background: var(--blue);
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  will-change: clip-path, transform, opacity;
}

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

.page-transition::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      transparent 1px 10vw
    );
  transform: translateX(-16%);
  mix-blend-mode: screen;
}

.page-transition::after {
  display: none;
  top: auto;
  height: 12px;
  background: transparent;
  transform: translateY(120vh);
  box-shadow: none;
}

.page-transition.is-active {
  animation: home-transition-slice 1.48s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.page-transition.is-active::before {
  animation: home-transition-grid 1.48s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.page-transition.is-active::after {
  animation: home-transition-scan 1.48s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.page-transition.is-complete {
  display: none;
}

body.is-entering-home .hero__logo,
body.is-entering-home .hero__availability,
body.is-entering-home .hero__signature,
body.is-entering-home .nav,
body.is-entering-home .hero__meta,
body.is-entering-home .scroll-button {
  animation: home-content-arrive 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-entering-home .hero__availability,
body.is-entering-home .hero__signature,
body.is-entering-home .scroll-button {
  animation-delay: 0.12s;
}

@keyframes home-transition-slice {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0deg);
  }

  36% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(-1.2deg);
  }

  58% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0deg);
  }

  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    transform: translate3d(0, -2vh, 0) skewY(0.8deg);
  }
}

@keyframes home-transition-grid {
  0%,
  35% {
    transform: translateX(-16%);
    opacity: 0.65;
  }

  100% {
    transform: translateX(16%);
    opacity: 0;
  }
}

@keyframes home-transition-scan {
  0% {
    transform: translateY(120vh);
  }

  42% {
    transform: translateY(52vh);
  }

  100% {
    transform: translateY(-16vh);
  }
}

@keyframes home-content-arrive {
  0% {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes preloader-fallback-hide {
  0%,
  84% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
  }
}

.preloader__copy {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-family: var(--mono);
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 900;
}

.preloader__copy span:first-child::after {
  content: " /";
}

.preloader__marquee {
  position: absolute;
  top: 22%;
  left: 0;
  width: 100vw;
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 700;
  opacity: 0.62;
  white-space: nowrap;
}

.preloader__marquee div {
  min-width: 200vw;
  justify-content: space-around;
  animation-duration: 28s;
}

.preloader__marquee span {
  padding-right: 8vw;
}

.preloader__marquee div,
.hero__logo div,
.micro-marquee div,
.footer__marquee div {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.preloader__marquee span,
.hero__logo span,
.micro-marquee span,
.footer__marquee span {
  flex: 0 0 auto;
  padding-right: 0.22em;
}

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

.preloader__count {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: var(--font-en-body);
  font-size: clamp(180px, 48vw, 700px);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 0.72;
  white-space: nowrap;
  transform: translate3d(var(--preload-x, 0), -50%, 0);
  transform-origin: left center;
  will-change: transform;
}

.preloader__bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.preloader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--white);
  transition: width 0.12s linear;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero__nav {
  position: absolute;
  top: 22px;
  left: var(--margin);
  z-index: 5;
  display: flex;
  gap: clamp(16px, 3vw, 42px);
}

.hero__nav a {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}

.hero__nav small {
  font-size: 9px;
  opacity: 0.62;
}

.hero__time {
  position: absolute;
  top: 22px;
  right: 27vw;
  z-index: 5;
  display: flex;
  gap: 9px;
  align-items: center;
}

.hero__time strong {
  padding: 3px 8px;
  background: var(--white);
  color: var(--blue);
}

.hero__year {
  position: absolute;
  top: 22px;
  right: var(--margin);
  z-index: 5;
}

.micro-marquee {
  position: absolute;
  top: 18.5vh;
  left: 0;
  z-index: 2;
  width: 100vw;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.micro-marquee div {
  justify-content: space-around;
  min-width: 200vw;
  animation-duration: 28s;
}

.hero__logo {
  position: absolute;
  top: 21vh;
  left: 0;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

.hero__logo div {
  animation-duration: 24s;
}

.hero__logo span {
  font-family: var(--font-en-body);
  font-size: clamp(300px, 74vh, 680px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  margin-right: 0.08em;
}

.hero__slash-avatar {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 4;
  width: 100vw;
  height: clamp(78px, 9.5vw, 134px);
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-3.5deg);
}

.hero__slash-track {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  width: 100%;
  min-height: clamp(22px, 2.1vw, 34px);
  padding: 3px clamp(20px, 4vw, 64px);
  overflow: hidden;
  background: #FE631D;
  color: var(--black);
  font-family: var(--font-en-body);
  font-size: clamp(13px, 1.35vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 0 rgba(5, 5, 5, 0.12);
}

.hero__slash-track span {
  flex: 0 0 auto;
}

.hero__avatar-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(74px, 8.6vw, 126px);
  height: clamp(74px, 8.6vw, 126px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(3.5deg);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), filter 0.24s;
}

.hero__avatar-button:hover {
  transform: translate(-50%, -50%) rotate(3.5deg) scale(1.18);
  filter: saturate(1.08) contrast(1.06);
}

.hero__avatar-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

.hero__avatar-button.is-activating {
  animation: avatar-pop 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__avatar-button img {
  width: 100%;
  height: 100%;
  border: clamp(3px, 0.45vw, 6px) solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 33%;
  box-shadow: 0 12px 0 rgba(5, 5, 5, 0.18);
}

@keyframes avatar-pop {
  0% {
    transform: translate(-50%, -50%) rotate(3.5deg) scale(1);
  }

  45% {
    transform: translate(-50%, -50%) rotate(3.5deg) scale(1.42);
  }

  100% {
    transform: translate(-50%, -50%) rotate(3.5deg) scale(1.1);
  }
}

.avatar-echo {
  position: fixed;
  z-index: 80;
  width: var(--echo-size);
  height: var(--echo-size);
  left: var(--echo-left);
  top: var(--echo-top);
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.42;
  transform: translate(-50%, -50%) scale(1);
  animation: avatar-echo-expand 0.74s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.avatar-echo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 33%;
  filter: saturate(1.08) contrast(1.06);
}

@keyframes avatar-echo-expand {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }

  60% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(var(--echo-scale));
    filter: blur(2px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(calc(var(--echo-scale) * 1.06));
    filter: blur(8px);
  }
}

.hero__availability {
  position: absolute;
  bottom: 40px;
  left: var(--margin);
  z-index: 4;
  margin: 0;
}

.scroll-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
}

.hero__signature {
  position: absolute;
  right: var(--margin);
  bottom: 40px;
  z-index: 5;
  margin: 0;
  text-align: right;
  line-height: normal;
  font-weight: 700;
  color: var(--white);
}

.flip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 9px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
}

.flip-button span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.flip-button span::after {
  content: attr(data-label);
  position: absolute;
  top: 120%;
  left: 0;
}

.flip-button:hover span {
  transform: translateY(-120%);
}

.flip-button i {
  font-style: normal;
  transition: transform 0.3s;
}

.flip-button:hover i {
  transform: translate(3px, -2px);
}

.section-dark,
.section-light {
  min-height: 100svh;
  padding: calc(var(--margin) * 2) var(--margin);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  color: var(--black);
  background: var(--white);
}

.about {
  overflow: hidden;
  padding-top: calc(var(--margin) * 2);
}

.about__profile {
  align-items: stretch;
  min-height: calc(100svh - var(--margin) * 4);
}

.profile-collage {
  position: relative;
  grid-column: 1 / 7;
  min-height: 680px;
  isolation: isolate;
}

.profile-card {
  position: absolute;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: clamp(9px, 1.1vw, 16px);
  overflow: hidden;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, box-shadow 0.6s ease;
  will-change: transform;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray);
}

.profile-card--1 {
  top: 8%;
  left: -18%;
  z-index: 1;
  width: 48%;
  transform: rotate(-7deg);
}

.profile-card--2 {
  top: 19%;
  left: 13%;
  z-index: 2;
  width: 46%;
  transform: rotate(-1.5deg);
}

.profile-card--3 {
  top: 2%;
  right: 4%;
  z-index: 3;
  width: 48%;
  transform: rotate(6deg);
}

.profile-card:hover,
.profile-card:focus,
.profile-card:focus-within {
  z-index: 10;
  transform: translateY(-24px) rotate(0deg) scale(1.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.profile-content {
  grid-column: 7 / -1;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 88px);
  padding: clamp(14px, 2vw, 30px) clamp(4px, 2vw, 28px);
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-main > .mono {
  margin: 0 0 clamp(18px, 4vh, 42px);
}

.profile-main h2 {
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: 0.92;
  white-space: nowrap;
}

.profile-role {
  margin: 0;
  font-family: var(--font-cn-title);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.profile-role span {
  font-family: var(--font-en-body), var(--font-cn-body);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 500;
}

.profile-intro {
  max-width: 34em;
  margin: clamp(18px, 3vw, 38px) 0 0;
  font-family: var(--font-cn-body);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}

.profile-details {
  margin-top: auto;
}

.profile-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--gutter);
  margin: 0;
  border-top: 1px solid rgba(247, 247, 242, 0.5);
}

.profile-details dl > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 247, 242, 0.28);
}

.profile-details div:nth-child(5) {
  grid-column: 1 / -1;
}

.profile-details dt,
.profile-details dd {
  margin: 0;
  font-family: var(--font-cn-body);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
}

.profile-details dt {
  opacity: 0.66;
}

.profile-details dd {
  font-weight: 700;
}

.profile-contact {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
  line-height: 1.25;
  white-space: nowrap;
}

.profile-contact-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.profile-contact > span {
  display: block;
}

.experience {
  min-height: 100svh;
  padding: clamp(64px, 9vw, 140px) var(--margin);
  color: var(--black);
  background: var(--gray);
}

.experience__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}

.experience__header {
  grid-column: 1 / 5;
  align-self: start;
  position: sticky;
  top: var(--margin);
}

.experience__header > .mono {
  margin: 0 0 clamp(24px, 5vh, 56px);
}

.experience__header h2 {
  max-width: none;
  font-size: clamp(52px, 5.2vw, 82px);
  line-height: 0.92;
  white-space: nowrap;
}

.experience__lead {
  max-width: 34em;
  margin: clamp(28px, 5vw, 72px) 0 0;
  font-family: var(--font-cn-body);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.7;
}

.experience__list {
  grid-column: 5 / -1;
  border-top: 1px solid var(--black);
  overflow-anchor: none;
}

.experience-item {
  border-bottom: 1px solid var(--black);
}

.experience-item summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 150px 24px;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.35s ease;
}

.experience-item summary:hover,
.experience-item summary:focus-visible {
  background: rgba(33, 46, 165, 0.07);
}

.experience-item summary::-webkit-details-marker {
  display: none;
}

.experience-item__identity {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-item summary:hover .experience-item__identity,
.experience-item summary:focus-visible .experience-item__identity {
  transform: translate3d(8px, 0, 0);
}

.experience-item__identity strong {
  font-family: var(--font-cn-title);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.05;
}

.experience-item__identity > span,
.experience-item time {
  font-family: var(--font-cn-body);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
}

.experience-item time {
  text-align: right;
  white-space: nowrap;
}

.experience-item__toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

.experience-item__toggle::before,
.experience-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
}

.experience-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.experience-item[open] .experience-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.experience-item__content {
  overflow: hidden;
  will-change: height, opacity, transform;
}

.experience-item__content > div {
  transform: translateZ(0);
}

.experience-item ul {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0;
  padding: 0 40px 34px 64px;
  font-family: var(--font-cn-body);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.experience-item li::marker {
  color: var(--blue);
}

.experience-item li strong,
.experience-item li b {
  color: var(--black);
  font-family: var(--font-cn-title);
  font-weight: 900 !important;
  font-variation-settings: "wght" 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel {
  display: flex;
  align-items: center;
}

.reel-player {
  position: relative;
  grid-column: 3 / 11;
  aspect-ratio: 16 / 9;
  margin-top: 40px;
  overflow: hidden;
  background: var(--gray);
}

.reel-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.reel-player:hover img,
.reel-player.is-playing img {
  transform: scale(1.06);
}

.reel-player__button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(80px, 11vw, 156px);
  aspect-ratio: 1;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 5, 5, 0.28);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: clamp(24px, 4vw, 54px);
}

.reel-player__controls {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s;
}

.reel-player:hover .reel-player__controls,
.reel-player.is-playing .reel-player__controls {
  opacity: 1;
  transform: translateY(0);
}

.reel-player__progress {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, 0.25);
}

.reel-player__progress i {
  display: block;
  width: 37%;
  height: 100%;
  background: var(--white);
}

.works {
  --work-width: min(29vw, 420px);
  --work-height: min(51.56vw, 746.667px);
  --work-top: 292px;
  --work-marquee-top: calc(var(--work-top) + min(25.78vw, 373.333px));
  --cta-offset: 168px;
  --work-bottom-space: 206px;
  position: relative;
  margin-top: -2px;
  min-height: calc(var(--work-top) + var(--work-height) + var(--cta-offset) + var(--work-bottom-space));
  padding: 0;
  overflow: hidden;
  background: var(--gray);
}

.works__headline {
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.works__headline > div {
  width: 100%;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(112px, 13.8vw, 200px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--black);
}

.works__headline span {
  position: relative;
  left: 50%;
  display: block;
  width: max-content;
  transform: translateX(-50%) scaleX(0.275);
  transform-origin: center;
}

.works__headline--top {
  top: 32px;
}

.works__headline--bottom {
  top: calc(var(--work-top) + var(--work-height) - 4px);
  right: auto;
  bottom: auto;
  left: 0;
}

.works__project-cta {
  position: absolute;
  top: calc(var(--work-top) + var(--work-height) + var(--cta-offset));
  left: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateX(-50%);
  text-align: center;
}

.works__project-cta h3 {
  margin: 0;
  font-family: var(--font-cn-title);
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.works__project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 142px;
  min-height: 46px;
  padding: 10px 16px 10px 22px;
  color: var(--white);
  font-family: var(--font-cn-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: var(--blue);
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.works__project-link:hover,
.works__project-link:focus-visible {
  color: var(--white);
  background: var(--black);
  transform: translateY(-3px);
}

.works__project-link span {
  display: inline-block;
  min-width: 1em;
  font-family: var(--font-en-body);
  line-height: 1;
  text-align: center;
  transition: transform 0.28s ease;
}

.works__project-link:hover span,
.works__project-link:focus-visible span {
  transform: translate(3px, -3px);
}

.works__project-cta p {
  margin: 0;
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 500;
}

.works__marquees {
  position: absolute;
  top: var(--work-marquee-top);
  left: 0;
  z-index: 1;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.works__marquee {
  width: 100%;
  overflow: hidden;
  color: rgba(5, 5, 5, 0.55);
  white-space: nowrap;
}

.works__marquee > div {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.works__marquee--reverse > div {
  animation-direction: reverse;
}

.works__marquee span {
  display: inline-block;
  min-width: clamp(260px, 25vw, 380px);
  padding-block: 7px;
  font-size: 12px;
  font-weight: 700;
}

.works__viewer {
  position: absolute;
  top: var(--work-top);
  left: 50%;
  z-index: 3;
  width: var(--work-width);
  transform: translateX(-50%);
}

.work-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #b9b9b9;
  box-shadow: none;
  cursor: pointer;
  transition: none;
}

.works__viewer:hover .work-stage {
  transform: none;
  box-shadow: none;
}

.work-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: none;
  transition: none;
}

.work-slide.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: none;
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.work-slide__meta {
  display: none;
}

.works__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.55);
}

.works__controls .flip-button {
  min-width: 42px;
  padding-inline: 12px;
}

.works__identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.works__identity strong,
.works__identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.works__identity strong {
  font-size: 13px;
  font-weight: 900;
}

.works__identity span {
  font-size: 10px;
  color: rgba(5, 5, 5, 0.62);
}

.cursor-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 152px;
  height: 116px;
  padding: 6px;
  border: 1px solid var(--white);
  background: var(--white);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.cursor-preview.is-visible {
  opacity: 1;
}

.cursor-preview img {
  width: 100%;
  height: 84px;
  object-fit: cover;
}

.cursor-preview span {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-family: var(--mono);
  font-size: 10px;
}

.sr1-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 58%);
  min-height: 100svh;
  padding: clamp(30px, 3.6vw, 54px) 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  background: var(--white);
  color: var(--black);
}

.sr1-showcase__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2vw 0 0 var(--margin);
  font-family: Impact, var(--font-en-title);
  font-size: clamp(126px, 15.8vw, 286px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleX(0.56);
  transform-origin: left top;
  white-space: nowrap;
}

.sr1-showcase__title-row {
  white-space: nowrap;
}

.sr1-showcase__title strong {
  margin-top: 20px;
  font-family: var(--font-cn-title);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: scaleX(1.7857);
  transform-origin: left top;
}

.sr1-showcase__visual {
  position: relative;
  display: flex;
  min-height: max(100svh, 900px);
  padding: clamp(42px, 6vh, 72px) 0 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.sr1-showcase__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.38) blur(6px);
  transform: scale(1.08);
  opacity: 0.78;
}

.sr1-showcase__panel {
  position: relative;
  z-index: 2;
  width: min(38vw, 420px);
}

.sr1-showcase__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sr1-showcase__controls button,
.sr1-showcase__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 28px;
  min-height: 28px;
  padding: 0 8px;
  border: 0;
  color: var(--black);
  font-family: var(--font-en-body);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: var(--white);
  cursor: pointer;
}

.sr1-showcase__controls button span,
.sr1-showcase__view span {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 0;
  line-height: 1;
  transition: transform 0.22s ease;
}

.sr1-showcase__controls button span::before,
.sr1-showcase__view span::before {
  display: block;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
  transform: translateY(-1px);
}

.sr1-showcase__controls button:hover span:first-child {
  transform: translateX(-3px);
}

.sr1-showcase__controls button:hover span:last-child,
.sr1-showcase__view:hover span {
  transform: translate(3px, -3px);
}

.sr1-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--black);
}

.sr1-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.sr1-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.sr1-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr1-showcase__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  gap: 16px;
  color: var(--white);
  line-height: 1.18;
}

.sr1-showcase__meta span,
.sr1-showcase__meta strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: normal;
}

.sr1-showcase__meta span {
  font-size: 15px;
}

.sr1-showcase__meta strong {
  text-align: right;
}

.sr1-showcase__view {
  flex: 0 0 auto;
}

.sr1-showcase__details {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(38vw, 420px);
  margin-top: 20px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.sr1-showcase__footer {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 42% 58%;
  padding-inline: calc(var(--margin) * 0.58) var(--margin);
}

.sr1-showcase__copy {
  position: relative;
  display: block;
  grid-column: 1;
  width: min(34vw, 390px);
  max-width: 100%;
  min-height: clamp(430px, 58vh, 620px);
  text-align: left;
}

.sr1-showcase__copy p {
  position: absolute;
  top: clamp(112px, 12vh, 150px);
  left: 0;
  width: min(34vw, 390px);
  margin: 0;
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.sr1-showcase__copy .works__project-link {
  position: absolute;
  bottom: 0;
  left: 0;
}

.poster-showcase {
  --poster-right-inset: clamp(24px, 3.4vw, 58px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(260px, 42%);
  min-height: calc(100svh + clamp(28px, 4vw, 64px));
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--blue);
  color: var(--white);
}

.poster-showcase__visual {
  position: relative;
  min-height: calc(100svh + clamp(28px, 4vw, 64px));
  overflow: hidden;
  background: #050505;
}

.poster-showcase__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) blur(8px);
  transform: scale(1.1);
  opacity: 0.82;
}

.poster-showcase__panel {
  position: absolute;
  top: calc(48% + clamp(18px, 2.4vw, 34px));
  left: 50%;
  z-index: 2;
  width: min(34vw, 390px);
  transform: translate(-50%, -50%);
}

.poster-showcase__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.poster-showcase__controls button,
.poster-showcase__view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 8px;
  border: 0;
  color: var(--black);
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: var(--white);
  cursor: pointer;
}

.poster-showcase__controls button span,
.poster-showcase__view span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  transition: transform 0.22s ease;
}

.poster-showcase__controls button:hover span:first-child {
  transform: translateX(-3px);
}

.poster-showcase__controls button:hover span:last-child,
.poster-showcase__view:hover span {
  transform: translate(3px, -3px);
}

.poster-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.poster-slide {
  display: none;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.poster-slide.is-active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.poster-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.poster-showcase__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 12px;
}

.poster-showcase__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
  color: var(--white);
}

.poster-showcase__meta strong {
  text-align: right;
}

.poster-showcase__meta span,
.poster-showcase__meta strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.poster-showcase__meta span {
  font-size: 15px;
}

.poster-showcase__view {
  flex: 0 0 auto;
}

.poster-showcase__content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--poster-right-inset);
}

.poster-showcase__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(108px, 13vw, 242px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  transform: scaleX(0.6);
  transform-origin: left top;
  white-space: nowrap;
}

.poster-showcase__side-cta {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: clamp(16px, 1.8vw, 30px);
}

.poster-showcase__side-cta p {
  margin: 0;
  font-family: var(--font-cn-title);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.poster-showcase__project-link {
  position: static;
  flex: 0 0 auto;
  margin-top: auto;
  color: var(--black);
  background: var(--white);
}

.poster-showcase__footer {
  display: none;
}

.poster-showcase__footer span:first-child {
  position: absolute;
  left: var(--margin);
}

.corporate-culture {
  position: relative;
  padding: clamp(52px, 7vw, 112px) var(--margin) clamp(72px, 10vw, 150px);
  overflow: hidden;
  background: #f2f2f0;
  color: var(--black);
}

.corporate-culture__header {
  display: flex;
  justify-content: center;
  width: min(86vw, 1480px);
  margin-inline: auto;
  margin-bottom: clamp(38px, 5vw, 82px);
}

.corporate-culture__header h2 {
  margin: 0;
  font-family: Impact, var(--font-en-title);
  padding-inline: 0;
  width: max-content;
  max-width: none;
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: scaleX(0.34);
  transform-origin: center;
}

.corporate-culture__projects {
  display: grid;
  gap: clamp(72px, 10vw, 160px);
  width: min(86vw, 1480px);
  margin-inline: auto;
}

.corporate-project {
  display: grid;
  gap: 22px;
}

.corporate-project__media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.corporate-project__media img {
  display: block;
  width: 100%;
  max-height: min(72vw, 980px);
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.corporate-project__media--portrait img {
  width: 100%;
}

.corporate-project:hover .corporate-project__media img {
  transform: scale(1.025);
}

.corporate-project__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.corporate-project__index {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
}

.corporate-project__info h3 {
  margin: 0;
  font-family: var(--font-cn-title);
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1;
}

.corporate-project__link {
  flex: 0 0 auto;
}

.commercial-vi {
  background: var(--black);
  color: var(--white);
}

.commercial-vi .corporate-culture__header h2 {
  color: var(--white);
}

.commercial-vi .corporate-project__index {
  color: rgba(247, 247, 242, 0.68);
}

.commercial-vi .corporate-project__info h3 {
  color: var(--white);
}

.commercial-vi .corporate-project__link {
  color: var(--blue);
  background: var(--white);
}

.commercial-vi .corporate-project__link span {
  color: currentColor;
  background: transparent;
}

.commercial-vi .corporate-project__link:hover,
.commercial-vi .corporate-project__link:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.commercial-vi .corporate-project__link:hover span,
.commercial-vi .corporate-project__link:focus-visible span {
  color: currentColor;
  background: transparent;
}

.web-design {
  position: relative;
  padding: clamp(58px, 8vw, 124px) var(--margin) clamp(76px, 10vw, 150px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.web-design__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(86vw, 1480px);
  margin: 0 auto clamp(18px, 2.8vw, 44px);
}

.web-design__header h2 {
  margin: 0;
  font-family: Impact, var(--font-en-title);
  width: max-content;
  max-width: none;
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: scaleX(0.34);
  transform-origin: center;
}

.web-design__header p {
  margin: clamp(8px, 1.2vw, 18px) 0 0;
  font-family: var(--font-cn-title);
  font-size: clamp(24px, 3vw, 52px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.web-design__browser {
  width: min(100%, 1480px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #111;
  overscroll-behavior: contain;
}

.web-design__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: #171717;
}

.web-design__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.web-design__bar strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-en-body);
  font-size: 11px;
}

.web-design__viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--blue) #dedede;
  scrollbar-width: thin;
  background: var(--white);
}

.web-design__viewport::-webkit-scrollbar {
  width: 8px;
}

.web-design__viewport::-webkit-scrollbar-track {
  background: #dedede;
}

.web-design__viewport::-webkit-scrollbar-thumb {
  background: var(--blue);
}

.web-design__viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.web-design__cta {
  display: flex;
  justify-content: center;
  width: min(100%, 1480px);
  margin: clamp(28px, 4vw, 54px) auto 0;
}

.web-design__project-link {
  color: var(--black);
  background: var(--white);
}

.music-op {
  position: relative;
  min-height: 112svh;
  padding: clamp(64px, 7vw, 112px) var(--margin) clamp(46px, 6vw, 86px);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.music-op__header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: min(92vw, 1720px);
  padding-inline: 0;
  margin-inline: auto;
  margin-bottom: clamp(28px, 5vw, 78px);
  overflow: visible;
}

.music-op__header h2 {
  margin: 0;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(92px, 15.2vw, 270px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transform: scaleX(0.36);
  transform-origin: center top;
  width: max-content;
}

.music-op__stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 1720px);
  min-height: clamp(600px, 66vw, 1020px);
  margin-inline: auto;
  overflow: hidden;
  background: transparent;
  color: var(--white);
  isolation: isolate;
}

.music-op__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(420px, 48%) minmax(320px, 1fr);
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  padding: 0;
  transition: clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

.music-op__panel--before {
  z-index: 1;
  clip-path: inset(0 0 0 0);
}

.music-op__panel--after {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

.music-op.is-upgraded .music-op__panel--after {
  clip-path: inset(0 0 0 0);
}

.music-op.is-upgraded .music-op__panel--before {
  opacity: 0.18;
}

.music-op__channel {
  justify-self: center;
  width: min(42vw, 610px);
  height: min(62vw, 890px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  background: transparent;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  scrollbar-color: var(--white) rgba(255, 255, 255, 0.16);
  scrollbar-width: thin;
  cursor: ns-resize;
}

.music-op__channel img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
}

.music-op__banners {
  display: grid;
  justify-self: center;
  width: min(100%, 900px);
  gap: clamp(16px, 2.2vw, 30px);
}

.music-op__banners img {
  width: 100%;
  aspect-ratio: 825 / 350;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.music-op__scan {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 48%, transparent 56%),
    repeating-linear-gradient(0deg, rgba(33, 46, 165, 0.22) 0 1px, transparent 1px 7px);
  transform: translateX(-120%);
}

.music-op.is-transitioning .music-op__scan {
  opacity: 1;
  animation: musicScan 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.music-op__upgrade {
  --float-x: 0px;
  --float-y: 0px;
  --frame-a-x: 0px;
  --frame-a-y: 0px;
  --frame-b-x: 0px;
  --frame-b-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 168px;
  min-height: 56px;
  padding: 14px 24px;
  overflow: visible;
  border: 0;
  border-radius: 6px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-family: var(--font-cn-body);
  font-size: 16px;
  font-weight: 900;
  isolation: isolate;
  line-height: 1;
  transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y)));
  will-change: transform;
  transition:
    top 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
}

.music-op__upgrade::before,
.music-op__upgrade::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.44);
  content: "";
  pointer-events: none;
  transform: scale(1);
  animation: musicUpgradeEcho 1.38s ease-out infinite;
}

.music-op__upgrade::before {
  animation-delay: 0s;
}

.music-op__upgrade::after {
  animation-delay: 1.1s;
}

.music-op__upgrade:hover {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), 0 0 40px rgba(255, 255, 255, 0.5);
  transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) scale(1.095);
}

.music-op.is-upgraded .music-op__upgrade {
  top: calc(100% - clamp(22px, 3vw, 42px));
  left: clamp(22px, 3vw, 42px);
  color: var(--black);
  background: var(--white);
  transform: translate(0, -100%);
}

.music-op.is-upgraded .music-op__upgrade::before,
.music-op.is-upgraded .music-op__upgrade::after {
  display: none;
  animation: none;
}

.music-op.is-upgraded .music-op__upgrade:hover {
  background: var(--white);
  transform: translate(0, calc(-100% - 3px));
}

.music-op__upgrade i {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  transition: transform 0.28s ease;
}

.music-op__upgrade:hover i {
  transform: translate(3px, -3px);
}

.music-op.is-upgraded .music-op__upgrade i {
  transform: rotate(180deg);
}

.music-op.is-upgraded .music-op__upgrade:hover i {
  transform: rotate(180deg) translate(3px, -3px);
}

.music-op__upgrade.is-pulsing {
  animation: upgradePulse 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.music-op__upgrade span {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  font-family: var(--font-cn-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: inherit;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.music-op__upgrade:hover span {
  transform: none;
}

.music-op__footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  width: min(92vw, 1720px);
  margin: clamp(42px, 5vw, 84px) auto 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.music-op__footer p {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  text-align: center;
}

.music-op__project-link {
  color: var(--white);
  background: var(--black);
}

.music-op__project-link:hover,
.music-op__project-link:focus-visible {
  color: var(--black);
  background: var(--white);
}

.film-tv {
  position: relative;
  min-height: clamp(860px, 94vw, 1280px);
  padding: clamp(42px, 6vw, 96px) var(--margin) clamp(30px, 4vw, 60px);
  overflow: hidden;
  color: var(--black);
  background: var(--gray);
}

.film-tv__headline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.film-tv__headline > div {
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: none;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: scaleX(0.34);
}

.film-tv__headline--top {
  margin-top: 0;
}

.film-tv__headline--bottom {
  margin-top: clamp(-34px, -2vw, -12px);
}

.film-tv__marquees {
  position: absolute;
  inset: 34% 0 auto;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 4vw, 58px);
  color: rgba(5, 5, 5, 0.45);
  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.film-tv__marquees > div {
  display: flex;
  justify-content: space-around;
  min-width: 180vw;
  animation: marquee 20s linear infinite;
}

.film-tv__marquees > div:nth-child(2) {
  animation-direction: reverse;
}

.film-tv__set {
  position: relative;
  z-index: 3;
  width: min(72vw, 1180px);
  margin: clamp(18px, 2.2vw, 42px) auto 0;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.24));
}

.film-tv__screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.film-tv__popup {
  position: absolute;
  left: 50%;
  top: 46.5%;
  z-index: 2;
  width: 56%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: clamp(6px, 0.7vw, 12px);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.44);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
}

.film-tv.is-popup-visible .film-tv__popup {
  animation: filmPopupIn 0.72s cubic-bezier(0.18, 1, 0.32, 1) 0.08s both;
}

.film-tv__popup img {
  position: absolute;
  inset: clamp(6px, 0.7vw, 12px);
  width: calc(100% - clamp(12px, 1.4vw, 24px));
  height: calc(100% - clamp(12px, 1.4vw, 24px));
  object-fit: contain;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.86) contrast(1.05);
  transition: opacity 0.22s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.film-tv__popup img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1);
}

.film-tv__popup:hover img.is-active {
  transform: scale(1.035);
}

.film-tv__cta {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3.2vw, 56px);
  text-align: center;
}

.film-tv__project-link {
  color: var(--white);
  background: var(--blue);
}

.film-tv__project-link:hover,
.film-tv__project-link:focus-visible {
  color: var(--black);
  background: var(--white);
}

.film-tv__cta p {
  margin: 0;
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 700;
}

.activity-design {
  position: relative;
  min-height: clamp(780px, 88vw, 1220px);
  padding: clamp(42px, 6vw, 96px) var(--margin) clamp(40px, 4.8vw, 72px);
  overflow: hidden;
  color: var(--black);
  background: var(--gray);
}

.activity-design__headline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.activity-design__headline > div {
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: none;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: scaleX(0.34);
}

.activity-design__headline--bottom {
  margin-top: clamp(-34px, -2vw, -12px);
}

.activity-design__marquees {
  position: absolute;
  inset: 34% 0 auto;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 4vw, 58px);
  color: rgba(5, 5, 5, 0.45);
  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.activity-design__marquees > div {
  display: flex;
  justify-content: space-around;
  min-width: 180vw;
  animation: marquee 20s linear infinite;
}

.activity-design__marquees > div:nth-child(2) {
  animation-direction: reverse;
}

.activity-design__set {
  position: relative;
  z-index: 3;
  width: min(72vw, 1180px);
  margin: clamp(18px, 2.2vw, 42px) auto 0;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.24));
}

.activity-design__screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.activity-design__display {
  position: absolute;
  left: 50%;
  top: 46.8%;
  z-index: 2;
  width: 82.8%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
}

.activity-design.is-display-visible .activity-design__display {
  animation: filmPopupIn 0.72s cubic-bezier(0.18, 1, 0.32, 1) 0.08s both;
}

.activity-design__display img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  filter: saturate(0.9) contrast(1.04);
  transition: opacity 0.24s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.activity-design__display img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1);
}

.activity-design__display:hover img.is-active {
  transform: scale(1);
}

.activity-design__controls {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  margin: clamp(18px, 2.2vw, 34px) auto 0;
}

.activity-design__controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.activity-design__controls button span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--white);
  transition: transform 0.22s ease;
}

.activity-design__controls button:hover span:first-child {
  transform: translateX(-3px);
}

.activity-design__controls button:hover span:last-child {
  transform: translateX(3px);
}

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

@keyframes filmPopupIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.68);
    filter: blur(10px);
  }
  56% {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1.035);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

@keyframes upgradePulse {
  0% { transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) scale(1); }
  48% { transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) scale(0.96); }
  100% { transform: translate(calc(-50% + var(--float-x)), calc(-50% + var(--float-y))) scale(1.035); }
}

@keyframes musicUpgradeEcho {
  0% {
    opacity: 0.82;
    transform: scale(1);
  }
  58% {
    opacity: 0.32;
    transform: scale(1.72, 2.1);
  }
  82% {
    opacity: 0.08;
    transform: scale(2.06, 2.58);
  }
  100% {
    opacity: 0;
    transform: scale(2.12, 2.68);
  }
}

.partner {
  display: grid;
  place-items: center;
  min-height: 118svh;
  overflow: hidden;
  text-align: center;
}

.partner h2 {
  max-width: 1120px;
  font-size: clamp(54px, 9.5vw, 158px);
}

.partner__video {
  width: min(42vw, 520px);
  aspect-ratio: 1;
  margin: clamp(28px, 5vw, 72px) auto;
  overflow: hidden;
  background: var(--gray);
  transform: rotate(-2deg);
}

.partner__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner__marquee {
  width: 120vw;
  white-space: nowrap;
  font-size: clamp(18px, 3.4vw, 54px);
  font-weight: 900;
  animation: marquee 22s linear infinite;
}

.partner__marquee--reverse {
  animation-direction: reverse;
}

.amazon-design {
  position: relative;
  padding: clamp(38px, 5vw, 76px) var(--margin) clamp(74px, 9vw, 140px);
  overflow: hidden;
  color: var(--black);
  background: var(--white);
}

.amazon-design__header {
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.4vw, 20px);
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  margin-bottom: clamp(34px, 5vw, 82px);
  overflow: visible;
  text-align: center;
}

.amazon-design__header h2 {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.amazon-design__header h2 span {
  display: block;
  width: max-content;
  transform: scaleX(0.34);
  transform-origin: center;
}

.amazon-design__header strong {
  font-family: var(--font-cn-title);
  font-size: clamp(26px, 3.2vw, 56px);
  line-height: 1;
}

.amazon-design__hero {
  display: grid;
  gap: 18px;
  width: min(92vw, 1464px);
  margin: 0 auto;
}

.amazon-design__hero img {
  width: 100%;
  aspect-ratio: 1464 / 600;
  object-fit: cover;
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: var(--gray);
}

.amazon-design__cta {
  display: flex;
  justify-content: center;
  width: min(92vw, 1464px);
  margin: clamp(28px, 4vw, 54px) auto 0;
}

.amazon-design__project-link {
  color: var(--white);
  background: var(--blue);
}

.commercial-ad {
  position: relative;
  padding: clamp(50px, 6.5vw, 96px) var(--margin) clamp(58px, 7vw, 108px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.commercial-ad__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.9vw, 14px);
  width: 100%;
  margin: 0 auto clamp(20px, 3vw, 46px);
  overflow: visible;
  text-align: center;
}

.commercial-ad__header h2 {
  margin: 0;
  width: max-content;
  max-width: none;
  font-family: Impact, var(--font-en-title);
  font-size: clamp(92px, 16.5vw, 292px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: scaleX(0.34);
  transform-origin: center;
}

.commercial-ad__header strong {
  font-family: var(--font-cn-title);
  font-size: clamp(26px, 3.2vw, 56px);
  line-height: 1;
}

.commercial-ad__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(86vw, 1480px);
  min-height: clamp(240px, 34vw, 520px);
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}

.commercial-ad__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.commercial-ad__stage img.is-active {
  opacity: 1;
  transform: scale(1);
}

.commercial-ad__controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  margin: clamp(12px, 1.8vw, 26px) auto 0;
}

.commercial-ad__controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border: 0;
  color: var(--blue);
  background: var(--white);
  font-family: var(--font-cn-body);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.commercial-ad__controls button span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  transition: transform 0.22s ease;
}

.commercial-ad__controls button:hover span:first-child {
  transform: translateX(-3px);
}

.commercial-ad__controls button:hover span:last-child {
  transform: translateX(3px);
}

.poster-showcase__controls button,
.poster-showcase__view,
.activity-design__controls button,
.commercial-ad__controls button {
  justify-content: center;
  gap: 6px;
  height: 28px;
  min-height: 28px;
  padding: 0 8px;
  font-family: var(--font-en-body);
  font-size: 12px;
  line-height: 1;
}

.poster-showcase__controls button span,
.poster-showcase__view span,
.activity-design__controls button span,
.commercial-ad__controls button span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}

.poster-showcase__controls button span::before,
.poster-showcase__view span::before,
.activity-design__controls button span::before,
.commercial-ad__controls button span::before {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
  transform: translateY(-1px);
}

.activity-design__controls button:hover span:last-child,
.commercial-ad__controls button:hover span:last-child {
  transform: translate(3px, -3px);
}

.sr1-showcase__controls button span::before,
.sr1-showcase__view span::before,
.poster-showcase__controls button span::before,
.poster-showcase__view span::before,
.activity-design__controls button span::before,
.commercial-ad__controls button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-58%, -50%) rotate(-45deg);
}

.sr1-showcase__controls button:first-child span::before,
.poster-showcase__controls button:first-child span::before,
.activity-design__controls button:first-child span::before,
.commercial-ad__controls button:first-child span::before {
  transform: translate(-42%, -50%) rotate(135deg);
}

.clients {
  min-height: auto;
  padding-block: 38px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.clients__track span {
  display: grid;
  place-items: center;
  min-width: clamp(160px, 18vw, 260px);
  height: 86px;
  margin-right: 12px;
  border: 1px solid var(--black);
  font-family: var(--mono);
  font-size: clamp(14px, 1.8vw, 24px);
  font-weight: 900;
  background: var(--gray);
}

.clients__track span:nth-child(odd) {
  border-radius: 999px;
}

.footer {
  position: relative;
  z-index: 1;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.footer__marquee {
  position: absolute;
  top: 8vh;
  left: 0;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

.footer__marquee span {
  font-family: var(--display);
  font-size: clamp(60px, 13vw, 190px);
  line-height: 1;
  color: var(--white);
}

.footer__content {
  position: absolute;
  right: var(--margin);
  bottom: calc(var(--margin) * 1.2);
  left: var(--margin);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 18px;
}

.footer__content > .mono {
  grid-column: 1;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.footer__cta {
  grid-column: 1;
  display: grid;
  justify-items: start;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-en-body), var(--font-cn-body);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.045em;
  color: var(--white);
  text-transform: uppercase;
}

.footer__cta a,
.footer__cta span {
  color: inherit;
  white-space: nowrap;
}

.footer__top {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
  min-width: 92px;
  color: var(--black);
  border: 0;
  background: var(--white);
  cursor: pointer;
}

.footer__top:hover,
.footer__top:focus-visible {
  color: var(--white);
  background: var(--black);
}

.reveal-line {
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s;
}

.reveal-line.is-visible,
[data-section].is-visible .reveal-line {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .grid,
  .works {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .hero__time {
    right: var(--margin);
    top: 54px;
  }

  .hero__year {
    display: none;
  }

  .profile-collage,
  .profile-content,
  .works__left,
  .works__right,
  .reel-player {
    grid-column: 1 / -1;
  }

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

  .experience__header,
  .experience__list {
    grid-column: 1 / -1;
  }

  .experience__header {
    position: static;
    margin-bottom: 56px;
  }

  .profile-collage {
    min-height: clamp(520px, 70vw, 680px);
  }

  .profile-card--1 {
    left: 3%;
    width: 36%;
  }

  .profile-card--2 {
    left: 32%;
    width: 34%;
  }

  .profile-card--3 {
    right: 4%;
    width: 36%;
  }

  .profile-main,
  .profile-details {
    padding-block: 0;
  }

  .profile-content {
    padding: 24px 0 0;
  }

  .profile-main > .mono {
    margin-bottom: 18px;
  }

  .profile-intro {
    margin-top: 20px;
  }

  .works {
    --work-width: min(44vw, 400px);
    --work-height: min(78.22vw, 711.111px);
    --work-top: 196px;
    --work-marquee-top: calc(var(--work-top) + min(39.11vw, 355.555px));
    --cta-offset: 142px;
    --work-bottom-space: 178px;
    min-height: calc(var(--work-top) + var(--work-height) + var(--cta-offset) + var(--work-bottom-space));
  }

  .works__headline--top {
    top: 20px;
  }

  .works__viewer {
    top: var(--work-top);
    width: var(--work-width);
  }

  .music-op__panel {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .music-op__channel {
    width: min(74vw, 560px);
    height: min(108vw, 820px);
  }

  .music-op__banners {
    width: min(86vw, 760px);
  }

  .film-tv {
    min-height: clamp(700px, 98vw, 900px);
    padding-top: clamp(36px, 5vw, 64px);
  }

  .film-tv__headline > div {
    font-size: clamp(72px, 17vw, 164px);
    transform: scaleX(0.3);
  }

  .film-tv__set {
    width: min(88vw, 860px);
  }

  .film-tv__popup {
    width: 54%;
  }

  .activity-design {
    min-height: clamp(680px, 96vw, 980px);
    padding-top: clamp(36px, 5vw, 64px);
  }

  .activity-design__headline > div {
    font-size: clamp(72px, 17vw, 164px);
    transform: scaleX(0.3);
  }

  .activity-design__set {
    width: min(88vw, 860px);
  }

  .activity-design__display {
    width: 82.8%;
  }

  .amazon-design {
    padding-top: clamp(46px, 6vw, 78px);
  }

  .amazon-design__header h2 {
    font-size: clamp(72px, 17vw, 164px);
  }

  .amazon-design__header h2 span {
    transform: scaleX(0.3);
  }

  .footer__content {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --margin: 14px;
  }

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

  .mono {
    font-size: 10px;
  }

  .preloader__copy,
  .display--split,
  .hero__nav,
  .footer__content {
    flex-wrap: wrap;
  }

  .preloader__count {
    bottom: 54px;
  }

  .hero__nav {
    gap: 12px;
  }

  .hero__time {
    left: var(--margin);
    right: auto;
    top: 76px;
  }

  .hero__logo {
    top: 26vh;
  }

  .hero__logo span {
    font-size: 22vh;
  }

  .hero__slash-avatar {
    top: 47%;
    width: 100vw;
    height: 76px;
  }

  .hero__slash-track {
    gap: 18px;
    min-height: 24px;
    font-size: 12px;
  }

  .hero__avatar-button {
    width: 72px;
    height: 72px;
  }

  .hero__signature {
    right: var(--margin);
    bottom: 82px;
  }

  .scroll-button {
    left: 50%;
    right: auto;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .section-dark,
  .section-light,
  .works {
    padding-block: 44px;
  }

  .works {
    --work-width: min(72vw, 300px);
    --work-height: min(128vw, 533.333px);
    --work-top: 128px;
    --work-marquee-top: calc(var(--work-top) + min(64vw, 266.666px));
    --cta-offset: 108px;
    --work-bottom-space: 148px;
    min-height: calc(var(--work-top) + var(--work-height) + var(--cta-offset) + var(--work-bottom-space));
    padding: 0;
  }

  .works__headline > div {
    font-size: clamp(76px, 22vw, 104px);
    line-height: 0.92;
  }

  .works__headline--top {
    top: 12px;
  }

  .works__headline span {
    transform: translateX(-50%) scaleX(0.185);
  }

  .works__headline--bottom {
    top: calc(var(--work-top) + var(--work-height) - 2px);
    bottom: auto;
  }

  .works__viewer {
    top: var(--work-top);
    width: var(--work-width);
  }

  .works__marquee span {
    min-width: 210px;
    font-size: 10px;
  }

  .works__controls {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 7px;
  }

  .works__controls .flip-button {
    min-width: 36px;
    padding-inline: 9px;
  }

  .sr1-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sr1-showcase__title {
    padding: 28px var(--margin) 14px;
    font-size: clamp(56px, 18vw, 92px);
    line-height: 0.94;
    transform: scaleX(0.42);
  }

  .sr1-showcase__title strong {
    margin-top: 14px;
    font-size: 26px;
    transform: scaleX(2.381);
  }

  .sr1-showcase__visual {
    min-height: 72svh;
    padding: 32px 0 28px;
  }

  .sr1-showcase__panel,
  .sr1-showcase__details {
    width: min(68vw, 340px);
  }

  .sr1-showcase__footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 20px;
  }

  .poster-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .poster-showcase__visual {
    min-height: 72svh;
    order: 3;
  }

  .poster-showcase__content {
    order: 1;
    padding: 28px var(--margin) 26px;
  }

  .poster-showcase__title {
    align-items: flex-start;
    margin-top: 0;
    font-size: clamp(56px, 18vw, 92px);
    line-height: 0.94;
    text-align: left;
    transform: scaleX(0.42);
    transform-origin: left top;
  }

  .poster-showcase__side-cta {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    margin-top: 14px;
  }

  .poster-showcase__project-link {
    position: static;
    margin-top: 16px;
  }

  .poster-showcase__panel {
    width: min(68vw, 340px);
  }

  .poster-showcase__footer {
    display: none;
  }

  .poster-showcase__footer span:first-child {
    position: static;
  }

  .corporate-culture {
    padding-block: 42px 72px;
  }

  .corporate-culture__header h2 {
    padding-inline: 0;
    font-size: clamp(72px, 17vw, 164px);
    line-height: 0.82;
    white-space: nowrap;
    transform: scaleX(0.3);
  }

  .corporate-culture__header,
  .corporate-culture__projects {
    width: 92vw;
  }

  .corporate-culture__projects {
    gap: 70px;
  }

  .corporate-project__media {
    min-height: 0;
    padding: 0;
  }

  .corporate-project__media img,
  .corporate-project__media--portrait img {
    width: 100%;
    max-height: 72svh;
  }

  .corporate-project__info {
    align-items: flex-start;
    flex-direction: column;
  }

  .web-design {
    padding-block: 48px 76px;
  }

  .web-design__header h2 {
    font-size: clamp(72px, 17vw, 164px);
    line-height: 0.82;
    transform: scaleX(0.3);
  }

  .web-design__header p {
    margin-top: 10px;
    font-size: clamp(24px, 7vw, 36px);
  }

  .web-design__bar {
    height: 34px;
    padding-inline: 10px;
  }

  .web-design__bar strong {
    font-size: 9px;
  }

  .web-design__viewport {
    aspect-ratio: 4 / 3;
  }

  .music-op {
    min-height: auto;
    padding-block: 28px 42px;
  }

  .music-op__header {
    margin-bottom: 24px;
    width: 100%;
    padding-inline: 0;
  }

  .music-op__header h2 {
    font-size: clamp(48px, 17vw, 82px);
    line-height: 0.86;
    transform: scaleX(0.22);
  }

  .music-op__stage {
    width: 100%;
    min-height: 880px;
  }

  .music-op__panel {
    position: absolute;
    gap: 18px;
    padding: 10px;
  }

  .music-op__channel {
    width: min(90vw, 420px);
    height: min(140vw, 680px);
  }

  .music-op__banners {
    width: min(90vw, 420px);
    gap: 10px;
  }

  .music-op__upgrade {
    min-width: 136px;
    min-height: 48px;
    width: auto;
    height: auto;
    padding: 11px 18px;
  }

  .music-op__upgrade span {
    bottom: auto;
    font-size: 14px;
  }

  .music-op__footer {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .music-op__footer p {
    max-width: none;
    font-size: 14px;
    text-align: center;
  }

  .film-tv {
    min-height: 590px;
    padding-inline: 0;
    padding-block: 34px 22px;
  }

  .film-tv__headline > div {
    font-size: clamp(54px, 20vw, 92px);
    line-height: 0.86;
    transform: scaleX(0.28);
  }

  .film-tv__headline--top {
    margin-top: 0;
  }

  .film-tv__headline--bottom {
    margin-top: -10px;
  }

  .film-tv__marquees {
    inset: 35% 0 auto;
    gap: 22px;
    font-size: 10px;
  }

  .film-tv__set {
    width: 112vw;
    margin-left: -6vw;
    margin-top: 18px;
  }

  .film-tv__popup {
    width: 58%;
    padding: 5px;
  }

  .film-tv__popup img {
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .film-tv__cta {
    margin-top: 18px;
  }

  .activity-design {
    min-height: 560px;
    padding-inline: 0;
    padding-block: 34px 44px;
  }

  .activity-design__headline > div {
    font-size: clamp(54px, 20vw, 92px);
    line-height: 0.86;
    transform: scaleX(0.28);
  }

  .activity-design__headline--top {
    margin-top: 0;
  }

  .activity-design__headline--bottom {
    margin-top: -10px;
  }

  .activity-design__marquees {
    inset: 35% 0 auto;
    gap: 22px;
    font-size: 10px;
  }

  .activity-design__set {
    width: 112vw;
    margin-left: -6vw;
    margin-top: 18px;
  }

  .activity-design__display {
    width: 82%;
  }

  .activity-design__controls {
    gap: 18px;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .amazon-design {
    padding: 40px var(--margin) 54px;
  }

  .amazon-design__header {
    gap: 10px;
    margin-bottom: 26px;
  }

  .amazon-design__header h2 {
    font-size: clamp(72px, 17vw, 164px);
    line-height: 0.82;
    white-space: nowrap;
  }

  .amazon-design__header h2 span {
    transform: scaleX(0.3);
  }

  .amazon-design__header strong {
    font-size: 26px;
  }

  .amazon-design__hero {
    width: 100%;
    gap: 12px;
  }

  .amazon-design__cta {
    width: 100%;
    margin-top: 22px;
  }

  .commercial-ad {
    padding: 38px var(--margin) 58px;
  }

  .commercial-ad__header {
    width: 92vw;
    gap: 8px;
    margin-bottom: 18px;
  }

  .commercial-ad__header h2 {
    font-size: clamp(72px, 17vw, 164px);
    line-height: 0.82;
    white-space: nowrap;
    transform: scaleX(0.3);
  }

  .commercial-ad__header strong {
    font-size: 26px;
  }

  .commercial-ad__stage {
    width: 92vw;
    min-height: clamp(190px, 42vw, 380px);
  }

  .commercial-ad__controls {
    gap: 18px;
    margin-top: 12px;
  }

  .profile-collage {
    min-height: clamp(360px, 74vw, 480px);
    margin-bottom: 18px;
  }

  .profile-card {
    padding: 8px;
  }

  .profile-card--1 {
    left: 0;
    width: 44%;
  }

  .profile-card--2 {
    left: 28%;
    width: 42%;
  }

  .profile-card--3 {
    right: 0;
    width: 44%;
  }

  .profile-content {
    gap: 36px;
  }

  .profile-main h2 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .profile-details dl > div {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 13px 0;
  }

  .profile-details dl {
    grid-template-columns: 1fr;
  }

  .profile-details div:nth-child(5) {
    grid-column: auto;
  }

  .profile-contact {
    gap: 4px;
  }

  .profile-contact-row {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .experience {
    padding-block: 56px;
  }

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

  .experience__header {
    margin-bottom: 36px;
  }

  .experience__header h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .experience__lead {
    margin-top: 24px;
  }

  .experience-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 96px;
  }

  .experience-item time {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .experience-item__toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .experience-item ul {
    padding: 0 8px 28px 40px;
  }

  .reel-player {
    margin-top: 22px;
  }

  .cursor-preview {
    display: none;
  }

  .clients__track span {
    min-width: 152px;
    height: 72px;
  }

  .footer {
    position: relative;
  }

  .footer__cta {
    justify-content: flex-start;
    font-size: 11px;
    word-break: keep-all;
  }
}

@media (min-width: 2200px) {
  .is-cn-text {
    font-size: 22px !important;
    line-height: 1.55;
  }

  .is-cn-title {
    font-size: 60px !important;
    line-height: 1.04;
  }

  .works__project-link.is-cn-text,
  .flip-button.is-cn-text,
  button.is-cn-text,
  a.is-cn-text {
    font-size: 20px !important;
    line-height: 1;
  }

  .hero__nav,
  .hero__nav a,
  .hero__nav small,
  .hero__time,
  .hero__time strong,
  .hero__year,
  .micro-marquee,
  .hero__slash-track,
  .scroll-button {
    font-size: 24px !important;
    line-height: 1.1;
  }

  .profile-intro {
    max-width: 48em;
  }

  .profile-contact {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    align-items: baseline;
  }

  .profile-contact-row {
    grid-template-columns: 128px minmax(0, 1fr);
    column-gap: 26px;
  }

  .profile-contact-row dt {
    white-space: nowrap;
  }

  .profile-contact > span {
    display: inline;
  }

  .experience__header {
    grid-column: 1 / 6;
  }

  .experience__lead {
    max-width: 48em;
  }

  .experience__list {
    grid-column: 6 / -1;
  }

  .experience-item summary {
    grid-template-columns: 64px minmax(0, 1fr) 220px 32px;
    gap: 28px;
  }

  .experience-item ul {
    max-width: 1180px;
    padding-right: 80px;
  }

  .works {
    --cta-offset: 196px;
    padding-bottom: 330px;
  }

  .sr1-showcase {
    grid-template-columns: minmax(360px, 41%) minmax(0, 59%);
  }

  .sr1-showcase__visual {
    min-height: max(104svh, 1120px);
  }

  .sr1-showcase__panel,
  .sr1-showcase__details {
    width: min(34vw, 620px);
  }

  .sr1-showcase__footer {
    grid-template-columns: 41% 59%;
  }

  .sr1-showcase__title strong {
    margin-top: 46px;
    font-family: var(--font-cn-title);
    font-size: 60px;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .sr1-showcase__copy {
    width: min(38vw, 720px);
    min-height: 760px;
  }

  .sr1-showcase__copy p {
    top: clamp(500px, 39vh, 585px);
    width: min(38vw, 720px);
    max-width: 720px;
  }

  .music-op {
    padding-top: 122px;
    padding-bottom: 118px;
  }

  .music-op__header {
    width: min(94vw, 2040px);
    margin-bottom: 64px;
  }

  .music-op__stage {
    width: min(94vw, 2040px);
    min-height: 1240px;
  }

  .music-op__panel {
    grid-template-columns: minmax(760px, 48%) minmax(760px, 1fr);
    gap: 72px;
    align-items: start;
  }

  .music-op__channel {
    width: min(42vw, 900px);
    height: 1184px;
  }

  .music-op__banners {
    width: min(100%, 1120px);
    gap: 32px;
  }

  .music-op__banners img {
    height: calc((1184px - 64px) / 3);
  }

  .poster-showcase {
    grid-template-columns: minmax(0, 59%) minmax(420px, 41%);
    min-height: 112svh;
  }

  .poster-showcase__visual {
    min-height: 112svh;
  }

  .poster-showcase__panel {
    top: 50%;
    width: min(31vw, 640px);
  }

  .poster-showcase__content {
    padding-top: var(--poster-right-inset);
  }

  .poster-showcase__project-link.works__project-link {
    min-width: 142px;
    min-height: 46px;
    gap: 14px;
    padding: 10px 16px 10px 22px;
    font-size: 20px !important;
    line-height: 1;
  }

  .poster-showcase__project-link.works__project-link span {
    font-size: inherit;
    line-height: 1;
  }

  .music-op__footer {
    width: min(94vw, 2040px);
  }

  .music-op__footer p.is-cn-text {
    width: max-content;
    max-width: 94vw;
    white-space: nowrap;
  }

  .works__project-cta > h3.is-cn-title,
  .sr1-showcase__title > strong.is-cn-title,
  .sr1-showcase__copy > h3.is-cn-title,
  .music-op__footer > h3.is-cn-title,
  .film-tv__cta > h3.is-cn-title,
  .poster-showcase__side-cta > p.is-cn-title,
  .poster-showcase__side-cta > h3.is-cn-title,
  .corporate-culture__project-title.is-cn-title,
  .corporate-culture__project h3.is-cn-title,
  .web-design__cta > h3.is-cn-title,
  .amazon-design__header > strong.is-cn-title,
  .commercial-ad__header > strong {
    font-family: var(--font-cn-title);
    font-size: 60px !important;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .film-tv__popup,
  .activity-design__display {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* 4K-only profile information refinements. Keep these scoped so smaller breakpoints stay unchanged. */
@media (min-width: 2200px) {
  .profile-details dl > div {
    grid-template-columns: 170px minmax(0, 1fr) !important;
    column-gap: 42px !important;
  }

  .profile-details dt,
  .profile-contact-row dt {
    white-space: nowrap !important;
  }

  .profile-details dl > div:nth-child(3) dd {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    gap: 14px !important;
    white-space: nowrap !important;
  }

  .profile-details dl > div:nth-child(3) dd br {
    display: none !important;
  }

  .profile-contact-row {
    grid-template-columns: 170px minmax(0, 1fr) !important;
    column-gap: 42px !important;
  }

  .profile-contact {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    gap: 28px !important;
    white-space: nowrap !important;
  }
}
/* 4K-only: preserve the desktop rhythm between the Barbie copy and SR1. */
@media (min-width: 2200px) {
  #works .works__project-cta {
    gap: 20px;
  }

  .sr1-showcase {
    margin-top: 0;
    border-top: 180px solid var(--gray);
    box-shadow: none;
  }
}
@media (min-width: 2200px) {
  footer#contact .footer__cta a.is-cn-text {
    font-size: 22px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.02em !important;
  }
}
/* Keep the SR1 intro readable on medium desktop widths where the oversized
   display title can visually collide with the Chinese copy below. */
@media (min-width: 900px) and (max-width: 1599px) {
  .sr1-showcase .sr1-showcase__title {
    margin-bottom: clamp(3.5rem, 6vw, 7rem);
    line-height: 0.9;
  }

  .sr1-showcase .sr1-showcase__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: clamp(112px, 12vh, 150px);
  }

  .sr1-showcase .sr1-showcase__copy p,
  .sr1-showcase .sr1-showcase__copy .works__project-link {
    position: static;
    z-index: 2;
  }

  .sr1-showcase .sr1-showcase__copy .works__project-link {
    margin-top: auto;
  }
}
@media (min-width: 2200px) {
  .sr1-showcase .sr1-showcase__footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    width: min(820px, 34vw) !important;
    max-width: 820px !important;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 96px !important;
    margin-top: 0 !important;
    align-self: start !important;
    justify-self: start !important;
  }

  .sr1-showcase .sr1-showcase__copy {
    width: 100% !important;
    max-width: 820px !important;
    height: auto !important;
    min-height: 0 !important;
  }
}
/* 4K-only: keep the SR1 description/button wrapper from occupying a large empty hit area. */
@media (min-width: 2200px) {
  main section.sr1-showcase .sr1-showcase__footer {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    align-self: start !important;
    justify-self: start !important;
    inline-size: min(820px, 34vw) !important;
    width: min(820px, 34vw) !important;
    max-inline-size: 820px !important;
    max-width: 820px !important;
    block-size: auto !important;
    height: auto !important;
    min-block-size: 0 !important;
    min-height: 0 !important;
    padding-block: 0 96px !important;
    margin-block: 0 !important;
    gap: 28px !important;
  }

  main section.sr1-showcase .sr1-showcase__footer::before,
  main section.sr1-showcase .sr1-showcase__footer::after {
    content: none !important;
    display: none !important;
  }

  main section.sr1-showcase .sr1-showcase__copy {
    inline-size: 100% !important;
    width: 100% !important;
    max-inline-size: 820px !important;
    max-width: 820px !important;
    block-size: auto !important;
    height: auto !important;
    min-block-size: 760px !important;
    min-height: 760px !important;
  }
}
/* Final 4K title system. Keep all wide-screen title overrides in one place. */
@media (min-width: 2200px) {
  html body #app main .is-cn-title,
  html body #app main h1.is-cn-title,
  html body #app main h2.is-cn-title,
  html body #app main h3.is-cn-title,
  html body #app main .works__project-cta > h3,
  html body #app main .works__project-cta > .is-cn-title,
  html body #app main section.sr1-showcase .sr1-showcase__copy > h3,
  html body #app main section.sr1-showcase .sr1-showcase__copy .is-cn-title,
  html body #app main section.sr1-showcase .sr1-showcase__copy-title,
  html body #app main section.sr1-showcase .sr1-title-cn,
  html body #app main section.sr1-showcase [class*="title"][class*="cn"],
  html body #app main [class*="sr1"] h3.is-cn-title,
  html body #app main [class*="sr1"] .is-cn-title,
  html body #app main [class*="amazon"] h3,
  html body #app main [class*="amazon"] h3.is-cn-title,
  html body #app main [class*="amazon"] .is-cn-title,
  html body #app main .poster-showcase__side-cta > p,
  html body #app main .music-op__footer h3,
  html body #app main .film-tv__cta h3,
  html body #app main .corporate-showcase h3,
  html body #app main .web-showcase h3,
  html body #app main .activity-design h3,
  html body #app main .commercial-ad h3 {
    font-family: "阿里妈妈数黑体", "Alimama ShuHeiTi", "AlimamaShuHeiTi", "Source Han Sans SC", "Microsoft YaHei", sans-serif !important;
    font-size: 60px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    font-stretch: normal !important;
    font-variation-settings: normal !important;
    transform: none !important;
  }

  #app main .sr1-showcase__title > strong.is-cn-text {
    font-family: var(--font-cn-title) !important;
    font-size: 60px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    font-weight: 900 !important;
    font-stretch: normal !important;
    transform: scaleX(1.7857) !important;
    transform-origin: left top;
  }

  html body #app main .hero__availability,
  html body #app main .hero__signature {
    font-size: 24px !important;
    line-height: 1.1;
  }

  html body #app main .poster-showcase__project-link {
    font-family: var(--font-cn-body) !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    font-stretch: normal !important;
    letter-spacing: 0 !important;
    transform: none !important;
  }

  html body #app main .web-design__header > p.is-cn-text,
  html body #app main .amazon-design__header > strong.is-cn-text {
    font-family: var(--font-cn-title) !important;
    font-size: 60px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
  }

  main section.sr1-showcase .sr1-showcase__footer {
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: min(820px, 34vw) !important;
    height: 100% !important;
    block-size: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    pointer-events: none;
  }

  main section.sr1-showcase .sr1-showcase__copy {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  main section.sr1-showcase .sr1-showcase__copy p {
    position: absolute !important;
    top: calc(2vw + 984px) !important;
    left: calc(var(--margin) * 0.58) !important;
    width: min(720px, 32vw) !important;
    pointer-events: auto;
  }

  main section.sr1-showcase .sr1-showcase__copy .works__project-link {
    position: absolute !important;
    bottom: 120px !important;
    left: calc(var(--margin) * 0.58) !important;
    pointer-events: auto;
  }

  .poster-showcase {
    margin-top: 0;
    border-top: 180px solid var(--gray);
    box-shadow: none;
  }
}
