:root {
  --bg: #080908;
  --fg: #f4f0e8;
  --muted: #9b9a93;
  --line: rgba(244, 240, 232, 0.16);
  --green: #b9ff59;
  --cyan: #b9ff59;
  --red: #ff5d50;
  --panel: rgba(255, 255, 255, 0.055);
  --font-title: "Helvetica LT Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-title-oblique: "Helvetica Neue LT Std-93 Black Extended Oblique", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cn: "汉仪旗黑", "HYQiHei", "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-small: Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--fg);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 20% 15%, rgba(183, 255, 88, .18), transparent 32vw),
    radial-gradient(circle at 82% 35%, rgba(121, 215, 255, .14), transparent 28vw),
    var(--bg);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

body.about-video-locked {
  overscroll-behavior-y: none;
}

body.about-video-locked .about-intro {
  --about-cover-progress: 1;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .18;
  background-image:
    repeating-radial-gradient(circle at 12% 34%, rgba(255,255,255,.2) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.cursor {
  position: fixed;
  z-index: 80;
  width: 58px;
  height: 58px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.31);
  mix-blend-mode: difference;
  transition: transform .2s ease, background .2s ease;
}

.cursor.is-hovering {
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255,255,255,.18);
}

.progress {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 60;
  width: 1px;
  height: 160px;
  background: var(--line);
  transform: translateY(-50%);
}

.progress span {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--green);
}

.project-detail {
  --detail-edge-x: clamp(24px, 3.9vw, 80px);
  --detail-edge-top: clamp(80px, 9.6vh, 104px);
  --detail-edge-bottom: clamp(24px, 6.8vh, 72px);
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  padding:
    var(--detail-edge-top)
    var(--detail-edge-x)
    var(--detail-edge-bottom);
  background: rgba(244, 240, 232, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.project-detail.is-open {
  opacity: 1;
  pointer-events: auto;
}

.detail-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: #050505;
  color: var(--fg);
  box-shadow: 0 28px 120px rgba(0,0,0,.46);
  transform: translateY(28px) scale(.985);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.project-detail.is-open .detail-frame {
  transform: translateY(0) scale(1);
}

.detail-hint {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  color: rgba(244,240,232,.78);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.detail-gallery {
  position: absolute;
  inset: 80px 0 190px;
  display: flex;
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 18vw;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.detail-gallery::-webkit-scrollbar {
  display: none;
}

.detail-gallery.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.detail-media {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(82vw, 980px);
  height: auto;
  max-height: min(58vh, 560px);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.22);
  background: #0b0b0b;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}

.detail-media:nth-child(odd) {
  width: auto;
  height: auto;
}

.detail-media img,
.detail-media video {
  width: auto;
  height: auto;
  max-width: min(82vw, 980px);
  max-height: min(58vh, 560px);
  object-fit: contain;
  filter: contrast(1.04) saturate(.94);
  user-select: none;
}

.detail-media img {
  pointer-events: none;
}

.detail-media video {
  pointer-events: auto;
}

.detail-copy {
  position: absolute;
  left: clamp(28px, 3.4vw, 52px);
  bottom: clamp(38px, 5vh, 58px);
  z-index: 2;
  width: min(520px, calc(100% - 56px));
}

.detail-copy span,
.detail-copy p,
.detail-copy a {
  font-family: "Courier New", monospace;
}

.detail-copy span {
  color: rgba(244,240,232,.62);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: calc(.92em + 5px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(244,240,232,.62);
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
}

.detail-copy a {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(244,240,232,.86);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-close {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--fg);
  color: #050505;
  cursor: pointer;
  transform: translateX(-50%);
}

.detail-nav {
  position: absolute;
  right: clamp(28px, 3.4vw, 52px);
  bottom: 52px;
  z-index: 3;
  display: flex;
  gap: 18px;
}

.detail-nav button {
  border: 0;
  background: transparent;
  color: rgba(244,240,232,.8);
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
}

.detail-nav button:hover {
  color: var(--fg);
}

body.detail-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 0;
  background: rgba(8, 9, 8, .1);
  backdrop-filter: blur(9px) saturate(1.08);
  -webkit-backdrop-filter: blur(9px) saturate(1.08);
  transition:
    background .38s ease,
    backdrop-filter .38s ease,
    border-color .38s ease,
    color .38s ease;
}

.topbar a,
.topbar button {
  pointer-events: auto;
}

.brand,
.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(244,240,232,.82);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color .38s ease;
}

.topbar a {
  color: inherit;
}

.topbar.is-inverted {
  border-bottom-color: transparent;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(9px) saturate(1.08);
  -webkit-backdrop-filter: blur(9px) saturate(1.08);
  box-shadow: none;
  color: #050505;
}

.topbar.is-inverted .brand,
.topbar.is-inverted nav {
  color: #050505;
}

.topbar.is-inverted .brand-logo {
  filter: invert(1);
}

.topbar.is-inverted .brand-wordmark {
  filter: none;
}

.topbar.is-inverted .nav-toggle {
  border-color: rgba(0,0,0,.28);
  background: rgba(0,0,0,.04);
  color: #050505;
}

.brand-logo {
  width: clamp(64px, 6.3vw, 105px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateY(-2px);
}

.brand-wordmark {
  width: auto;
  height: 22px;
  object-fit: contain;
  flex: 0 1 auto;
}

.brand-wordmark--text {
  display: inline-block;
  width: auto;
  max-width: none;
  color: currentColor;
  font-family: var(--font-title-oblique);
  font-size: clamp(18px, 1.7vw, 30px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 116px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(244,240,232,.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244,240,232,.1), transparent 58%),
    rgba(244,240,232,.025);
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: inset 0 0 22px rgba(244,240,232,.045);
  z-index: 70;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(244,240,232,.42);
  background: rgba(244,240,232,.1);
  color: var(--fg);
}

.nav-toggle-text {
  position: relative;
  display: block;
  width: 52px;
  height: 1em;
  overflow: hidden;
  line-height: 1;
}

.nav-toggle-text span {
  display: block;
  height: 1em;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-text span {
  transform: translateY(-100%);
}

.nav-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-icon::after {
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  transform: rotate(225deg);
}

.menu-prelayers {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 71;
  display: block;
  width: min(430px, 100vw);
  height: 100vh;
  pointer-events: none;
}

.menu-prelayers span {
  position: absolute;
  inset: 0;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.menu-prelayers span:first-child {
  background: #d8ff66;
}

.menu-prelayers span:last-child {
  background: #9cff39;
  transition-delay: .07s;
}

.menu-prelayers.is-open span {
  transform: translate3d(0, 0, 0);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 72;
  display: flex;
  width: min(430px, 100vw);
  min-height: 100vh;
  padding: clamp(96px, 14vh, 138px) clamp(28px, 4vw, 44px) 34px;
  background: var(--fg);
  color: #080908;
  box-shadow: -32px 0 90px rgba(0,0,0,.35);
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform .62s cubic-bezier(.2,.8,.2,1);
  transition-delay: 0s;
}

.mobile-menu.is-open {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: .12s;
}

.mobile-menu-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.mobile-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 70px;
  color: #080908;
  font-size: clamp(46px, 7vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color .25s ease;
}

.mobile-menu a::after {
  counter-increment: menuItem;
  content: counter(menuItem, decimal-leading-zero);
  position: absolute;
  top: 8px;
  right: 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  opacity: .85;
}

.mobile-menu-inner {
  counter-reset: menuItem;
}

.mobile-menu a span {
  display: block;
  transform: translate3d(0, 120%, 0) rotate(8deg);
  transform-origin: left bottom;
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
}

.mobile-menu.is-open a span {
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.mobile-menu.is-open a:nth-child(1) span {
  transition-delay: .26s;
}

.mobile-menu.is-open a:nth-child(2) span {
  transition-delay: .34s;
}

.mobile-menu.is-open a:nth-child(3) span {
  transition-delay: .42s;
}

.mobile-menu.is-open a:nth-child(4) span {
  transition-delay: .5s;
}

.mobile-menu a:hover {
  color: #9cff39;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(90px, 12vh, 150px) clamp(20px, 6vw, 88px);
}

.hero {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 45vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 76px);
  overflow: hidden;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px) 0 0 / 88px 88px,
    #030403;
}

.hero::after {
  content: none;
}

.hero-copy,
.hero-stage {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: min(45vw, 780px);
  background: transparent;
}

.eyebrow,
.section-kicker,
.section-head p,
.process-title p {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 8px;
  font-family: var(--font-small);
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(88px, 7.75vw, 154px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  overflow: visible;
}

.hero-title span {
  display: block;
  transform-origin: 0 58%;
  will-change: transform, opacity, filter, clip-path;
}

.hero-title-oblique {
  font-family: var(--font-title-oblique);
  font-style: oblique;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(244,240,232,.62);
  font-family: var(--font-cn);
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #10120c;
  font-family: var(--font-small);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.button.ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.hero-stage {
  position: absolute;
  left: 38.5vw;
  top: 0;
  z-index: 1;
  width: 62vw;
  height: 100%;
  perspective: 1200px;
  pointer-events: none;
}

.stage-depth {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.hero .stage-ring {
  display: none;
}

.hero .video-shell {
  display: block;
  z-index: 0;
}

.stage-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.16);
  transform-style: preserve-3d;
}

.ring-a {
  transform: translateZ(-160px) rotateX(62deg) rotateZ(12deg);
}

.ring-b {
  inset: 18%;
  border-color: rgba(183,255,88,.32);
  transform: translateZ(-40px) rotateX(62deg) rotateZ(-9deg);
}

.ring-c {
  inset: 30%;
  border-color: rgba(121,215,255,.35);
  transform: translateZ(90px) rotateX(62deg) rotateZ(22deg);
}

.video-shell {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  contain: layout paint;
  border: 0;
  background: transparent;
  transform: none;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(1.02) contrast(1.04);
  opacity: .96;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-label-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.floating-type {
  position: absolute;
  color: var(--fg);
  font-family: var(--font-cn);
  font-size: clamp(12px, 1.05vw, 21px);
  font-weight: 900;
  white-space: nowrap;
  transform-style: preserve-3d;
  text-shadow: 0 0 18px rgba(0,0,0,.45);
}

.type-a {
  left: 20%;
  top: 37%;
  transform: translateZ(260px);
}

.type-b {
  left: 67%;
  right: auto;
  top: 26%;
  color: var(--cyan);
  transform: translateZ(320px);
}

.type-c {
  left: 64%;
  right: auto;
  bottom: 18%;
  color: var(--green);
  transform: translateZ(240px);
}

.hero .scroll-cue {
  display: none;
}

.category-nav {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 0;
  background: #030403;
}

.category-nav-scroll {
  position: relative;
  height: 300vh;
  --category-cover-progress: 0;
}

.category-nav-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #030403;
  isolation: isolate;
  transform: translate3d(0, calc(var(--category-cover-progress, 0) * -22vh), 0) scale(calc(1 - var(--category-cover-progress, 0) * .032));
  opacity: calc(1 - var(--category-cover-progress, 0) * .3);
  transform-origin: center top;
  will-change: transform, opacity;
}

.category-nav-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 52%, rgba(244,240,232,.06), transparent 34%),
    linear-gradient(#030403, #030403);
}

.category-line {
  position: absolute;
  z-index: 3;
  width: max-content;
  color: #f4f0e8;
  font-family: var(--font-small);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity, color;
}

.category-line-dynamic-en {
  left: 50%;
  top: 18.5vh;
  font-size: 5.15vw;
  transform: translate3d(-50%, 0, 0);
}

.category-line-dynamic-cn {
  left: 55.5%;
  top: 31.5vh;
  font-family: var(--font-title);
  font-size: 4.35vw;
  font-weight: 900;
}

.category-line-visual-en {
  left: 50%;
  top: 48.5vh;
  font-size: 5.15vw;
  transform: translate3d(-50%, 0, 0);
}

.category-line-visual-cn {
  left: 29.5%;
  top: 62vh;
  color: #f4f0e8;
  font-family: var(--font-title);
  font-size: 4.35vw;
  font-weight: 900;
}

.category-line-other {
  left: 50%;
  top: 78vh;
  color: #f4f0e8;
  font-size: 4.8vw;
  font-weight: 900;
  transform: translate3d(-50%, 0, 0);
}

.category-line-other span {
  font-family: var(--font-title);
  margin-left: 0;
}

.category-line-label-image {
  display: block;
  width: auto;
  height: 3.915vw;
  max-width: none;
  object-fit: contain;
}

.category-line-other {
  display: flex;
  align-items: center;
  gap: 1.15vw;
}

.category-media {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  background: #090909;
  transform-origin: center center;
  will-change: transform, opacity;
}

.category-media::after {
  content: none;
}

.category-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transform: scale(1);
  will-change: transform;
}

.category-media-top {
  left: 40.76%;
  top: 36.12%;
  width: 25.57vw;
}

.category-media-right {
  left: 66.20%;
  top: 66.39%;
  width: 34.06vw;
}

.category-media-left {
  left: 25.13%;
  top: 82.39%;
  width: 16.98vw;
}

.about-intro {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  --about-cover-progress: 1;
  margin-top: -100vh;
  padding: 0;
  overflow: hidden;
  background: #acff4a;
  color: #050505;
  isolation: isolate;
  box-shadow: 0 -34px 80px rgba(0,0,0,.28);
  transform: translate3d(0, calc((1 - var(--about-cover-progress, 1)) * 100vh), 0);
  will-change: transform;
}

.about-intro-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  background: #050505;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.about-intro-fallback {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  opacity: 0;
  object-fit: cover;
  object-position: center;
}

.about-intro-info {
  position: absolute;
  left: clamp(28px, 2.4vw, 48px);
  bottom: clamp(34px, 4.2vw, 62px);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: clamp(72px, 12vw, 220px);
  color: #050505;
  pointer-events: none;
}

.about-intro-role {
  min-width: clamp(190px, 18vw, 310px);
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(10px);
}

.about-intro-role span,
.about-intro-role strong {
  display: block;
  font-size: clamp(16px, 1.05vw, 22px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-intro-role strong {
  margin-top: 2px;
  font-family: Helvetica, Arial, sans-serif;
}

.about-intro.is-inview .about-intro-role {
  animation: aboutIntroRoleIn 1.15s cubic-bezier(.16, 1, .3, 1) forwards;
}

.about-intro.is-inview .about-intro-role:nth-child(2) {
  animation-delay: .18s;
}

@keyframes aboutIntroRoleIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--green), transparent);
  animation: cue 1.2s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleY(.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.motion {
  min-height: auto;
  padding-top: 0;
}

.motion-title-scroll {
  position: relative;
  height: 230vh;
  margin: 0 calc(clamp(20px, 6vw, 88px) * -1) clamp(72px, 12vh, 140px);
}

.motion-title-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 58%, rgba(183,255,88,.12), transparent 38%),
    linear-gradient(180deg, #1c1d1f 0%, #171819 100%);
  isolation: isolate;
  --wheel-progress: 0;
}

.motion-title-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(244,240,232,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,232,.055) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .42;
}

.motion-title-copy {
  position: absolute;
  left: clamp(20px, 6vw, 88px);
  top: clamp(80px, 8vh, 110px);
  width: calc(100% - (clamp(20px, 6vw, 88px) * 2));
  color: #fff;
  font-size: clamp(78px, 11.4vw, 198px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: none;
  transform-origin: center top;
  z-index: 2;
}

.motion-title-copy span {
  display: block;
  white-space: normal;
  text-align: center;
}

.motion-title-copy span:first-child {
  font-style: italic;
}

.motion-title-label {
  position: absolute;
  top: clamp(350px, 48vh, 500px);
  z-index: 4;
  color: #fff;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.motion-title-label-left {
  left: clamp(26px, 4vw, 70px);
}

.motion-title-label-right {
  right: clamp(26px, 4vw, 70px);
}

.motion-reel-wheel {
  position: absolute;
  left: 50%;
  bottom: -32vh;
  z-index: 3;
  width: min(61vw, 1040px);
  height: 64vh;
  perspective: 1400px;
  overflow: visible;
  --panel-h: 190px;
  --ring-z: clamp(300px, 24vw, 430px);
  transform:
    translate3d(-50%, calc((1 - var(--wheel-progress)) * 66vh - var(--wheel-progress) * 26vh), 0)
    rotateX(calc(12deg - var(--wheel-progress) * 6deg));
  transform-origin: center center;
  transition: transform .08s linear;
}

.motion-helix-canvas {
  position: absolute;
  inset: -20vh -18vw -18vh;
  z-index: 4;
  cursor: grab;
  touch-action: none;
  overflow: visible;
}

.motion-helix-canvas[data-dragging="true"] {
  cursor: grabbing;
}

.motion-helix-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motion-reel-wheel.is-three .motion-reel-ring {
  display: none;
}

.motion-reel-ring {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 22.5vh;
  transform-style: preserve-3d;
  transform: rotateX(-4deg) rotateY(calc(-20deg + var(--wheel-progress) * -96deg));
}

.motion-reel-ring.ring-top {
  top: 0;
  transform: translateX(-50%) rotateX(-7deg) rotateY(calc(-24deg + var(--wheel-progress) * -92deg));
}

.motion-reel-ring.ring-middle {
  top: 19.5vh;
  transform: translateX(-50%) scale(1.06) rotateX(-3deg) rotateY(calc(6deg + var(--wheel-progress) * -118deg));
}

.motion-reel-ring.ring-bottom {
  top: 39vh;
  transform: translateX(-50%) scale(.94) rotateX(0deg) rotateY(calc(28deg + var(--wheel-progress) * -84deg));
}

.motion-reel-ring figure {
  --angle: var(--a);
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: max-content;
  height: var(--panel-h);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244,240,232,.13);
  border-radius: 0;
  clip-path: none;
  background: #050605;
  box-shadow: 0 18px 58px rgba(0,0,0,.46);
  opacity: .9;
  transform:
    translate(-50%, -50%)
    rotateY(var(--angle))
    translateZ(var(--ring-z));
}

.motion-reel-ring figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.1), transparent 8%, transparent 92%, rgba(0,0,0,.3)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 14%, transparent 86%, rgba(0,0,0,.22));
  mix-blend-mode: screen;
  opacity: .34;
}

.motion-reel-ring img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: saturate(.98) contrast(1.08) brightness(.88);
  transform: none;
}

.motion-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, .75fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.motion-feature {
  min-height: auto;
  padding-top: clamp(96px, 11vh, 128px);
  padding-right: 0;
  padding-bottom: clamp(72px, 9vh, 104px);
  padding-left: 0;
  background:
    linear-gradient(rgba(244,240,232,.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(90deg, rgba(244,240,232,.035) 1px, transparent 1px) 0 0 / 92px 92px,
    #070807;
  color: #f4f0e8;
}

.motion-feature .motion-grid {
  grid-template-columns:
    minmax(0, calc(50vw - clamp(20px, 4vw, 56px)))
    minmax(360px, 1fr);
  gap: 0;
  margin-left: clamp(20px, 4vw, 56px);
  min-height: calc(100vh - clamp(168px, 20vh, 232px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.motion-feature .sticky-panel {
  position: sticky;
  top: clamp(96px, 11vh, 128px);
  width: 60%;
  max-width: 60%;
  height: auto;
  min-height: 0;
  aspect-ratio: 7 / 6;
  align-self: start;
  border: 0;
  border-right: 1px solid var(--line);
}

.motion-feature .motion-panel video {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: contain;
  background: #000;
  opacity: 0;
}

.motion-project-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  transition: opacity .28s ease, filter .45s ease;
}

.motion-feature .motion-copy {
  align-self: start;
  padding-left: clamp(34px, 4.2vw, 76px);
  padding-bottom: clamp(40px, 8vh, 88px);
}

.motion-feature .motion-project-item {
  min-height: 0;
  padding-right: clamp(12px, 2vw, 32px);
  padding-top: clamp(18px, 2.5vh, 30px);
  padding-bottom: clamp(18px, 2.5vh, 30px);
  outline: none;
  cursor: default;
}

.motion-feature .motion-project-item h2 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 3.15vw, 64px);
  line-height: calc(.98em + 5px);
  text-wrap: balance;
}

.motion-feature .motion-project-item p {
  max-width: 70ch;
  margin: 0;
  overflow: hidden;
  color: rgba(244,240,232,.5);
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .3s ease;
}

.motion-feature .motion-project-item:hover p,
.motion-feature .motion-project-item:focus-visible p {
  overflow: visible;
  color: rgba(244,240,232,.82);
  white-space: normal;
}

.motion-feature .motion-project-item:hover,
.motion-feature .motion-project-item:focus-visible {
  background: rgba(244,240,232,.025);
}

.motion-feature .scrub-label {
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
}

.motion-feature .scrub-label span {
  font-size: 18px;
}

.sticky-panel {
  position: sticky;
  top: 120px;
  height: min(68vh, 680px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.motion-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.scrub-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
}

.scrub-label span {
  color: var(--muted);
  font-size: 12px;
}

.scrub-label strong {
  color: var(--green);
  font-size: 46px;
  line-height: .8;
}

.motion-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}

.step {
  border-top: 1px solid var(--line);
  min-height: clamp(138px, 18vh, 198px);
  padding: clamp(16px, 2vh, 24px) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step:first-child {
  padding-top: 0;
}

.step span {
  color: var(--green);
}

.step h2,
.section-head h2,
.process-title h2 {
  margin: 18px 0;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 86px);
  line-height: 1.02;
}

.step h2 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 3.8vw, 68px);
  line-height: .98;
}

.section-head h2 {
  max-width: none;
  font-size: clamp(74px, 14vw, 230px);
  line-height: .92;
  font-weight: 900;
}

.step p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.55;
}

.work {
  min-height: 260vh;
}

.section-head {
  max-width: 1100px;
}

.horizontal-wrap {
  position: sticky;
  top: 110px;
  height: 72vh;
  overflow: hidden;
  margin-top: 56px;
}

.horizontal-track {
  display: flex;
  gap: 24px;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.work-card {
  position: relative;
  width: min(68vw, 760px);
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) brightness(.76);
  transform: scale(1.08);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease;
  will-change: transform, filter, clip-path;
}

.work-card:hover img {
  transform: scale(1.02);
  filter: grayscale(0) brightness(.94);
}

.work-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.work-card span {
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 360px;
  margin: 0;
  text-align: right;
  font-size: clamp(28px, 4vw, 64px);
  line-height: .9;
}

.overview {
  min-height: 210vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px) 0 0 / 92px 92px,
    #07101d;
  overflow: hidden;
}

.overview-hero {
  min-height: calc(100svh - clamp(180px, 24vh, 250px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}

.overview-title {
  margin: 0;
  color: #fff;
  font-size: clamp(86px, 10.8vw, 208px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: 0;
}

.overview-intro {
  max-width: 920px;
  margin: 24px 0 0;
  color: rgba(244,240,232,.78);
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1.55;
}

.overview-cta {
  position: absolute;
  right: clamp(28px, 5vw, 88px);
  top: clamp(190px, 23vh, 250px);
  display: grid;
  place-items: center;
  width: clamp(106px, 9vw, 142px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  color: #07101d;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 800;
  line-height: .9;
  text-align: center;
}

.overview-categories {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(17px, 2.8vw, 41px);
  align-items: baseline;
  margin-top: auto;
  padding-bottom: 0;
}

.category-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(244,240,232,.86);
  cursor: pointer;
  font-size: clamp(21px, 3.08vw, 46px);
  line-height: .9;
  letter-spacing: 0;
}

.category-tab sup {
  position: relative;
  top: -.45em;
  margin-left: 5px;
  color: inherit;
  font-size: .34em;
  font-weight: 800;
}

.category-tab.is-active {
  color: var(--green);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.25vw, 34px) clamp(16px, 1.8vw, 26px);
  align-items: start;
  padding: clamp(30px, 6vh, 64px) 0 0;
}

.overview-card {
  position: relative;
  grid-column: span 1;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}

.overview-card:nth-child(2) {
  margin-top: 0;
}

.overview-card:nth-child(4) {
  margin-top: 0;
}

.overview-card.tall {
  min-height: 0;
}

.overview-card.wide {
  grid-column: span 1;
  min-height: 0;
}

.overview-card img,
.overview-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
  will-change: transform, filter, clip-path;
}

.overview-card.tall img,
.overview-card.tall video {
  aspect-ratio: 1.2 / 1;
}

.overview-card.wide img,
.overview-card.wide video {
  aspect-ratio: 1.2 / 1;
}

.overview-card:hover img,
.overview-card:hover video {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.06);
}

.overview-card div {
  padding: 14px 0 0;
}

.overview-card span {
  color: rgba(244,240,232,.52);
  font-size: 12px;
  text-transform: uppercase;
}

.overview-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(18px, 1.75vw, 28px);
  line-height: .96;
  text-transform: uppercase;
}

.overview-card a {
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.overview-card.is-hidden {
  display: none;
}

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
  min-height: auto;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-row {
  width: 100%;
  display: grid;
  grid-template-columns: 60px minmax(180px, .8fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.process-row span {
  color: var(--green);
}

.process-row strong {
  font-size: clamp(24px, 3vw, 42px);
}

.process-row em {
  color: var(--muted);
  font-style: normal;
}

.process-row:hover strong {
  color: var(--green);
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100vh;
}

.contact p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-link {
  margin-top: 32px;
  font-size: clamp(48px, 9vw, 150px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  transform: none !important;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 110px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-gsap .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js-gsap .work-card,
.js-gsap .overview-card,
.js-gsap .process-row,
.js-gsap .step,
.js-gsap .media-card,
.js-gsap .sticky-panel {
  will-change: transform, opacity, filter, clip-path;
}

.js-gsap .overview-card {
  transition: opacity .35s ease;
}

@media (max-width: 900px) {
  .topbar nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero,
  .motion-grid,
  .process {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    align-content: center;
    gap: 24px;
  }

  .hero-copy {
    max-width: 92vw;
  }

  .hero-title {
    font-size: clamp(56px, 14vw, 104px);
  }

  .hero-stage {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 56vh;
    min-height: 390px;
    margin-top: 28px;
  }

  .category-nav-scroll {
    height: 190vh;
  }

  .category-nav-stage {
    min-height: 620px;
  }

  .category-line-dynamic-en {
    top: 19vh;
    font-size: clamp(46px, 11vw, 88px);
  }

  .category-line-dynamic-cn {
    left: 50%;
    top: 32vh;
    font-size: clamp(42px, 11vw, 78px);
    transform: translate3d(-50%, 0, 0);
  }

  .category-line-visual-en {
    top: 48vh;
    font-size: clamp(44px, 10vw, 80px);
  }

  .category-line-visual-cn {
    left: 50%;
    top: 61vh;
    font-size: clamp(42px, 10vw, 78px);
    transform: translate3d(-50%, 0, 0);
  }

  .category-line-other {
    top: 76vh;
    font-size: clamp(42px, 10vw, 78px);
  }

  .category-line-label-image {
    height: clamp(38px, 9vw, 70px);
  }

  .category-media-top {
    left: 43%;
    top: 36%;
    width: min(58vw, 420px);
  }

  .category-media-right {
    left: 60%;
    top: 65%;
    width: min(64vw, 460px);
  }

  .category-media-left {
    left: 35%;
    top: 80%;
    width: min(32vw, 220px);
  }

  .motion {
    min-height: auto;
  }

  .motion-title-scroll {
    height: 200vh;
    margin-bottom: 54px;
  }

  .motion-title-stage {
    min-height: 620px;
  }

  .motion-title-copy {
    left: 20px;
    top: 92px;
    width: calc(100% - 40px);
    font-size: clamp(44px, 14vw, 88px);
  }

  .motion-title-label {
    top: 40vh;
    font-size: clamp(22px, 7vw, 34px);
  }

  .motion-reel-wheel {
    width: 76vw;
    height: 48vh;
    bottom: -22vh;
    --panel-h: 118px;
    --ring-z: clamp(170px, 40vw, 245px);
  }

  .motion-helix-canvas {
    inset: -16vh -22vw -14vh;
  }

  .motion-reel-ring figure {
    transform:
      translate(-50%, -50%)
      rotateY(var(--angle))
      translateZ(var(--ring-z));
  }

  .motion-reel-ring.ring-top {
    top: 0;
  }

  .motion-reel-ring.ring-middle {
    top: 15vh;
  }

  .motion-reel-ring.ring-bottom {
    top: 30vh;
  }

  .sticky-panel {
    position: relative;
    top: auto;
    height: 56vh;
  }

  .motion-feature {
    min-height: auto;
  }

  .motion-feature .motion-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .motion-feature .sticky-panel {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 7 / 6;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .motion-feature .motion-copy {
    padding: 0 0 80px;
  }

  .motion-feature .motion-project-item {
    padding-left: 0;
  }

  .motion-copy {
    padding-top: 0;
    gap: 0;
  }

  .step {
    min-height: clamp(128px, 20vh, 180px);
    padding: 18px 0;
  }

  .work-card {
    width: 84vw;
  }

  .process-row {
    grid-template-columns: 42px 1fr;
  }

  .process-row em {
    grid-column: 2;
  }

  .overview {
    min-height: auto;
  }

  .overview-hero {
    min-height: 84vh;
    gap: 56px;
  }

  .overview-title {
    font-size: clamp(66px, 21vw, 118px);
  }

  .section-head h2 {
    font-size: clamp(66px, 21vw, 118px);
  }

  .overview-intro {
    max-width: 92vw;
    margin-top: 34px;
    font-size: 20px;
  }

  .overview-cta {
    position: relative;
    right: auto;
    top: auto;
    align-self: flex-end;
    width: 104px;
  }

  .overview-categories {
    gap: 15px;
    padding-bottom: 56px;
  }

  .category-tab {
    font-size: clamp(19px, 6.3vw, 31px);
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
  }

  .overview-card,
  .overview-card.wide,
  .overview-card.tall {
    grid-column: span 1;
    min-height: 0;
    margin-top: 0;
  }

  .overview-card img,
  .overview-card video,
  .overview-card.tall img,
  .overview-card.tall video,
  .overview-card.wide img,
  .overview-card.wide video {
    aspect-ratio: 1.1 / 1;
  }

  .overview-card div {
    padding-top: 10px;
  }

  .overview-card span {
    font-size: 10px;
  }

  .overview-card h3 {
    margin: 6px 0 8px;
    font-size: clamp(15px, 4.1vw, 21px);
  }

  .overview-card a {
    font-size: 11px;
  }

  .overview-card:nth-child(2),
  .overview-card:nth-child(4) {
    margin-top: 0;
  }

  .project-detail {
    --detail-edge-x: 10px;
    --detail-edge-top: 72px;
    --detail-edge-bottom: 10px;
  }

  .detail-frame {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .detail-hint {
    top: 18px;
    width: 100%;
    text-align: center;
    font-size: 11px;
  }

  .detail-gallery {
    inset: 58px 0 260px;
    gap: 38px;
    padding: 0 34px;
  }

  .detail-media,
  .detail-media:nth-child(odd) {
    width: auto;
    height: auto;
    max-width: 84vw;
    max-height: 42vh;
  }

  .detail-media img,
  .detail-media video {
    max-width: 84vw;
    max-height: 42vh;
    object-fit: contain;
  }

  .detail-copy {
    bottom: 92px;
  }

  .detail-copy h2 {
    font-size: 30px;
  }

  .detail-copy p {
    font-size: 11px;
  }

  .detail-close {
    bottom: 22px;
    width: 48px;
    height: 48px;
  }

  .detail-nav {
    right: 22px;
    bottom: 34px;
  }

  .detail-nav button {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 15px;
    max-width: calc(100vw - 56px);
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-stage {
    height: 52vh;
    min-height: 390px;
  }

  .hero .video-shell {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .floating-type {
    font-size: 11px;
  }

  .type-a {
    left: -4%;
  }

  .type-b {
    left: auto;
    right: 12%;
  }

  .type-c {
    left: auto;
    right: 18%;
    bottom: 18%;
  }
}

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

/* Final two portfolio pages — authored from the supplied 0807 boards. */
@font-face {
  font-family: "HY QiHei 50S Web";
  src: url("./assets/fonts/HYQiHei-50S.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "HY QiHei 70S Web";
  src: url("./assets/fonts/HYQiHei-70S.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "HY QiHei 60S Web";
  src: url("./assets/fonts/HYQiHei-60S.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Standard Bold Web";
  src: url("./assets/fonts/Helvetica-Bold-Standard.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Regular Web";
  src: url("./assets/fonts/Helvetica-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Futura Bk BT Book Web";
  src: url("./assets/fonts/Futura-Bk-BT-Book.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.final-page {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #030303;
  color: #f5f3ee;
}

.final-motion-ready [data-final-reveal] {
  opacity: 0;
  filter: blur(10px);
  clip-path: inset(0 0 22% 0);
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 760ms cubic-bezier(.16, 1, .3, 1) var(--final-delay, 0ms),
    filter 960ms cubic-bezier(.16, 1, .3, 1) var(--final-delay, 0ms),
    clip-path 980ms cubic-bezier(.16, 1, .3, 1) var(--final-delay, 0ms),
    transform 980ms cubic-bezier(.16, 1, .3, 1) var(--final-delay, 0ms);
}

.final-motion-ready [data-final-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

.about-page {
  height: 100svh;
  padding: clamp(76px, 8vh, 96px) clamp(18px, 2.5vw, 48px) clamp(42px, 6vh, 68px);
}

.about-page-kicker {
  margin: 0;
  color: rgba(245, 243, 238, .72);
  font-family: var(--font-small);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 31.5% 68.5%;
  min-height: calc(100svh - 126px);
}

.about-page-statement {
  grid-column: 2;
  align-self: start;
  max-width: 30ch;
  margin: clamp(12px, 2.3vh, 24px) 0 0;
  font-family: var(--font-cn);
  font-size: clamp(32px, 2.72vw, 54px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.about-page-copy {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  width: min(45vw, 860px);
  margin: 0 0 clamp(42px, 8vh, 80px) 20vw;
  font-family: var(--font-cn);
}

.about-page-copy p {
  margin: 0 0 12px;
  color: rgba(245, 243, 238, .78);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.55;
}

.about-page-copy strong {
  color: #f5f3ee;
  font-weight: 800;
}

.resume-read-more {
  min-width: clamp(180px, 14vw, 264px);
  min-height: 62px;
  margin-top: clamp(22px, 3vh, 34px);
  padding: 0 32px;
  border: 2px solid rgba(245, 243, 238, .64);
  border-radius: 999px;
  background: transparent;
  color: #f5f3ee;
  font-family: var(--font-en);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 700;
  transition:
    color 220ms ease,
    background-color 300ms cubic-bezier(.16, 1, .3, 1),
    border-color 300ms ease,
    transform 300ms cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
}

.resume-read-more:hover,
.resume-read-more:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #050505;
  transform: translateY(-2px);
  outline: none;
}

.contact-page {
  display: grid;
  grid-template-columns: 20% 35% 25% 20%;
  grid-template-rows: 38% 62%;
  padding: clamp(92px, 10vh, 112px) clamp(16px, 2vw, 38px) 22px;
}

.contact-page-info {
  align-self: start;
  color: rgba(245, 243, 238, .62);
  font-family: var(--font-cn);
  font-size: clamp(12px, .9vw, 17px);
  font-weight: 650;
  line-height: 1.85;
}

.contact-page-info h2 {
  margin: 0 0 10px;
  color: rgba(245, 243, 238, .52);
  font-size: inherit;
  line-height: inherit;
}

.contact-page-info p,
.contact-page-info a {
  display: block;
  margin: 0;
  color: inherit;
}

.contact-page-info-left {
  grid-column: 1;
  grid-row: 1;
  padding-top: 19vh;
}

.contact-page-info-left a {
  margin-bottom: 20px;
  color: #f5f3ee;
}

.contact-page-info-skills {
  grid-column: 2;
  grid-row: 1;
  padding-top: 19vh;
}

.contact-page-note {
  grid-column: 4;
  grid-row: 1;
  padding-top: 19vh;
}

.contact-page-note p {
  max-width: 29ch;
  color: rgba(245, 243, 238, .72);
  line-height: 1.9;
}

.contact-wordmark {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: end;
  margin: 0 0 -4.2vw -1vw;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(160px, 24.5vw, 470px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.contact-portrait {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: center;
  width: min(14vw, 270px);
  aspect-ratio: .96;
  margin-bottom: 8px;
  background-color: #aaa;
  background-image: url("./assets/final-contact-board.png");
  background-repeat: no-repeat;
  background-size: 787% 385%;
  background-position: 69% 95.66%;
}

.contact-brand-lockup {
  grid-column: 4;
  grid-row: 2;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(36px, 9vh, 86px);
  padding: 0 0 6px;
}

.contact-brand-lockup img {
  width: clamp(110px, 8.5vw, 164px);
  height: auto;
  filter: none;
}

.contact-brand-lockup a {
  color: rgba(245, 243, 238, .88);
  font-family: var(--font-small);
  font-size: clamp(12px, .9vw, 17px);
  font-weight: 700;
}

.resume-detail[hidden] {
  display: none;
}

.resume-detail {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 36px);
}

.resume-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(12px);
}

.resume-detail-panel {
  position: relative;
  box-sizing: border-box;
  width: min(1500px, 96vw, calc((94vh - 130px) * 16 / 9));
  height: 94vh;
  max-height: 94vh;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 238, .22);
  background: #050505;
  color: #f5f3ee;
  scrollbar-width: none;
  animation: resumePanelIn 560ms cubic-bezier(.16, 1, .3, 1) both;
}

.resume-detail-panel::-webkit-scrollbar {
  display: none;
}

.resume-detail-header {
  position: relative;
  z-index: 2;
  top: 0;
  display: flex;
  box-sizing: border-box;
  height: 130px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(245, 243, 238, .18);
  background: rgba(5, 5, 5, .94);
  backdrop-filter: blur(10px);
}

.resume-detail-header span {
  color: var(--green);
  font-family: var(--font-small);
  font-size: 11px;
  font-weight: 700;
}

.resume-detail-header h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 2.4vw, 42px);
}

.resume-detail-close {
  min-width: 104px;
  min-height: 44px;
  border: 1px solid rgba(245, 243, 238, .42);
  border-radius: 999px;
  background: transparent;
  color: #f5f3ee;
  font-weight: 800;
  cursor: pointer;
}

.resume-detail-close:hover,
.resume-detail-close:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #050505;
  outline: none;
}

.resume-detail-gallery {
  display: grid;
  grid-auto-rows: 100%;
  height: calc(100% - 130px);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  gap: 0;
  padding: 0;
  background: rgba(245, 243, 238, .15);
}

.resume-detail-gallery::-webkit-scrollbar {
  display: none;
}

.resume-detail-gallery figure {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  background: #090909;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.resume-detail-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.resume-detail-open {
  overflow: hidden;
}

@keyframes resumePanelIn {
  from { opacity: 0; clip-path: inset(7% 5%); transform: translate3d(0, 24px, 0) scale(.985); }
  to { opacity: 1; clip-path: inset(0); transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 900px) {
  .about-page {
    height: auto;
    padding: 82px 20px 52px;
  }

  .about-page-grid {
    display: block;
    min-height: auto;
  }

  .about-page-statement {
    margin-top: 34px;
    font-size: clamp(28px, 7vw, 48px);
  }

  .about-page-statement br {
    display: none;
  }

  .about-page-copy {
    width: 100%;
    margin: 72px 0 0;
  }

  .contact-page {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px 24px;
    padding: 96px 20px 28px;
  }

  .contact-page-info-left,
  .contact-page-info-skills,
  .contact-page-note {
    padding-top: 0;
  }

  .contact-page-note {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .contact-wordmark {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
    font-size: 32vw;
  }

  .contact-portrait,
  .contact-brand-lockup {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-motion-ready [data-final-reveal] {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .resume-detail-panel {
    animation: none;
  }
}

.motion.has-kinetic-gallery,
.work.has-kinetic-gallery {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #050505;
}

.work.has-kinetic-gallery {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
}

html.kinetic-cards-locked,
body.kinetic-cards-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

.work.has-kinetic-gallery .kinetic-gallery-frame {
  pointer-events: none;
}

html.kinetic-cards-active .work.has-kinetic-gallery .kinetic-gallery-frame,
body.kinetic-cards-active .work.has-kinetic-gallery .kinetic-gallery-frame {
  pointer-events: auto;
}

.motion.has-kinetic-gallery,
.work.has-kinetic-gallery {
  background: #fff;
}

.motion.has-kinetic-gallery .kinetic-gallery-frame {
  background: #fff;
}

.topbar.is-cylinder-white {
  color: #050505;
  background: rgba(255,255,255,.9);
}

.topbar.is-cylinder-white .brand-logo {
  filter: invert(1);
}

.topbar.is-cylinder-white::before {
  background: rgba(255,255,255,.64);
}

.motion.has-kinetic-gallery .kinetic-gallery-embed,
.work.has-kinetic-gallery .kinetic-gallery-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
}

.kinetic-gallery-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}

.kinetic-replaced-content {
  display: none !important;
}
.file-open-warning {
  position: fixed;
  z-index: 10000;
  inset: auto 20px 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  color: #111;
  background: #a8ff1f;
  border: 1px solid rgba(17, 17, 17, 0.24);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.file-open-warning a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(17,17,17,.5);
  background: #111;
  color: #b9ff59;
  font-weight: 800;
  white-space: nowrap;
}

.file-open-warning[hidden] {
  display: none;
}

.file-open-warning strong {
  flex: 0 0 auto;
  font-weight: 800;
}

@media (max-width: 640px) {
  .file-open-warning {
    inset: auto 12px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* Reference-matched chronological motion archive. */
.motion-feature.motion-archive {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  color: #f4f0e8;
  background:
    linear-gradient(rgba(244, 240, 232, .045) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(90deg, rgba(244, 240, 232, .045) 1px, transparent 1px) 0 0 / 74px 74px,
    #030403;
}

.archive-layout {
  display: grid;
  grid-template-columns: 40% 12% 48%;
  grid-template-rows: minmax(0, 1fr);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: clamp(82px, 8.6vh, 96px) 3vw 2.2vh;
}

.archive-record {
  display: grid;
  grid-template-rows: minmax(0, 53%) 1fr;
  min-width: 0;
  height: 100%;
}

.archive-cover-wrap {
  min-height: 0;
  overflow: hidden;
  background: #090a09;
}

.archive-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: none;
}

.archive-facts {
  display: grid;
  align-content: start;
  min-height: 0;
  transition: none;
}

.archive-fact {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 72px;
  padding: 12px 0 10px;
  border-top: 1px solid rgba(244, 240, 232, .54);
}

.archive-fact strong,
.archive-fact p {
  margin: 0;
  font-family: var(--font-cn);
  font-size: clamp(12px, .88vw, 17px);
  line-height: 1.52;
}

.archive-fact strong {
  color: rgba(244, 240, 232, .92);
  font-weight: 700;
}

.archive-fact p {
  width: 100%;
  max-width: none;
  justify-self: end;
  color: rgba(244, 240, 232, .48);
}

.archive-fact p > span {
  display: block;
}

.archive-fact-overview {
  min-height: 118px;
}

.archive-detail {
  width: max-content;
  margin-top: 1px;
  padding: 13px 0 10px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-family: var(--font-cn);
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 800;
  cursor: pointer;
}

.archive-detail:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}

.archive-year {
  align-self: center;
  justify-self: center;
  color: rgba(244, 240, 232, .88);
  font-family: var(--font-small);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: opacity 240ms ease, transform 480ms cubic-bezier(.16, 1, .3, 1);
}

.archive-wheel {
  position: relative;
  align-self: stretch;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  cursor: ns-resize;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.archive-wheel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(185, 255, 89, .45);
  transform: translate(-165%, -50%);
}

.archive-wheel-item {
  --wheel-offset: 0;
  --wheel-distance: 0;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 80px;
  padding: 0 0 0 1.2vw;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #f4f0e8;
  text-align: left;
  opacity: var(--wheel-opacity, 0);
  filter: none;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.72) 2.5%, #000 7%, #000 91%, rgba(0,0,0,.72) 96%, transparent 100%);
  transform: translate3d(0, calc(-50% + var(--wheel-offset) * 118px), 0);
  transition:
    transform 680ms cubic-bezier(.16, 1, .3, 1),
    opacity 560ms cubic-bezier(.16, 1, .3, 1),
    filter 420ms ease;
  cursor: pointer;
}

.archive-wheel-item > .archive-wheel-label {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  max-width: none;
  color: inherit;
  font-family: "HY QiHei 70S Web", "汉仪旗黑-70S", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -.035em;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
}

.archive-wheel-text {
  display: block;
  flex: 0 0 auto;
  white-space: nowrap;
}

.archive-wheel-text[aria-hidden="true"] {
  display: none;
}

.archive-wheel-item.is-marquee .archive-wheel-text[aria-hidden="true"] {
  display: block;
}

.archive-wheel-item.is-active {
  z-index: 2;
  opacity: 1;
  filter: none;
}

.archive-wheel-item.is-marquee.is-active > .archive-wheel-label {
  animation: archive-title-loop 14s linear infinite;
}

.archive-wheel-item:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: -4px;
}

@keyframes archive-title-loop {
  to { transform: translate3d(calc(var(--loop-distance) * -1), 0, 0); }
}

@media (max-width: 900px) {
  .motion-feature.motion-archive {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .archive-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    padding: 88px 20px 34px;
  }

  .archive-record {
    grid-template-rows: 42svh auto;
  }

  .archive-year {
    justify-self: start;
    margin: 18px 0;
  }

  .archive-wheel {
    height: 56svh;
    min-height: 430px;
  }

  .archive-wheel-item {
    padding-left: 0;
  }

  .archive-wheel-item span {
    font-size: clamp(38px, 10vw, 66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .archive-cover,
  .archive-facts,
  .archive-wheel-item {
    transition-duration: .01ms;
  }

  .archive-wheel-item.is-marquee.is-active > .archive-wheel-label {
    animation: none;
  }
}

/* Exact 1920 × 965 typography and placement for the supplied final-page boards. */
.about-page-kicker {
  font-family: "Futura Bk BT Book Web", "Futura Bk BT", sans-serif;
}

.about-page-statement {
  font-family: "HY QiHei 70S Web", "汉仪旗黑-70S", sans-serif;
  font-weight: 700;
}

.about-page-copy {
  font-family: "HY QiHei 50S Web", "汉仪旗黑-50S", sans-serif;
}

.about-page-copy strong {
  font-family: "HY QiHei 70S Web", "汉仪旗黑-70S", sans-serif;
  font-weight: 700;
}

.resume-read-more {
  font-family: "Helvetica Bold Web", Helvetica, Arial, sans-serif;
}

.contact-page-info {
  font-family: "HY QiHei 50S Web", "汉仪旗黑-50S", sans-serif;
  font-weight: 500;
}

.contact-page-info h2 {
  font-family: "HY QiHei 70S Web", "汉仪旗黑-70S", sans-serif;
  font-weight: 700;
}

.contact-page-info-left a,
.contact-page-info-skills p,
.contact-brand-lockup a {
  font-family: "Futura Bk BT Book Web", "Futura Bk BT", "HY QiHei 50S Web", sans-serif;
  font-weight: 400;
}

.contact-wordmark {
  font-family: "Helvetica Bold Web", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 901px) {
  .about-page {
    height: 100svh;
    padding: 0;
  }

  .about-page-kicker {
    position: absolute;
    top: 7.55%;
    left: .73%;
    margin: 0;
    font-size: clamp(13px, .94vw, 18px);
    line-height: 1;
  }

  .about-page-grid {
    display: block;
    min-height: 100%;
  }

  .about-page-statement {
    position: absolute;
    top: 10.880829vh;
    left: 31.770833vw;
    width: 64.583333vw;
    height: auto;
    min-height: 34.9vh;
    max-width: none;
    margin: 0;
    font-size: 3.229167vw;
    line-height: 8.704663vh;
    letter-spacing: 0;
    text-align: right;
    overflow: visible;
    clip-path: none;
  }

  .about-page-copy {
    position: absolute;
    top: 53.886010vh;
    left: 51.510417vw;
    width: 44.010417vw;
    height: 18.341969vh;
    margin: 0;
  }

  .about-page-copy p {
    margin-bottom: .621762vh;
    font-size: .885417vw;
    font-weight: 500;
    line-height: 2.279793vh;
  }

  .resume-read-more {
    position: absolute;
    top: 22.797927vh;
    left: 0;
    min-width: 13.55vw;
    min-height: 6.22vh;
    margin-top: 0;
    padding: 0 1.65vw;
    font-size: clamp(18px, 1.46vw, 28px);
  }

  .contact-page {
    display: block;
    height: 100svh;
    padding: 0;
  }

  .contact-page-info {
    position: absolute;
    top: 32.8%;
    padding: 0;
    font-size: clamp(12px, .84vw, 16px);
    line-height: 1.86;
  }

  .contact-page-info h2 {
    margin-bottom: 10px;
  }

  .contact-page-info-left {
    left: calc(1.25vw + 15px);
  }

  .contact-page-info-left a {
    margin-bottom: 19px;
  }

  .contact-page-info-skills {
    left: 20.68%;
  }

  .contact-page-note {
    left: 80%;
    width: 18.3%;
  }

  .contact-page-note p {
    max-width: none;
    line-height: 1.9;
  }

  .contact-wordmark {
    position: absolute;
    top: 61.761658vh;
    left: calc(1.25vw + 15px);
    bottom: auto;
    width: 56.770833vw;
    height: 35.336788vh;
    margin: 0;
    font-size: 24.467188vw;
    line-height: 35.336788vh;
    letter-spacing: 0;
  }

  .contact-wordmark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
  }

  .contact-portrait {
    position: absolute;
    left: 60.2%;
    bottom: 2.901554vh;
    width: 12.7%;
    margin: 0;
  }

  .contact-brand-lockup {
    position: absolute;
    left: 80%;
    bottom: 2.901554vh;
    gap: 8.7vh;
    padding: 0;
  }

  .contact-brand-lockup img {
    width: 8.55vw;
  }

  .contact-brand-lockup a {
    font-size: clamp(12px, .84vw, 16px);
  }
}

/* Unified inner-page typography roles. Hero display title intentionally unchanged. */
:root {
  --font-en-regular: "Helvetica Regular Web", Helvetica, Arial, sans-serif;
  --font-en-bold: "Helvetica Standard Bold Web", Helvetica, Arial, sans-serif;
  --font-cn-50: "HY QiHei 50S Web", "汉仪旗黑-50S", "Microsoft YaHei", sans-serif;
  --font-cn-60: "HY QiHei 60S Web", "汉仪旗黑-60S", "Microsoft YaHei", sans-serif;
  --font-cn-70: "HY QiHei 70S Web", "汉仪旗黑-70S", "Microsoft YaHei", sans-serif;
  --font-cn: var(--font-en-regular), var(--font-cn-50);
  --font-small: var(--font-en-regular), var(--font-cn-50);
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-en-regular), var(--font-cn-50);
}

h1:not(.hero-title),
h2,
h3,
.overview-title,
.motion-title-copy,
.category-line-dynamic-en,
.category-line-visual-en,
.category-line-other,
.contact-wordmark,
.resume-read-more,
.detail-close,
.detail-nav button {
  font-family: var(--font-en-bold), var(--font-cn-70);
}

.category-line-dynamic-en,
.category-line-visual-en,
.category-line-other {
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-stretch: normal;
  font-synthesis: none;
  font-kerning: normal;
  letter-spacing: .065em;
  text-rendering: geometricPrecision;
}

.category-line-dynamic-en,
.category-line-visual-en {
  font-size: 5.15vw;
}

.category-line-other {
  font-size: 4.8vw;
}

.category-line-dynamic-cn,
.category-line-visual-cn,
.category-line-other span {
  font-family: var(--font-en-bold), var(--font-cn-60);
  font-weight: 600;
}

.archive-wheel-item span {
  font-family: var(--font-cn-70);
  font-weight: 700;
}

.project-detail,
.detail-hint,
.detail-copy span,
.detail-copy p,
.detail-copy a,
.detail-nav,
.resume-detail-panel {
  font-family: var(--font-en-regular), var(--font-cn-50);
}

.detail-copy h2,
.resume-detail-header h2 {
  font-family: var(--font-en-bold), var(--font-cn-70);
  font-weight: 700;
}

.about-page-statement,
.about-page-copy strong,
.contact-page-info h2 {
  font-family: var(--font-en-bold), var(--font-cn-70);
}

.about-page-copy,
.about-page-copy p,
.contact-page-info,
.contact-page-note p {
  font-family: var(--font-en-regular), var(--font-cn-50);
}

@media (min-width: 901px) {
  .resume-read-more {
    top: 76.683938vh;
    left: 51.510417vw;
  }

  .contact-page-info-left {
    left: calc(1.25vw + 15px);
  }
}
