﻿:root {
  --bg: #020302;
  --bg-soft: #070807;
  --text: #f4f1e8;
  --muted: rgba(244, 241, 232, 0.48);
  --faint: rgba(244, 241, 232, 0.1);
  --glass: rgba(20, 21, 20, 0.64);
  --cyan: #60d7e6;
  --lime: #b6d84b;
  --gold: #d6aa50;
  --radius: 28px;
  --nav-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(87, 110, 80, 0.14), transparent 38rem),
    radial-gradient(circle at 10% 30%, rgba(87, 216, 230, 0.08), transparent 24rem),
    var(--bg);
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 4px 4px;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(96, 215, 230, 0.16), transparent 64%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms ease;
}

.nav-shell {
  position: fixed;
  top: 34px;
  left: 50%;
  z-index: 60;
  width: min(740px, calc(100vw - 40px));
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 8px 12px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--glass);
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.08), inset 0 0 22px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-dot {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #060706;
  background: #f5f5f0;
  font-size: 8px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}

.identity strong,
.nav-links a,
.talk-link,
.scroll-cue,
.section-kicker,
.system-index,
.career-head,
.gallery-header span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(244, 241, 232, 0.72);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.work-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.work-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -22px;
  right: -22px;
  height: 22px;
}

.work-menu-trigger {
  position: relative;
  z-index: 2;
}

.work-menu-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: rgba(244, 241, 232, 0.76);
  transition: right 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-submenu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: max-content;
  display: flex;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(15, 16, 15, 0.88);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46), inset 0 0 24px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.96);
  transform-origin: 50% 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-submenu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(244, 241, 232, 0.62);
  font-size: 11px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-7px);
  transition:
    color 180ms ease,
    background 180ms ease,
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-submenu a:hover,
.work-submenu a:focus-visible {
  color: #111310;
  background: #f4f1e8;
  outline: none;
}

.work-menu:hover .work-menu-trigger::after,
.work-menu:focus-within .work-menu-trigger::after {
  right: 0;
}

.work-menu:hover .work-submenu,
.work-menu:focus-within .work-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.work-menu:hover .work-submenu a,
.work-menu:focus-within .work-submenu a {
  opacity: 1;
  transform: translateX(0);
}

.work-menu:hover .work-submenu a:nth-child(2),
.work-menu:focus-within .work-submenu a:nth-child(2) {
  transition-delay: 35ms;
}

.work-menu:hover .work-submenu a:nth-child(3),
.work-menu:focus-within .work-submenu a:nth-child(3) {
  transition-delay: 70ms;
}

.work-menu:hover .work-submenu a:nth-child(4),
.work-menu:focus-within .work-submenu a:nth-child(4) {
  transition-delay: 105ms;
}

.talk-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: #0b0d0c;
  background: #f5f5f0;
  white-space: nowrap;
}

.talk-link span {
  font-size: 25px;
  line-height: 1;
}

.hero-screen {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 160px 28px 96px;
}

.hero-screen::after,
.gallery-screen::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.8));
}

.client-logo-field {
  position: absolute;
  inset: -8vh -6vw;
  z-index: 1;
  perspective: 1000px;
  --logo-center-x: 47%;
  --logo-center-y: 45%;
}

.client-logo {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(84px, 7.2vw, 126px);
  height: clamp(38px, 3.7vw, 56px);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(244, 241, 232, 0.68);
  background: transparent;
  box-shadow: none;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  filter: saturate(1.08) contrast(1.12) brightness(1.18);
  opacity: 0;
  transform: translate3d(var(--sx), var(--sy), 0) rotate(var(--rot)) scale(var(--scale));
  animation: logoConverge 18s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.client-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.16));
}

.logo-a { --sx: -44vw; --sy: -30vh; --rot: -12deg; --scale: 0.86; --delay: -0.2s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-b { --sx: -26vw; --sy: -41vh; --rot: 8deg; --scale: 0.92; --delay: -1.1s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-c { --sx: -8vw; --sy: -35vh; --rot: -5deg; --scale: 0.78; --delay: -2.0s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-d { --sx: 16vw; --sy: -40vh; --rot: 10deg; --scale: 0.9; --delay: -2.9s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-e { --sx: 37vw; --sy: -27vh; --rot: -8deg; --scale: 0.86; --delay: -3.8s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-f { --sx: 48vw; --sy: -5vh; --rot: 13deg; --scale: 0.76; --delay: -4.7s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-g { --sx: 38vw; --sy: 22vh; --rot: -10deg; --scale: 0.84; --delay: -5.6s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-h { --sx: 20vw; --sy: 36vh; --rot: 7deg; --scale: 0.88; --delay: -6.5s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-i { --sx: -2vw; --sy: 42vh; --rot: -6deg; --scale: 0.95; --delay: -7.4s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-j { --sx: -26vw; --sy: 35vh; --rot: 9deg; --scale: 0.82; --delay: -8.3s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-k { --sx: -44vw; --sy: 18vh; --rot: -11deg; --scale: 0.84; --delay: -9.2s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-l { --sx: -48vw; --sy: -6vh; --rot: 6deg; --scale: 0.8; --delay: -10.1s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-m { --sx: -36vw; --sy: 2vh; --rot: -3deg; --scale: 0.78; --delay: -11.0s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-n { --sx: -18vw; --sy: 20vh; --rot: 5deg; --scale: 0.72; --delay: -11.9s; left: var(--logo-center-x); top: var(--logo-center-y); }

.logo-c,
.logo-d,
.logo-f,
.logo-i,
.logo-n,
.logo-q,
.logo-r,
.logo-t,
.logo-w,
.logo-ab {
  width: clamp(116px, 9.8vw, 172px);
  height: clamp(54px, 5vw, 78px);
}
.logo-o { --sx: 0vw; --sy: -22vh; --rot: -7deg; --scale: 0.86; --delay: -12.8s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-p { --sx: 22vw; --sy: -16vh; --rot: 7deg; --scale: 0.8; --delay: -13.7s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-q { --sx: 33vw; --sy: 4vh; --rot: -5deg; --scale: 0.86; --delay: -14.6s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-r { --sx: 9vw; --sy: 21vh; --rot: 11deg; --scale: 0.78; --delay: -15.5s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-s { --sx: -9vw; --sy: 28vh; --rot: -9deg; --scale: 0.82; --delay: -16.4s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-t { --sx: -20vw; --sy: -18vh; --rot: 6deg; --scale: 0.78; --delay: -17.3s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-u { --sx: 8vw; --sy: 34vh; --rot: -4deg; --scale: 0.78; --delay: -18.2s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-v { --sx: 45vw; --sy: 32vh; --rot: 12deg; --scale: 0.76; --delay: -0.8s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-w { --sx: 42vw; --sy: -38vh; --rot: -14deg; --scale: 0.82; --delay: -2.6s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-x { --sx: 28vw; --sy: 44vh; --rot: 9deg; --scale: 0.78; --delay: -4.4s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-y { --sx: -34vw; --sy: -36vh; --rot: -8deg; --scale: 0.74; --delay: -6.2s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-z { --sx: -48vw; --sy: -24vh; --rot: 10deg; --scale: 0.8; --delay: -8.0s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-aa { --sx: 48vw; --sy: 16vh; --rot: -6deg; --scale: 0.76; --delay: -9.8s; left: var(--logo-center-x); top: var(--logo-center-y); }
.logo-ab { --sx: -42vw; --sy: 42vh; --rot: 7deg; --scale: 0.82; --delay: -11.6s; left: var(--logo-center-x); top: var(--logo-center-y); }

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100vw - 260px));
  text-align: center;
}

.hero-content::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(1080px, 88vw);
  height: 300px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78) 0 44%, rgba(0, 0, 0, 0.44) 62%, transparent 78%);
  transform: translate(-50%, -42%);
}

.hero-content h1 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 0;
  font-size: clamp(68px, 8.35vw, 168px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
  transform: translate3d(var(--title-x, 0), var(--title-y, 0), 0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 360ms ease;
  will-change: transform;
}

.hero-content h1.is-hovered {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 0 52px rgba(96, 215, 230, 0.08);
}

.title-char {
  display: inline-block;
  flex: 0 0 auto;
  transform: translate3d(var(--char-x, 0), var(--char-y, 0), 0);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-content p {
  display: inline-flex;
  align-items: center;
  margin: 52px 0 0;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: clamp(14px, 1.25vw, 22px);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 36px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.34);
  color: var(--muted);
}

.scroll-cue b {
  color: var(--cyan);
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
}

.category-screen {
  --category-light: 0;
  --category-overlay: 0;
  --category-card-width: min(33vw, 38.25svh);
  --category-card-height: min(58.67vw, 68svh);
  position: relative;
  min-height: 390svh;
  background: var(--bg);
}

.category-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.category-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 24px;
  background: var(--bg);
  content: "";
  pointer-events: none;
}

.category-bg {
  position: absolute;
  top: -72vh;
  right: 0;
  left: 0;
  z-index: 0;
  height: 270vh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 0.9vw, 16px);
  opacity: calc(0.28 + var(--category-light) * 0.72);
  transition: opacity 80ms linear;
  will-change: opacity;
}

.category-column {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 16px);
  will-change: transform;
}

.category-column-center {
  padding-top: 42vh;
}

.category-column-right {
  padding-top: 0;
}

.category-column img {
  display: block;
  box-sizing: border-box;
  flex: 0 0 var(--category-card-height);
  align-self: center;
  width: var(--category-card-width);
  min-width: var(--category-card-width);
  max-width: 100%;
  height: var(--category-card-height);
  min-height: var(--category-card-height);
  max-height: var(--category-card-height);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0b0d0c;
}

.category-column-left img,
.category-column-right img {
  width: var(--category-card-width);
  min-width: var(--category-card-width);
  height: var(--category-card-height);
  min-height: var(--category-card-height);
  max-height: var(--category-card-height);
}

.category-column-left img,
.category-column-right img {
  object-fit: contain;
}

.category-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, calc(0.94 - var(--category-overlay) * 0.94)) 0%,
      rgba(0, 0, 0, calc(0.84 - var(--category-overlay) * 0.84)) 42%,
      rgba(0, 0, 0, calc(0.9 - var(--category-overlay) * 0.9)) 100%
    );
  transition: background 80ms linear;
  pointer-events: none;
}

.category-pills {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  flex-wrap: wrap;
  width: min(1180px, calc(100vw - 40px));
}

.category-pills a {
  min-width: 168px;
  padding: 19px 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-align: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.05);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.category-pills a:nth-child(1) { border-color: rgba(214, 170, 80, 0.72); }
.category-pills a:nth-child(2) { border-color: rgba(96, 215, 230, 0.72); }
.category-pills a:nth-child(3) { border-color: rgba(182, 216, 75, 0.72); }
.category-pills a:nth-child(4) { border-color: rgba(214, 170, 80, 0.56); }
.category-pills a:nth-child(5) { border-color: rgba(244, 241, 232, 0.34); }

.category-pills a:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(96, 215, 230, 0.12), inset 0 0 22px rgba(255, 255, 255, 0.08);
}

.system-screen {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: clamp(54px, 7vw, 136px) clamp(28px, 4vw, 72px) clamp(24px, 3vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.system-screen.profile-intro-screen {
  display: block;
  padding: 0;
  background: var(--bg);
}

.profile-intro-screen > :not(.profile-intro-image) {
  display: none;
}

.profile-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.section-kicker,
.system-index,
.gallery-header span {
  color: var(--lime);
}

.section-kicker {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.system-index {
  position: absolute;
  top: 30px;
  right: clamp(28px, 4vw, 72px);
  z-index: 2;
  text-align: right;
}

.system-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(320px, 0.44fr);
  gap: 32px;
  align-items: end;
  min-height: 0;
  align-self: center;
  padding-bottom: clamp(24px, 5vw, 90px);
}

.system-copy h2,
.career-title h2,
.profile-screen h2,
.contact-screen h2 {
  margin: 0;
  font-size: clamp(66px, 9vw, 170px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.system-copy h2 {
  text-align: right;
}

.system-copy p {
  max-width: 690px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 800;
  line-height: 1.75;
}

.system-banner {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 30%;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  filter: brightness(0.48) grayscale(0.38);
}

.career-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(420px, 0.46fr);
  gap: 42px;
  min-height: 0;
  padding: clamp(56px, 6vw, 96px) clamp(28px, 4vw, 72px) clamp(72px, 8vw, 120px);
  overflow: hidden;
}

.career-screen::after {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -50px;
  height: 390px;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 3, 2, 0.18), rgba(2, 3, 2, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 20px);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -60px 120px rgba(0, 0, 0, 0.92);
  display: none;
}

.career-title,
.career-panel {
  position: relative;
  z-index: 2;
}

.career-motion-title {
  --career-line-1-x: 0px;
  --career-line-1-y: 0px;
  --career-line-2-x: 0px;
  --career-line-2-y: 0px;
  --career-line-3-x: 0px;
  --career-line-3-y: 0px;
  font-size: clamp(56px, 6.8vw, 120px) !important;
  line-height: 0.82 !important;
  letter-spacing: -0.045em !important;
  cursor: default;
}

.career-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  transform-origin: left center;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease;
  will-change: transform;
}

.career-title-line-1 {
  transform: translate3d(var(--career-line-1-x), var(--career-line-1-y), 0);
}

.career-title-line-2 {
  transform: translate3d(var(--career-line-2-x), var(--career-line-2-y), 0);
}

.career-title-line-3 {
  transform: translate3d(var(--career-line-3-x), var(--career-line-3-y), 0);
}

.career-motion-title.is-active .career-title-line-1 {
  letter-spacing: -0.012em;
}

.career-motion-title.is-active .career-title-line-2 {
  letter-spacing: 0.018em;
}

.career-motion-title.is-active .career-title-line-3 {
  letter-spacing: -0.02em;
  color: rgba(244, 241, 232, 0.9);
}

.career-panel {
  align-self: start;
}

.career-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.career-head strong {
  color: var(--lime);
}

.career-item {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.025);
  overflow: hidden;
  background: #101010;
  transition:
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease;
}

.career-item.is-open {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.04), 0 16px 50px rgba(0, 0, 0, 0.22);
}

.career-trigger {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 110px 1fr 38px;
  gap: 24px;
  align-items: center;
  padding: 18px 22px 18px 26px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.career-version,
.career-summary small,
.career-meta-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.career-summary strong {
  display: block;
  margin: 6px 0 0;
  font-size: clamp(15px, 1.15vw, 21px);
}

.career-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1), background 300ms ease;
}

.career-toggle::before,
.career-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--muted);
  transform: translate(-50%, -50%);
  transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

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

.career-item.is-open .career-toggle {
  transform: rotate(180deg);
  background: rgba(96, 215, 230, 0.1);
}

.career-item.is-open .career-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.career-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease;
}

.career-item.is-open .career-details {
  grid-template-rows: 1fr;
  opacity: 1;
}

.career-details-inner {
  min-height: 0;
  overflow: hidden;
}

.career-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px 22px 26px;
}

.career-meta-grid > span {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.16);
}

.career-meta-grid strong {
  display: block;
  margin-top: 8px;
  color: rgba(244, 241, 232, 0.78);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.35;
}

.gallery-screen.motion-gallery {
  position: relative;
  display: block;
  min-height: 112svh;
  overflow: hidden;
  padding: clamp(104px, 10vw, 164px) 0 clamp(74px, 7vw, 120px);
  isolation: isolate;
  background: #101010;
}

.gallery-screen.motion-gallery::after {
  display: none;
}

.motion-gallery-heading {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 88%;
  min-height: clamp(210px, 21vw, 330px);
  margin: 0 auto;
  align-content: center;
  column-gap: clamp(24px, 5vw, 84px);
  pointer-events: none;
}

.motion-gallery-tag {
  grid-column: 2;
  justify-self: end;
  min-width: clamp(210px, 28vw, 430px);
  padding: clamp(8px, 0.8vw, 13px) clamp(18px, 2vw, 32px);
  border: 1px solid rgba(245, 245, 240, 0.78);
  color: rgba(247, 247, 243, 0.95);
  font-size: clamp(14px, 1.55vw, 26px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

.motion-gallery-heading h2 {
  grid-column: 1 / -1;
  margin: clamp(22px, 3vw, 46px) 0 0;
  color: rgba(247, 247, 243, 0.98);
  font-size: clamp(42px, 5.25vw, 88px);
  font-weight: 250;
  letter-spacing: -0.055em;
  line-height: 0.98;
  white-space: nowrap;
}

.motion-gallery-heading h2 span {
  font-weight: 220;
}

.motion-gallery-heading p {
  grid-column: 2;
  justify-self: end;
  margin: clamp(22px, 2.5vw, 38px) 0 0;
  color: rgba(247, 247, 243, 0.88);
  font-size: clamp(13px, 1.35vw, 22px);
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-align: right;
}

.motion-gallery-stage {
  position: relative;
  z-index: 1;
  width: 112vw;
  margin-left: -6vw;
  margin-top: clamp(18px, 2.5vw, 42px);
  padding: clamp(28px, 3vw, 52px) 0;
  transform: perspective(1500px) rotateX(2.5deg) rotateZ(-0.8deg);
  transform-origin: center;
}

.motion-gallery-stage::after {
  display: none;
}

.motion-row {
  position: relative;
  overflow: hidden;
  padding: clamp(8px, 0.8vw, 14px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.motion-row-bottom {
  margin-top: clamp(12px, 1.4vw, 24px);
  transform: translateX(-7vw);
}

.motion-track {
  display: flex;
  width: max-content;
  contain: layout paint;
  backface-visibility: hidden;
  will-change: transform;
  animation: gallery-marquee 46s linear infinite;
}

.motion-row-bottom .motion-track {
  animation-duration: 54s;
  animation-delay: -19s;
}

.motion-set {
  display: flex;
  flex-shrink: 0;
  gap: clamp(14px, 1.5vw, 26px);
  padding-right: clamp(14px, 1.5vw, 26px);
}

.motion-card {
  position: relative;
  flex: 0 0 clamp(270px, 23vw, 420px);
  height: clamp(172px, 16vw, 286px);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(18px, 1.8vw, 32px);
  background: #0a0c0b;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
  opacity: 0.76;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 420ms ease;
}

.motion-card-wide {
  flex-basis: clamp(310px, 27vw, 500px);
}

.motion-card-portrait {
  flex-basis: clamp(210px, 17vw, 310px);
}

.motion-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-card:hover {
  z-index: 2;
  opacity: 1;
  transform: translateY(-5px) scale(1.025);
}

.motion-card:hover img {
  transform: scale(1.065);
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.coca-process {
  position: relative;
  overflow: hidden;
  background: #101010;
  color: #f4f4f2;
}

.coca-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 7vw, 130px);
  min-height: clamp(190px, 18vw, 310px);
  padding: clamp(38px, 5vw, 82px) clamp(32px, 4.5vw, 76px);
}

.coca-process-heading h2,
.coca-process-heading h3,
.coca-process-heading p {
  margin: 0;
}

.coca-process-heading-left h2 {
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
}

.coca-process-heading-left p {
  margin-top: 16px;
  font-size: clamp(12px, 1vw, 18px);
  letter-spacing: 0.08em;
}

.coca-process-heading-right {
  justify-self: end;
  text-align: right;
}

.coca-process-heading-right span {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(244, 244, 242, 0.78);
  font-size: clamp(11px, 1.1vw, 18px);
  font-weight: 300;
  letter-spacing: 0.12em;
}

.coca-process-heading-right h3 {
  margin-top: 14px;
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
}

.coca-process-heading-right p {
  margin-top: 15px;
  font-size: clamp(11px, 1vw, 17px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.coca-process-visuals {
  display: grid;
  gap: clamp(10px, 1vw, 18px);
  background: #101010;
}

.coca-process-visuals img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-studies {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 168px) clamp(28px, 5vw, 96px) clamp(96px, 11vw, 190px);
  background: #101010;
  color: #f4f4f2;
}

.video-studies::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(96, 215, 230, 0.075), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(214, 170, 80, 0.065), transparent 30%);
}

.video-studies-heading,
.video-studies-grid {
  position: relative;
  z-index: 1;
}

.video-studies-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 7vw, 130px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 130px);
}

.video-studies-heading span,
.video-study-meta span {
  color: rgba(244, 244, 242, 0.48);
  font-size: clamp(10px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.video-studies-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(64px, 9vw, 164px);
  font-weight: 200;
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.video-studies-heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: rgba(244, 244, 242, 0.58);
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 1.85;
}

.video-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 74px);
  align-items: start;
}

.video-study-offset {
  margin-top: clamp(70px, 9vw, 160px);
}

.video-study-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(16px, 1.6vw, 28px);
  background: #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-study-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.video-expand {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #f4f4f2;
  background: rgba(5, 5, 5, 0.62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.video-expand:hover,
.video-expand:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(5, 5, 5, 0.86);
  transform: translateY(-2px);
}

.video-expand span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.video-expand b {
  font-size: 18px;
  font-weight: 400;
}

.video-study-copy {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
  column-gap: clamp(22px, 3vw, 52px);
  row-gap: 18px;
  padding: clamp(24px, 3vw, 48px) 4px 0;
}

.video-study-meta {
  display: contents;
}

.video-study-meta span {
  grid-column: 1;
  grid-row: 1;
  padding-top: 7px;
}

.video-study-meta strong {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  color: rgba(244, 244, 242, 0.92);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.video-study-copy h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(22px, 2.1vw, 38px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.video-study-copy p {
  grid-column: 2;
  grid-row: 2;
  max-width: 580px;
  margin: 0;
  color: rgba(244, 244, 242, 0.52);
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 64px);
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1440px, 94vw);
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(18px, 2vw, 30px);
  background: #050505;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.7);
}

.video-lightbox-dialog video {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  background: #050505;
}

.video-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #f4f4f2;
  background: rgba(5, 5, 5, 0.72);
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  backdrop-filter: blur(12px);
}

body.video-modal-open {
  overflow: hidden;
}

.kv-archive {
  --flow-gap: clamp(14px, 1.45vw, 28px);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 180px) 0 clamp(110px, 11vw, 200px);
  color: #f4f4f2;
  background: #101010;
}

.kv-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 19% 26%, rgba(82, 201, 213, 0.055), transparent 25%),
    radial-gradient(circle at 82% 76%, rgba(174, 145, 72, 0.045), transparent 27%);
}

.kv-archive-heading,
.kv-archive-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(40px, 8vw, 150px);
  padding-inline: clamp(28px, 5vw, 96px);
}

.kv-archive-heading {
  align-items: end;
  margin-bottom: clamp(72px, 9vw, 150px);
}

.kv-archive-heading span,
.kv-archive-footer span {
  color: rgba(244, 244, 242, 0.42);
  font-size: clamp(10px, 0.82vw, 14px);
  font-weight: 700;
  letter-spacing: 0.17em;
}

.kv-archive-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.8vw, 78px);
  font-weight: 200;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.kv-archive-intro {
  padding-bottom: 10px;
}

.kv-archive-intro strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.kv-archive-intro p {
  max-width: 560px;
  margin: 0;
  color: rgba(244, 244, 242, 0.54);
  font-size: clamp(13px, 1.08vw, 17px);
  line-height: 1.9;
}

.kv-flow-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 1.45vw, 26px);
}

.kv-flow-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.kv-flow-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding-block: 3px;
  animation: kvArchiveFlow 108s linear infinite;
  animation-play-state: paused;
  will-change: transform;
  transform: translate3d(calc(-50% + 92vw), 0, 0);
}

.kv-flow-rows.is-running .kv-flow-track {
  animation-play-state: running;
}

.kv-flow-viewport--one .kv-flow-track {
  animation-duration: 112s;
}

.kv-flow-viewport--two .kv-flow-track {
  animation-duration: 104s;
}

.kv-flow-viewport--three .kv-flow-track {
  animation-duration: 108s;
}

.kv-flow-group {
  display: flex;
  flex: none;
  align-items: flex-start;
  gap: var(--flow-gap);
  padding-right: var(--flow-gap);
}

.kv-flow-card {
  flex: none;
  position: relative;
  height: clamp(145px, 13vw, 220px);
  aspect-ratio: var(--kv-ratio, 16 / 9);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(12px, 1.1vw, 20px);
  background: #050605;
  transform: translateZ(0) scale(1);
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1), border-color 500ms ease;
}

.kv-flow-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border: 0;
  border-radius: inherit;
  background: #050605;
}

.kv-flow-card:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateZ(0) scale(1.018);
}

.kv-flow-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: calc(100% - 20px);
  height: auto;
  padding: 6px 9px;
  color: rgba(244, 244, 242, 0.72);
  font-size: 9px;
  letter-spacing: 0.13em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(2, 3, 3, 0.62);
  backdrop-filter: blur(10px);
}

.kv-flow-card figcaption span {
  color: rgba(244, 244, 242, 0.28);
}

.kv-flow-card figcaption strong {
  font-weight: 500;
}

.kv-archive-footer {
  align-items: end;
  margin-top: clamp(72px, 9vw, 150px);
}

.kv-archive-footer p {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 72px);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

@keyframes kvArchiveFlow {
  from {
    transform: translate3d(calc(-50% + 92vw), 0, 0);
  }

  to {
    transform: translate3d(calc(-100% + 92vw), 0, 0);
  }
}

.profile-screen,
.contact-screen {
  padding: clamp(110px, 14vw, 210px) clamp(28px, 6vw, 112px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-screen {
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: 46px;
}

.profile-screen p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 36px);
  font-weight: 800;
  line-height: 1.45;
}

.profile-screen.kv-profile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-top: 0;
  background: #101010 url("./assets/work/profile-kv-bg.png") center / cover no-repeat;
}

.profile-screen.kv-profile.aigc-profile {
  background-image: url("./assets/work/aigc-profile-bg.png");
}

/* Honor of Kings year-end event case study */
.honor-case {
  --honor-ink: #f4f4f2;
  --honor-blue: #6ba9ff;
  --honor-paper: #101010;
  background: var(--honor-paper);
  color: var(--honor-ink);
  overflow: hidden;
}

.honor-case-intro {
  --honor-layout-gap: clamp(38px, 5vw, 82px);
  position: relative;
  min-height: min(980px, 94svh);
  padding: clamp(72px, 9vw, 150px) clamp(24px, 6vw, 112px) clamp(80px, 10vw, 170px);
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  grid-template-rows: auto 1fr auto;
  gap: var(--honor-layout-gap);
  background: #101010;
}

.honor-case-intro::after {
  content: "REC  ●";
  position: absolute;
  right: clamp(24px, 6vw, 112px);
  bottom: clamp(30px, 4vw, 62px);
  color: rgba(244, 244, 242, 0.38);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.honor-case-index {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.honor-case-title-wrap {
  grid-column: 1 / -1;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: var(--honor-layout-gap);
  align-items: center;
}

.honor-case-title-wrap p {
  margin: 0;
  color: var(--honor-blue);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.honor-case-title-wrap h2 {
  margin: 0;
  display: block;
  width: min(100%, 980px);
  font-size: clamp(58px, 6.2vw, 118px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  justify-self: start;
  text-align: left;
}

.honor-case-title-wrap h2 span {
  position: static;
}

.honor-case-title-wrap h2 em {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  -webkit-text-stroke: 0;
}

.honor-case-summary {
  grid-column: 2;
  justify-self: start;
  width: min(650px, 100%);
  margin: 0;
  text-align: left;
  font-size: clamp(17px, 1.5vw, 25px);
  line-height: 1.75;
}

.honor-case-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--honor-blue);
  font-size: 0.74em;
  letter-spacing: 0.12em;
}

.honor-design {
  padding: clamp(74px, 9vw, 150px) clamp(18px, 4vw, 74px) clamp(42px, 4vw, 72px);
  background: #101010;
}

.honor-chapter-heading,
.honor-live-heading {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 44px;
  align-items: end;
  margin: 0 auto clamp(54px, 7vw, 112px);
  max-width: 1520px;
}

.honor-chapter-heading {
  width: calc(100% - 2 * (clamp(24px, 6vw, 112px) - clamp(18px, 4vw, 74px)));
  max-width: none;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(38px, 5vw, 82px);
}

.honor-chapter-heading span,
.honor-live-heading > span,
.honor-character-copy > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.honor-chapter-heading p,
.honor-live-heading p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(20px, 2.3vw, 38px);
  line-height: 1.35;
}

.honor-case figure {
  margin: 0;
}

.honor-case figure img {
  display: block;
  width: 100%;
  height: auto;
}

.honor-wide,
.honor-pair,
.honor-character,
.honor-live-grid,
.honor-video-frame {
  max-width: 1740px;
  margin-inline: auto;
}

.honor-wide,
.honor-pair figure,
.honor-live-grid figure,
.honor-video-frame {
  overflow: hidden;
  border-radius: clamp(12px, 1.35vw, 24px);
}

.honor-wide img,
.honor-pair img {
  background: #101010;
}

.honor-wide figcaption,
.honor-pair figcaption,
.honor-live-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 15px 18px 18px;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.honor-wide figcaption span,
.honor-pair figcaption span,
.honor-live-grid figcaption span {
  opacity: 0.48;
}

.honor-wide figcaption strong,
.honor-pair figcaption strong,
.honor-live-grid figcaption strong {
  min-width: 0;
  padding-right: 2px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.honor-wide--hero {
  max-width: none;
}

.honor-wide--inset {
  width: min(86%, 1520px);
  margin-top: clamp(90px, 12vw, 210px);
}

.honor-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 4vw, 74px);
  align-items: start;
  margin-top: clamp(88px, 11vw, 190px);
}

.honor-pair--staggered figure:last-child {
  margin-top: clamp(84px, 10vw, 170px);
}

.honor-pair--reverse {
  grid-template-columns: 0.88fr 1.12fr;
  margin-top: clamp(42px, 4vw, 68px);
}

.honor-pair--reverse figure:first-child {
  margin-top: clamp(82px, 9vw, 150px);
}

.honor-character {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: center;
  margin-top: clamp(110px, 15vw, 250px);
  padding: clamp(34px, 5vw, 84px);
  border-radius: clamp(16px, 2vw, 34px);
  background: #101010;
  color: #f5f7fa;
}

.honor-character-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  text-align: left;
}

.honor-character-copy > span,
.honor-character-copy h3,
.honor-character-copy p {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.honor-character-copy h3 {
  margin: 30px 0;
  font-size: clamp(45px, 5.4vw, 94px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.honor-character-copy p {
  max-width: 410px;
  margin: 0;
  color: rgba(245, 247, 250, 0.62);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.75;
}

.honor-character figure {
  max-height: none;
  overflow: hidden;
  border-radius: clamp(10px, 1.2vw, 20px);
}

.honor-character figure img {
  width: 100%;
  height: auto;
  margin-top: 0;
  object-fit: contain;
}

.honor-live {
  padding: clamp(42px, 4vw, 72px) clamp(18px, 4vw, 74px) clamp(120px, 15vw, 240px);
  background: #101010;
  color: #f1f5fb;
}

.honor-live-heading {
  position: relative;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  grid-template-rows: auto auto;
  gap: clamp(42px, 6vw, 110px);
  align-items: end;
  padding: clamp(28px, 3.5vw, 54px) 0 clamp(38px, 5vw, 82px);
  border-top: 1px solid rgba(241, 245, 251, 0.22);
  border-bottom: 1px solid rgba(241, 245, 251, 0.12);
}

.honor-live-heading > span {
  grid-column: 1 / -1;
  color: #6ba9ff;
}

.honor-live-heading h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.18em;
  font-size: clamp(66px, 8.4vw, 154px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.06em;
  padding-block: 0.08em 0;
}

.honor-live-heading h3 span {
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.31em;
  font-weight: 800;
  letter-spacing: 0.12em;
  -webkit-text-stroke: 1px rgba(107, 169, 255, 0.7);
}

.honor-live-heading p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  color: rgba(241, 245, 251, 0.62);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.65;
}

.honor-live-heading p strong {
  display: block;
  margin-bottom: 12px;
  color: #f1f5fb;
  font-weight: 500;
}

.honor-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #02050b;
}

.honor-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.honor-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 58px) clamp(20px, 3vw, 54px);
  margin-top: clamp(90px, 12vw, 190px);
}

.honor-live-grid figure:nth-child(even) {
  margin-top: clamp(22px, 2.8vw, 48px);
}

.honor-live-grid figcaption {
  color: rgba(241, 245, 251, 0.82);
}

.honor-extension {
  max-width: 1740px;
  margin: clamp(100px, 12vw, 190px) auto 0;
}

.honor-extension-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  grid-template-rows: auto auto;
  gap: clamp(38px, 5vw, 90px);
  align-items: end;
  padding: clamp(28px, 3.5vw, 54px) 0 clamp(38px, 5vw, 76px);
  border-top: 1px solid rgba(241, 245, 251, 0.22);
  border-bottom: 1px solid rgba(241, 245, 251, 0.12);
}

.honor-extension-heading > span {
  grid-column: 1 / -1;
  color: #6ba9ff;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.honor-extension-heading h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(58px, 7vw, 126px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

.honor-extension-heading p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: rgba(241, 245, 251, 0.62);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.65;
}

.honor-extension-heading p strong {
  display: block;
  margin-bottom: 12px;
  color: #f1f5fb;
  font-weight: 500;
}

.honor-extension-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3.6vw, 68px);
  row-gap: clamp(76px, 8vw, 132px);
  align-items: start;
  margin-top: clamp(70px, 8vw, 132px);
}

.honor-extension-item,
.honor-extension-video {
  margin: 0;
}

.honor-extension-item--portrait {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(150px, 0.34fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
  width: 100%;
}

.honor-extension-item--portrait:nth-child(1) {
  grid-column: 1 / span 6;
}

.honor-extension-item--portrait:nth-child(2) {
  grid-column: 7 / span 6;
  margin-top: clamp(70px, 7vw, 126px);
}

.honor-extension-video {
  grid-column: span 6;
}

.honor-extension-video:nth-child(3) {
  grid-column: 1 / span 6;
}

.honor-extension-video:nth-child(4) {
  grid-column: 7 / span 6;
  margin-top: clamp(34px, 3.8vw, 68px);
}

.honor-extension-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #020205;
  border-radius: clamp(14px, 1.4vw, 24px);
}

.honor-extension-item figcaption {
  display: grid;
  gap: 10px;
  align-content: end;
  min-width: 0;
  margin-top: clamp(34px, 4vw, 68px);
  padding: 18px 0 8px;
  border-top: 1px solid rgba(241, 245, 251, 0.18);
  color: rgba(241, 245, 251, 0.82);
}

.honor-extension-item figcaption span {
  color: #6ba9ff;
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.honor-extension-item figcaption strong {
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.honor-extension-item figcaption p {
  margin: 8px 0 0;
  color: rgba(241, 245, 251, 0.5);
  font-size: clamp(11px, 0.82vw, 14px);
  letter-spacing: 0;
  line-height: 1.75;
}

.honor-extension-video > figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: rgba(241, 245, 251, 0.82);
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.12em;
}

.honor-extension-video .honor-video-frame {
  max-width: none;
  margin-inline: 0;
}

/* CIB Explorer IP launch case study */
.cib-case {
  --cib-ink: #f4f7ff;
  --cib-blue: #73a7ff;
  --cib-muted: rgba(226, 235, 255, 0.62);
  --cib-line: rgba(177, 204, 255, 0.18);
  background: #101010;
  color: var(--cib-ink);
  overflow: hidden;
}

.cib-case-intro {
  --cib-layout-gap: clamp(38px, 5vw, 82px);
  position: relative;
  min-height: min(980px, 94svh);
  padding: clamp(72px, 9vw, 150px) clamp(24px, 6vw, 112px) clamp(80px, 10vw, 170px);
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  grid-template-rows: auto 1fr auto;
  gap: var(--cib-layout-gap);
  background: #101010;
}

.cib-case-intro::after {
  content: "ORBIT  02";
  position: absolute;
  right: clamp(24px, 6vw, 112px);
  bottom: clamp(30px, 4vw, 62px);
  color: rgba(215, 228, 255, 0.32);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.cib-case-index {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cib-line);
  color: rgba(226, 235, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cib-case-title-wrap {
  grid-column: 1 / -1;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: var(--cib-layout-gap);
  align-items: center;
}

.cib-case-title-wrap p {
  margin: 0;
  color: var(--cib-blue);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cib-case-title-wrap h2 {
  width: min(100%, 1000px);
  margin: 0;
  font-size: clamp(62px, 7vw, 132px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.cib-case-title-wrap h2 span {
  display: block;
}

.cib-case-summary {
  grid-column: 2;
  width: min(670px, 100%);
  margin: 0;
  color: rgba(244, 247, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 25px);
  line-height: 1.75;
}

.cib-case-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cib-blue);
  font-size: 0.74em;
  letter-spacing: 0.12em;
}

.cib-case-body {
  padding: clamp(74px, 8vw, 140px) clamp(18px, 4vw, 74px) clamp(120px, 14vw, 230px);
  background: #101010;
}

.cib-case figure {
  margin: 0;
}

.cib-case figure img {
  display: block;
  width: 100%;
  height: auto;
}

.cib-overview,
.cib-project-block,
.cib-video-frame {
  max-width: 1740px;
  margin-inline: auto;
}

.cib-overview {
  overflow: hidden;
  border: 1px solid rgba(177, 204, 255, 0.14);
  border-radius: clamp(16px, 2vw, 32px);
  background: #030713;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
}

.cib-overview figcaption,
.cib-poster-grid figcaption,
.cib-series-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px 18px;
  color: rgba(226, 235, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.cib-overview figcaption span,
.cib-poster-grid figcaption span,
.cib-series-visual figcaption span {
  color: var(--cib-blue);
}

.cib-overview figcaption strong,
.cib-poster-grid figcaption strong,
.cib-series-visual figcaption strong {
  font-weight: 600;
  text-align: right;
}

.cib-project-block {
  margin-top: clamp(120px, 15vw, 250px);
}

.cib-block-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  grid-template-rows: auto auto;
  gap: clamp(38px, 5vw, 90px);
  align-items: end;
  padding: clamp(28px, 3.5vw, 54px) 0 clamp(38px, 5vw, 76px);
  border-top: 1px solid rgba(177, 204, 255, 0.24);
  border-bottom: 1px solid rgba(177, 204, 255, 0.12);
}

.cib-block-heading > span {
  grid-column: 1 / -1;
  color: var(--cib-blue);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cib-block-heading h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(58px, 7vw, 126px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cib-poster-block .cib-block-heading h3 {
  font-size: clamp(46px, 5.2vw, 94px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.cib-block-heading p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--cib-muted);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.7;
}

.cib-block-heading p strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cib-ink);
  font-weight: 500;
}

.cib-poster-grid {
  --cib-poster-gap: 8%;
  --cib-poster-middle: 0px;
  --cib-poster-bottom: 0px;
  --cib-poster-enter: 0px;
  position: relative;
  width: 100%;
  margin-top: clamp(64px, 8vw, 132px);
  margin-inline: 0;
  padding-bottom: var(--cib-poster-bottom);
  clip-path: inset(-100vh 0 -100vh 0);
}

.cib-poster-track {
  display: flex;
  gap: var(--cib-poster-gap);
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.cib-poster-track.is-moving {
  transition: transform 2000ms linear;
}

.cib-poster-track.is-resetting,
.cib-poster-track.is-resetting figure {
  transition: none !important;
}

.cib-poster-grid figure {
  --cib-poster-y: var(--cib-poster-bottom);
  flex: 0 0 28%;
  overflow: hidden;
  border: 1px solid rgba(177, 204, 255, 0.13);
  border-radius: clamp(14px, 1.4vw, 24px);
  background: rgba(14, 24, 53, 0.82);
  transform: translate3d(0, var(--cib-poster-y), 0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 2000ms linear;
}

.cib-poster-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
  backface-visibility: hidden;
}

.cib-block-heading--series h3 {
  max-width: 980px;
  font-size: clamp(44px, 5vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.cib-series-visual {
  margin-top: clamp(62px, 7vw, 116px);
  overflow: hidden;
  border: 1px solid rgba(177, 204, 255, 0.14);
  border-radius: clamp(14px, 1.4vw, 24px);
  background: #030713;
}

.cib-series-visual img {
  aspect-ratio: 2.04;
  object-fit: cover;
}

.cib-teaser-block {
  margin-top: clamp(140px, 17vw, 280px);
}

.cib-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: clamp(62px, 7vw, 116px);
  overflow: hidden;
  border: 1px solid rgba(177, 204, 255, 0.14);
  border-radius: clamp(16px, 2vw, 30px);
  background: #02050b;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
}

.cib-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* AIGC selected motion works */
.aigc-video-case {
  --aigc-ink: #f4f4f2;
  --aigc-muted: rgba(244, 244, 242, 0.54);
  --aigc-line: rgba(255, 255, 255, 0.13);
  --aigc-accent: #8ea9ff;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(120px, 13vw, 230px);
  color: var(--aigc-ink);
  background: #101010;
}

.aigc-video-case::before {
  content: none;
}

.aigc-video-intro,
.aigc-video-list {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - clamp(40px, 9vw, 172px)));
  margin-inline: auto;
}

.aigc-video-intro {
  min-height: min(860px, 88svh);
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  padding: clamp(86px, 10vw, 170px) 0 clamp(90px, 11vw, 188px);
}

.aigc-video-index {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aigc-line);
  color: rgba(220, 228, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.aigc-video-title-wrap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: end;
}

.aigc-video-title-wrap > p {
  margin: 0 0 0.75em;
  color: var(--aigc-accent);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.17em;
}

.aigc-video-title-wrap h2 {
  margin: 0;
  font-size: clamp(72px, 10vw, 184px);
  font-weight: 250;
  line-height: 0.86;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.aigc-video-summary {
  grid-column: 2;
  width: min(700px, 100%);
  margin: 0;
  color: rgba(244, 244, 242, 0.74);
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.8;
}

.aigc-video-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--aigc-ink);
  font-size: 0.78em;
  letter-spacing: 0.12em;
}

.aigc-video-list {
  display: grid;
  gap: clamp(120px, 15vw, 260px);
}

.aigc-video-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
  gap: clamp(42px, 6vw, 108px);
  align-items: center;
}

.aigc-video-entry--reverse {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
}

.aigc-video-entry--reverse .aigc-video-frame {
  grid-column: 2;
}

.aigc-video-entry--reverse .aigc-video-copy {
  grid-column: 1;
  grid-row: 1;
}

.aigc-video-entry--portrait {
  width: min(1180px, 100%);
  grid-template-columns: minmax(320px, 0.78fr) minmax(280px, 0.62fr);
  margin-inline: auto;
}

.aigc-video-entry--portrait .aigc-video-frame {
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.aigc-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(18px, 2vw, 34px);
  background: #050505;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  transition: border-color 320ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms ease;
}

.aigc-video-frame:hover {
  border-color: rgba(167, 185, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.5);
}

.aigc-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.aigc-video-copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: clamp(30px, 4vw, 68px) 0;
  border-top: 1px solid var(--aigc-line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aigc-video-number {
  position: absolute;
  top: clamp(20px, 2vw, 34px);
  right: 0;
  color: rgba(200, 211, 255, 0.16);
  font-size: clamp(72px, 7vw, 128px);
  font-weight: 250;
  line-height: 1;
  letter-spacing: 0.04em;
}

.aigc-video-type {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(24px, 3vw, 44px);
  color: var(--aigc-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.aigc-video-copy h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(34px, 3.3vw, 64px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.aigc-video-note {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: clamp(28px, 3vw, 48px) 0 0;
  color: var(--aigc-muted);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.85;
}

@media (max-width: 800px) {
  .cib-case-intro {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding-inline: 20px;
  }

  .cib-case-title-wrap,
  .cib-case-summary {
    grid-column: 1;
  }

  .cib-case-title-wrap {
    display: block;
  }

  .cib-case-title-wrap p {
    margin-bottom: 32px;
  }

  .cib-case-title-wrap h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .cib-block-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cib-block-heading > span,
  .cib-block-heading h3,
  .cib-block-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .cib-block-heading h3 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .cib-block-heading--series h3 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .cib-poster-grid {
    --cib-poster-gap: 20px;
    --cib-poster-middle: 0px;
    --cib-poster-bottom: 0px;
    --cib-poster-enter: 0px;
    width: 100%;
  }

  .cib-poster-grid figure,
  .cib-poster-grid figure:nth-child(2),
  .cib-poster-grid figure:nth-child(3) {
    flex-basis: 100%;
  }

  .cib-overview figcaption,
  .cib-poster-grid figcaption,
  .cib-series-visual figcaption {
    font-size: 9px;
  }

  .aigc-video-intro,
  .aigc-video-list {
    width: calc(100% - 40px);
  }

  .aigc-video-intro {
    min-height: 86svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 34px;
    padding: 82px 0 96px;
  }

  .aigc-video-title-wrap {
    grid-column: 1;
    display: block;
    align-self: center;
  }

  .aigc-video-title-wrap > p {
    margin-bottom: 28px;
  }

  .aigc-video-title-wrap h2 {
    font-size: clamp(56px, 18vw, 92px);
  }

  .aigc-video-summary {
    grid-column: 1;
    font-size: 15px;
  }

  .aigc-video-list {
    gap: 104px;
  }

  .aigc-video-entry,
  .aigc-video-entry--reverse,
  .aigc-video-entry--portrait {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aigc-video-entry--reverse .aigc-video-frame,
  .aigc-video-entry--reverse .aigc-video-copy {
    grid-column: 1;
  }

  .aigc-video-entry--reverse .aigc-video-frame {
    grid-row: 1;
  }

  .aigc-video-entry--reverse .aigc-video-copy {
    grid-row: 2;
  }

  .aigc-video-entry--portrait .aigc-video-frame {
    width: min(82vw, 400px);
    justify-self: center;
  }

  .aigc-video-copy {
    min-height: 0;
    padding: 30px 0 34px;
  }

  .aigc-video-copy h3 {
    padding-right: 46px;
    font-size: clamp(31px, 9vw, 46px);
  }

  .aigc-video-number {
    top: 24px;
    font-size: 72px;
  }

  .aigc-video-note {
    margin-top: 24px;
  }
}

@media (max-width: 800px) {
  .honor-case-intro {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding-inline: 20px;
  }

  .honor-case-title-wrap,
  .honor-case-summary {
    grid-column: 1;
  }

  .honor-case-title-wrap {
    display: block;
  }

  .honor-case-title-wrap p {
    margin-bottom: 34px;
  }

  .honor-case-title-wrap h2 {
    width: 100%;
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .honor-case-title-wrap h2 em {
    margin: 0;
  }

  .honor-chapter-heading,
  .honor-live-heading,
  .honor-extension-heading,
  .honor-pair,
  .honor-pair--reverse,
  .honor-character,
  .honor-live-grid {
    grid-template-columns: 1fr;
  }

  .honor-chapter-heading,
  .honor-live-heading,
  .honor-extension-heading {
    gap: 24px;
  }

  .honor-live-heading > span,
  .honor-live-heading h3,
  .honor-live-heading p,
  .honor-extension-heading > span,
  .honor-extension-heading h3,
  .honor-extension-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .honor-live-heading h3 {
    display: block;
    font-size: clamp(64px, 20vw, 104px);
  }

  .honor-live-heading h3 span {
    display: block;
    margin-bottom: 18px;
  }

  .honor-wide--inset {
    width: 100%;
  }

  .honor-pair--staggered figure:last-child,
  .honor-pair--reverse figure:first-child,
  .honor-live-grid figure:nth-child(even) {
    margin-top: 0;
  }

  .honor-character {
    padding: 28px 20px 20px;
  }

  .honor-character figure {
    max-height: none;
  }

  .honor-extension {
    margin-top: 84px;
  }

  .honor-extension-heading h3 {
    font-size: clamp(54px, 18vw, 88px);
  }

  .honor-extension-list {
    grid-template-columns: 1fr;
    gap: 72px;
    margin-top: 72px;
  }

  .honor-extension-item--portrait,
  .honor-extension-item--portrait:nth-child(1),
  .honor-extension-item--portrait:nth-child(2),
  .honor-extension-video,
  .honor-extension-video:nth-child(3),
  .honor-extension-video:nth-child(4) {
    grid-column: 1;
    margin-top: 0;
  }

  .honor-extension-item--portrait {
    grid-template-columns: minmax(0, 0.62fr) minmax(108px, 0.38fr);
    gap: 14px;
  }

  .honor-extension-item figcaption {
    gap: 7px;
    margin-top: 16px;
    padding-top: 12px;
  }

  .honor-extension-item figcaption p {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.6;
  }
}

.kv-profile-content {
  position: absolute;
  inset: 0;
  color: #f4f4f2;
}

.kv-profile-kicker {
  position: absolute;
  top: 20.5%;
  left: 50%;
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 3.45vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.18em;
  transform: translate3d(calc(-50% + var(--kv-kicker-x, 0px)), var(--kv-kicker-y, 0px), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 500ms ease;
}

.profile-screen.kv-profile h2 {
  position: absolute;
  top: 35.5%;
  left: 50%;
  margin: 0;
  color: inherit;
  font-size: clamp(54px, 7.4vw, 150px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transform: translate3d(calc(-50% + var(--kv-title-x, 0px)), var(--kv-title-y, 0px), 0);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 620ms ease;
}

.kv-profile-footer {
  position: absolute;
  left: 6.2%;
  bottom: 6.2%;
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 2.8%;
  width: 58%;
  transform: translate3d(var(--kv-footer-x, 0px), var(--kv-footer-y, 0px), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kv-profile-footer p {
  margin: 0;
  color: inherit;
  font-size: clamp(12px, 1.45vw, 31px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.kv-profile-content.is-active .kv-profile-kicker {
  letter-spacing: 0.22em;
}

.kv-profile-content.is-active h2 {
  letter-spacing: 0.045em;
}

.kv-motion-line {
  display: inline-block;
  transform: translate3d(var(--kv-line-x, 0px), var(--kv-line-y, 0px), 0);
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 560ms ease;
}

.kv-profile-footer .kv-motion-line {
  display: block;
}

.kv-line-motion.is-line-active .kv-motion-line {
  letter-spacing: 0.12em;
}

.kv-case-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #151515;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kv-case-showcase {
  display: grid;
  grid-template-rows: 62.2% 37.8%;
  aspect-ratio: 1128 / 809;
}

.kv-case-hero {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 650ms ease;
}

.kv-case-hero-frame {
  overflow: hidden;
  background: #050505;
}

.kv-case-hero-frame:hover .kv-case-hero {
  transform: scale(1.018);
  filter: brightness(1.035);
}

.kv-case-showcase-bottom {
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
  padding: 3.2% 6.1% 3.6%;
  background: #101010;
}

.kv-case-label {
  align-self: start;
  padding-top: 2.2%;
}

.kv-case-label h2 {
  margin: 0;
  font-size: clamp(24px, 3.65vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.16em;
}

.kv-case-label p {
  margin: 1.2em 0 0;
  color: #f4f4f2;
  font-size: clamp(12px, 1.7vw, 32px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.kv-case-elements {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 82%;
  height: 80%;
  min-height: 0;
}

.kv-case-elements-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
  will-change: transform;
}

.kv-case-elements:hover .kv-case-elements-image {
  transform: scale(1.015);
  filter: brightness(1.04);
}

.kv-case-showcase-op2 .kv-case-showcase-bottom {
  grid-template-columns: 61% 39%;
}

.kv-case-showcase-op2 .kv-case-elements {
  justify-self: start;
}

.kv-case-label-op2 {
  padding-left: 20%;
}

.kv-element-panel {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: #050505;
}

.kv-element-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: none;
  height: 100%;
}

.kv-element-panel-a {
  width: 34%;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.kv-element-panel-a img {
  transform: translateX(0);
}

.kv-element-panel-b {
  width: 30%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.kv-element-panel-b img {
  transform: translateX(-38.5%);
}

.kv-element-panel-c {
  width: 25%;
}

.kv-element-panel-c img {
  transform: translateX(-70.1%);
}

.kv-case-concept {
  aspect-ratio: 1128 / 648;
  background: #151515 url("./assets/work/kv-case-concept.png") center / cover no-repeat;
  color: #f2f2ef;
}

.kv-case-concept-op2 {
  background-image: url("./assets/work/kv-op2-concept-bg.png");
  box-shadow: inset 0 -110px 120px -58px #101010;
}

.kv-concept-copy,
.kv-key-elements {
  position: absolute;
  left: 6%;
  width: 88%;
}

.kv-concept-copy {
  top: 8.8%;
}

.kv-concept-copy h2,
.kv-key-elements h3 {
  margin: 0;
  font-size: clamp(22px, 2.55vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.08em;
}

.kv-concept-subtitle,
.kv-key-elements > p {
  margin: 1.3% 0 0;
  color: #f2f2ef;
  font-size: clamp(12px, 1.45vw, 30px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}

.kv-concept-cn {
  max-width: 86%;
  margin: 4.1% 0 0;
  color: #e8e8e5;
  font-size: clamp(10px, 1.2vw, 25px);
  font-weight: 400;
  line-height: 2;
}

.kv-concept-en {
  max-width: 92%;
  margin: 2% 0 0;
  color: #e4e4e1;
  font-size: clamp(7px, 0.73vw, 15px);
  font-weight: 400;
  line-height: 2.1;
}

.kv-key-elements {
  top: 58.8%;
  bottom: auto;
}

.kv-key-elements-image {
  display: block;
  width: 44%;
  height: auto;
  margin-top: 2.5%;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
  will-change: transform;
}

.kv-key-elements-image:hover {
  transform: scale(1.015);
  filter: brightness(1.04);
}

.contact-screen {
  min-height: 74svh;
  background: #101010;
}

.contact-screen h2 {
  max-width: 1120px;
  margin-top: 34px;
}

.contact-screen a {
  display: inline-flex;
  margin-top: 44px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.visual-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.36), transparent 4rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #121412;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 28px 70px rgba(0, 0, 0, 0.46);
}

.visual-card::before,
.visual-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.visual-card::before {
  inset: 10%;
  border-radius: 40%;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.28), transparent 8%),
    conic-gradient(from 120deg, transparent, rgba(255, 255, 255, 0.2), transparent 42%, rgba(0, 0, 0, 0.5));
  filter: blur(1px);
  transform: rotate(-18deg);
}

.visual-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 50% 50%, transparent 0 45%, rgba(0, 0, 0, 0.5) 100%);
}

.tone-moss { background-color: #314236; }
.tone-sand { background-color: #7d6244; }
.tone-silver { background-color: #6e7372; }
.tone-ember { background-color: #563a2a; }
.tone-violet { background-color: #2b1935; }
.tone-carbon { background-color: #17191c; }
.tone-ice { background-color: #b7c1b1; }
.tone-olive { background-color: #58623a; }
.tone-graphite { background-color: #1b1e20; }
.tone-copper { background-color: #6b452f; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

.text-motion {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  filter: blur(7px);
  transform: translate3d(0, 0.48em, 0) skewY(1.2deg);
  transform-origin: left bottom;
  transition:
    opacity 760ms ease,
    clip-path 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, clip-path, filter, transform;
}

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

.honor-live-heading h3.text-motion.is-text-visible,
[data-reveal].is-visible .honor-live-heading h3.text-motion {
  clip-path: inset(-0.14em -0.1em -0.18em -0.1em);
}

.nav-shell[data-reveal],
.nav-shell[data-reveal].is-visible {
  transform: translateX(-50%);
}

@keyframes drift {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -26px;
  }
}

@keyframes logoConverge {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--sx) * 1.12), calc(var(--sy) * 1.12), 0) rotate(var(--rot)) scale(calc(var(--scale) * 0.78));
    filter: saturate(1.05) contrast(1.08) brightness(1.08);
  }
  18% {
    opacity: 0.52;
    transform: translate3d(calc(var(--sx) * 0.86), calc(var(--sy) * 0.86), 0) rotate(calc(var(--rot) * 0.8)) scale(calc(var(--scale) * 0.9));
    filter: saturate(1.1) contrast(1.12) brightness(1.2);
  }
  44% {
    opacity: 0.52;
    transform: translate3d(calc(var(--sx) * 0.44), calc(var(--sy) * 0.4), 0) rotate(calc(var(--rot) * 0.35)) scale(calc(var(--scale) * 0.78));
    filter: saturate(1.16) contrast(1.14) brightness(1.24);
  }
  62% {
    opacity: 0.12;
    transform: translate3d(calc(var(--sx) * 0.24), calc(var(--sy) * 0.2), 0) rotate(calc(var(--rot) * 0.1)) scale(calc(var(--scale) * 0.56));
    filter: saturate(1.04) contrast(1.05) brightness(1.14);
  }
  72% {
    opacity: 0;
    transform: translate3d(calc(var(--sx) * 0.18), calc(var(--sy) * 0.15), 0) rotate(0deg) scale(calc(var(--scale) * 0.34));
    filter: saturate(1) contrast(1) brightness(1.08);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(calc(var(--scale) * 0.2));
    filter: saturate(1) contrast(1) brightness(1);
  }
}

@media (max-width: 1080px) {
  .hero-content {
    width: min(760px, calc(100vw - 48px));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .career-screen,
  .profile-screen {
    grid-template-columns: 1fr;
  }

  .system-copy h2 {
    text-align: left;
  }

  .career-screen {
    padding-bottom: 330px;
  }

  .gallery-wall {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    width: 120vw;
    margin-left: -10vw;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }

  .nav-shell {
    top: 18px;
    width: calc(100vw - 22px);
    grid-template-columns: 1fr auto;
    padding: 8px;
  }

  .identity strong {
    max-width: 86px;
    font-size: 11px;
  }

  .logo-dot {
    width: 30px;
    height: 30px;
    font-size: 8px;
  }

  .talk-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .talk-link span {
    font-size: 22px;
  }

  .hero-screen {
    padding: 126px 18px 120px;
  }

  .hero-content h1 {
    font-size: clamp(48px, 15vw, 84px);
    white-space: nowrap;
  }

  .hero-content p {
    margin-top: 30px;
    font-size: 14px;
  }

  .client-logo {
    width: 74px;
    height: 38px;
  }

  .scroll-cue {
    bottom: 22px;
  }

  .scroll-cue {
    left: auto;
    right: 18px;
    max-width: 148px;
    padding: 0 12px;
  }

  .scroll-cue span {
    font-size: 10px;
  }

  .category-pills {
    display: grid;
    width: min(330px, 100%);
  }

  .category-pills a {
    min-width: 0;
    padding: 16px 24px;
  }

  .system-screen,
  .career-screen,
  .profile-screen,
  .contact-screen {
    padding-left: 18px;
    padding-right: 18px;
  }

  .system-screen {
    aspect-ratio: 16 / 9;
    padding-top: 42px;
    padding-bottom: 18px;
  }

  .system-screen .system-index {
    position: absolute;
    top: 16px;
    right: 18px;
    max-width: 58%;
    margin: 0;
    font-size: 8px;
    line-height: 1.25;
    text-align: right;
  }

  .system-copy h2,
  .career-title h2,
  .profile-screen h2,
  .contact-screen h2 {
    font-size: clamp(52px, 15vw, 86px);
  }

  .system-screen .system-copy {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    gap: 12px;
    min-height: auto;
    padding-bottom: 14%;
  }

  .system-screen .system-copy h2 {
    font-size: clamp(30px, 10vw, 60px);
  }

  .system-screen .system-copy p {
    margin: 0;
    font-size: clamp(8px, 2vw, 12px);
    line-height: 1.4;
  }

  .system-screen .system-banner {
    width: 100%;
    height: 28%;
    min-height: 0;
    margin: 0;
  }

  .career-screen {
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .career-motion-title {
    font-size: clamp(44px, 11vw, 72px) !important;
  }

  .career-trigger {
    grid-template-columns: 1fr 34px;
    gap: 10px;
  }

  .career-version {
    grid-column: 1 / -1;
  }

  .career-summary {
    grid-column: 1;
  }

  .career-toggle {
    grid-column: 2;
    grid-row: 2;
  }

  .career-meta-grid {
    grid-template-columns: 1fr;
  }

  .career-head {
    display: grid;
  }

  .gallery-screen.motion-gallery {
    min-height: 94svh;
    padding-top: 82px;
    padding-bottom: 58px;
  }

  .motion-gallery-heading {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    min-height: 250px;
    align-content: center;
  }

  .motion-gallery-tag {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    font-size: 14px;
  }

  .motion-gallery-heading h2 {
    grid-column: 1;
    margin-top: 24px;
    font-size: clamp(34px, 9.2vw, 56px);
    line-height: 1.08;
    white-space: normal;
  }

  .motion-gallery-heading h2 span {
    display: block;
  }

  .motion-gallery-heading p {
    grid-column: 1;
    justify-self: start;
    margin-top: 20px;
    font-size: 12px;
    text-align: left;
  }

  .motion-gallery-stage {
    width: 122vw;
    margin-left: -11vw;
    margin-top: 12px;
    padding-top: 28px;
    padding-bottom: 34px;
    transform: perspective(1000px) rotateX(1.5deg) rotateZ(-0.7deg);
  }

  .motion-card,
  .motion-card-wide {
    flex-basis: clamp(230px, 68vw, 320px);
    height: clamp(145px, 43vw, 205px);
    border-radius: 18px;
  }

  .motion-card-portrait {
    flex-basis: clamp(165px, 46vw, 220px);
  }

  .motion-track {
    animation-duration: 34s;
  }

  .motion-row-bottom .motion-track {
    animation-duration: 41s;
  }

  .gallery-header {
    display: grid;
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-header h2 {
    text-align: left;
  }

  .gallery-wall {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 16px;
    width: 108vw;
    margin-left: -4vw;
  }

  .gallery-wall span {
    height: 128px;
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    gap: 8px;
  }

  .identity {
    gap: 7px;
  }

  .identity strong {
    max-width: 58px;
  }

  .talk-link {
    min-width: 40px;
    width: 40px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .talk-link span {
    color: #0b0d0c;
  }
}

@media (max-width: 720px) {
  .coca-process-heading {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 54px 24px 46px;
  }

  .coca-process-heading-right {
    justify-self: stretch;
    text-align: left;
  }

  .video-studies {
    padding: 72px 18px 88px;
  }

  .video-studies-heading,
  .video-studies-grid {
    grid-template-columns: 1fr;
  }

  .video-studies-heading {
    gap: 30px;
    margin-bottom: 54px;
  }

  .video-studies-heading h2 {
    font-size: clamp(58px, 20vw, 94px);
  }

  .video-study-offset {
    margin-top: 26px;
  }

  .video-study-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-study-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .video-study-meta span,
  .video-study-meta strong,
  .video-study-copy h3,
  .video-study-copy p {
    grid-column: auto;
    grid-row: auto;
  }

  .video-expand {
    top: 10px;
    right: 10px;
    min-height: 36px;
  }

  .video-expand span {
    display: none;
  }

  .kv-archive {
    --flow-gap: 14px;
    padding: 88px 0 104px;
  }

  .kv-archive-heading,
  .kv-archive-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-inline: 20px;
  }

  .kv-archive-heading {
    margin-bottom: 58px;
  }

  .kv-archive-heading h2 {
    font-size: clamp(36px, 10.5vw, 56px);
    line-height: 1.18;
  }

  .kv-flow-rows {
    gap: 10px;
  }

  .kv-flow-card {
    height: clamp(96px, 28vw, 142px);
  }

  .kv-flow-card figcaption {
    display: none;
  }

  .kv-archive-footer {
    margin-top: 60px;
  }
}

/* Other design collection */
.other-work-showcase {
  position: relative;
  z-index: 1;
  overflow: clip;
  background: #101010;
  color: #f2f1ed;
}

.other-work-inner {
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding: clamp(100px, 11vw, 180px) 0 clamp(120px, 13vw, 220px);
}

.other-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px 8vw;
  align-items: end;
  padding-bottom: clamp(58px, 7vw, 104px);
}

.other-work-heading > span {
  grid-column: 1 / -1;
  color: #8b8983;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.other-work-heading h2 {
  margin: 0;
  font-size: clamp(56px, 7.2vw, 118px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.other-work-heading p {
  max-width: 540px;
  margin: 0 0 0.5em;
  color: #9d9a94;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.8;
}

.other-project-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.other-project-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.other-project-group > summary {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 48px;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
}

.other-project-group > summary::-webkit-details-marker {
  display: none;
}

.other-project-index {
  align-self: start;
  padding-top: 7px;
  color: #87847e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.other-project-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(24px, 5vw, 80px);
  align-items: baseline;
}

.other-project-copy strong {
  font-size: clamp(27px, 3.1vw, 50px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.other-project-copy small {
  color: #8f8c86;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.other-project-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #dcdad4;
  font-size: 25px;
  font-weight: 300;
  transition: transform 360ms ease, background-color 240ms ease, color 240ms ease;
}

.other-project-group[open] .other-project-toggle {
  transform: rotate(45deg);
  background: #ecebe6;
  color: #111;
}

.other-project-body {
  padding: 10px 0 clamp(64px, 7vw, 104px) 94px;
  animation: other-group-reveal 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes other-group-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.other-media-rail {
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.other-media-rail::-webkit-scrollbar {
  display: none;
}

.other-media-card {
  flex: 0 0 clamp(260px, 25vw, 390px);
  margin: 0;
  scroll-snap-align: start;
}

.other-media-card--wide {
  flex-basis: clamp(430px, 45vw, 720px);
}

.other-media-card--square {
  flex-basis: clamp(300px, 32vw, 490px);
}

.other-media-frame {
  position: relative;
  display: grid;
  height: clamp(400px, 43vw, 650px);
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: #171717;
}

.other-media-frame img {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 360ms ease;
}

.other-media-frame:hover img {
  filter: saturate(1.04) brightness(1.02);
}

.other-media-frame button,
.other-long-card footer button {
  border: 0;
  color: #f2f1ed;
  font: inherit;
  cursor: pointer;
}

.other-media-frame button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.76);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.other-media-card figcaption {
  display: flex;
  justify-content: space-between;
  padding: 15px 4px 0;
  color: #86837e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.other-rail-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 28px;
}

.other-rail-controls span {
  margin-right: 10px;
  color: #74716c;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.other-rail-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #eee;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 200ms ease, color 200ms ease;
}

.other-rail-controls button:hover {
  background: #ecebe6;
  color: #111;
}

.other-long-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.other-long-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #161616;
}

.other-long-window {
  position: relative;
  height: clamp(480px, 63vh, 700px);
  overflow: auto;
  overscroll-behavior: contain;
  background: #222;
  scrollbar-color: #777 #222;
  scrollbar-width: thin;
}

.other-long-window img {
  display: block;
  width: 100%;
  height: auto;
}

.other-long-card footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px 16px;
}

.other-long-card footer span {
  color: #8e8b85;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.other-long-card footer button {
  flex: 0 0 auto;
  background: transparent;
  font-size: 11px;
}

.other-media-lightbox[hidden] {
  display: none;
}

.other-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 4vw;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
}

.other-media-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
}

.other-media-lightbox-hint {
  position: fixed;
  z-index: 2;
  bottom: 22px;
  left: 50%;
  margin: 0;
  padding: 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.68);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.other-media-lightbox-viewport {
  width: 100%;
  height: 100%;
  overflow: auto;
  text-align: center;
}

.other-media-lightbox-viewport img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
}

.other-media-lightbox.is-long .other-media-lightbox-viewport {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.other-media-lightbox.is-long .other-media-lightbox-viewport img {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
}

.other-media-lightbox.is-long .other-media-lightbox-hint {
  opacity: 1;
}

.other-media-lightbox.is-long.is-zoomed .other-media-lightbox-viewport {
  cursor: grab;
}

.other-media-lightbox.is-long.is-dragging .other-media-lightbox-viewport {
  cursor: grabbing;
}

@media (max-width: 1100px) {
  .other-long-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .other-work-inner {
    width: calc(100% - 40px);
    padding-block: 90px 120px;
  }

  .other-work-heading {
    grid-template-columns: 1fr;
    padding-bottom: 68px;
  }

  .other-work-heading > span {
    grid-column: auto;
  }

  .other-project-group > summary {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 12px;
    min-height: 116px;
  }

  .other-project-copy {
    display: grid;
    gap: 8px;
  }

  .other-project-toggle {
    width: 36px;
    height: 36px;
  }

  .other-project-body {
    padding-left: 0;
  }

  .other-media-card {
    flex-basis: min(72vw, 330px);
  }

  .other-media-card--wide {
    flex-basis: min(86vw, 520px);
  }

  .other-media-card--square {
    flex-basis: min(80vw, 390px);
  }

  .other-media-frame {
    height: min(112vw, 560px);
    border-radius: 16px;
  }

  .other-long-grid {
    grid-template-columns: 1fr;
  }

  .other-long-window {
    height: 62vh;
  }

  .other-media-lightbox {
    padding: 76px 14px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .other-project-body {
    animation: none;
  }

  .other-media-rail {
    scroll-behavior: auto;
  }

  .other-media-frame img {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .category-screen {
    --category-light: 0.88;
    --category-overlay: 0.88;
    min-height: 100svh;
  }

  .kv-flow-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .kv-flow-track {
    animation: none !important;
  }

  .kv-flow-group[aria-hidden="true"] {
    display: none;
  }
}

/* Unified ending sequence */
.other-design-cover,
.other-work-showcase,
.contact-screen {
  background-color: #101010;
}

.contact-screen {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #101010;
  color: #f4f3ef;
}

.contact-screen h2 {
  position: absolute;
  top: 45.5%;
  right: clamp(44px, 7vw, 136px);
  max-width: none;
  margin: 0;
  color: #f4f3ef;
  font-size: clamp(72px, 9.2vw, 178px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.contact-screen p {
  margin: 0;
}

.contact-experience {
  position: absolute;
  top: 13%;
  right: clamp(44px, 7vw, 136px);
  width: min(36vw, 600px);
  color: rgba(244, 243, 239, 0.28);
  font-size: clamp(9px, 0.68vw, 13px);
  font-weight: 500;
  line-height: 1.65;
  text-align: right;
}

.contact-thanks-en {
  position: absolute;
  top: 45.5%;
  left: clamp(44px, 6vw, 116px);
  display: flex;
  flex-direction: column;
  color: #f4f3ef;
  font-size: clamp(50px, 5.6vw, 108px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.contact-thanks-en span:last-child {
  font-size: 0.7em;
  letter-spacing: 0.04em;
}

.contact-meta,
.contact-signoff {
  position: absolute;
  bottom: 6.5%;
  display: flex;
  flex-direction: column;
  font-size: clamp(16px, 1.45vw, 28px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.contact-meta--left {
  left: clamp(44px, 6vw, 116px);
}

.contact-meta--center {
  left: 25%;
}

.contact-signoff {
  right: clamp(44px, 7vw, 136px);
  align-items: flex-end;
  color: #b9473d;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: 1.08;
  text-align: right;
}

.contact-signoff span:first-child {
  font-size: 0.86em;
}

@media (max-width: 800px) {
  .contact-screen {
    min-height: 100svh;
    padding: 0;
  }

  .contact-experience {
    top: 8%;
    right: 20px;
    width: min(72vw, 360px);
    font-size: 8px;
  }

  .contact-thanks-en {
    top: 35%;
    left: 20px;
    font-size: clamp(42px, 15vw, 72px);
  }

  .contact-screen h2 {
    top: 53%;
    right: 20px;
    font-size: clamp(54px, 18vw, 88px);
    letter-spacing: 0.04em;
  }

  .contact-meta,
  .contact-signoff {
    bottom: 5%;
  }

  .contact-meta {
    font-size: clamp(10px, 3vw, 14px);
  }

  .contact-meta--left {
    left: 20px;
  }

  .contact-meta--center {
    left: 42%;
  }

  .contact-signoff {
    right: 20px;
    bottom: 15%;
    font-size: clamp(18px, 5.2vw, 28px);
  }
}
  .hero-content {
    width: min(430px, calc(100vw - 32px));
  }

/* Brand design portfolio cover */
.brand-design-cover {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #f7f5ef;
  background: #101010;
  isolation: isolate;
}

.brand-design-cover > img,
.brand-design-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-design-cover > img {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}

.brand-design-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.1) 0%, rgba(9, 8, 6, 0.04) 48%, rgba(9, 8, 6, 0.6) 100%),
    rgba(8, 7, 5, 0.1);
}

.brand-design-content {
  min-height: 100svh;
  padding: clamp(54px, 7vw, 110px) clamp(24px, 6.5vw, 126px) clamp(50px, 6vw, 96px);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}

.brand-design-content h2 {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: #f7f5ef;
  font-size: clamp(72px, 9vw, 164px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.065em;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
}

.brand-design-meta {
  width: min(650px, 58vw);
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.2fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
}

.brand-design-meta p {
  margin: 0;
  color: rgba(247, 245, 239, 0.9);
  font-size: clamp(16px, 1.35vw, 27px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.065em;
}

.brand-design-meta span {
  display: block;
  margin-bottom: 4px;
}

.brand-design-content h2.text-motion {
  transition-delay: 80ms;
}

.brand-design-content h2.text-motion.is-text-visible,
[data-reveal].is-visible .brand-design-content h2.text-motion {
  clip-path: inset(-0.22em -0.55em -0.28em -0.55em);
  overflow: visible;
}

.brand-design-meta .text-motion:first-child {
  transition-delay: 230ms;
}

.brand-design-meta .text-motion:last-child {
  transition-delay: 360ms;
}

.brand-design-meta .text-motion.is-text-visible,
[data-reveal].is-visible .brand-design-meta .text-motion {
  clip-path: inset(-0.45em -3.2em -0.55em -3.2em);
  overflow: visible;
}

.brand-design-meta .kv-motion-line {
  display: block;
}

@media (max-width: 800px) {
  .brand-design-cover,
  .brand-design-content {
    min-height: 78svh;
  }

  .brand-design-cover > img {
    object-position: 47% center;
  }

  .brand-design-content {
    padding: 70px 20px 34px;
  }

  .brand-design-content h2 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .brand-design-meta {
    width: 100%;
    grid-template-columns: 1fr 1.2fr;
    gap: 22px;
  }

  .brand-design-meta p {
    font-size: clamp(11px, 3.3vw, 15px);
    line-height: 1.15;
  }
}

/* Mellow Oven key visual and compact VI motion gallery */
.brand-system {
  --brand-orange: #f28b1b;
  --brand-cream: #fff2cf;
  --brand-line: rgba(255, 242, 207, 0.18);
  overflow: hidden;
  padding: clamp(90px, 11vw, 180px) 0 clamp(76px, 7vw, 120px);
  color: var(--brand-cream);
  background: #101010;
}

.brand-system-inner {
  width: min(1600px, calc(100% - clamp(40px, 8vw, 150px)));
  margin-inline: auto;
}

.brand-system-heading,
.brand-vi-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  grid-template-rows: auto auto;
  gap: clamp(30px, 4.5vw, 78px);
  align-items: end;
  padding-bottom: clamp(34px, 4vw, 68px);
  border-bottom: 1px solid var(--brand-line);
}

.brand-system-heading > span,
.brand-vi-heading > span {
  grid-column: 1 / -1;
  color: var(--brand-orange);
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 800;
  letter-spacing: 0.17em;
}

.brand-system-heading h2,
.brand-vi-heading h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #fff7e4;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.brand-system-heading h2 {
  font-size: clamp(48px, 5.6vw, 104px);
  line-height: 1.03;
}

.brand-vi-heading h3 {
  font-size: clamp(52px, 6.2vw, 112px);
  line-height: 1;
}

.brand-system-heading p,
.brand-vi-heading p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 242, 207, 0.62);
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.75;
}

.brand-key-visual {
  margin: clamp(48px, 6vw, 96px) 0 0;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: clamp(16px, 2vw, 30px);
  background: #211207;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
}

.brand-key-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-key-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px 17px;
  color: rgba(255, 242, 207, 0.72);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.brand-key-visual figcaption span {
  color: var(--brand-orange);
}

.brand-key-visual figcaption strong {
  font-weight: 600;
  text-align: right;
}

.brand-vi {
  margin-top: clamp(120px, 15vw, 250px);
}

.brand-application {
  margin-top: clamp(120px, 13vw, 220px);
}

.brand-posters {
  margin-top: clamp(120px, 13vw, 220px);
}

.brand-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
  margin-top: clamp(54px, 7vw, 108px);
}

.brand-poster-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: clamp(14px, 1.5vw, 24px);
  background: #1b1109;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.brand-poster-card:nth-child(2) {
  margin-top: clamp(36px, 5vw, 82px);
}

.brand-poster-card:nth-child(3) {
  margin-top: clamp(16px, 2.5vw, 42px);
}

.brand-poster-card img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-poster-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px 17px;
  color: rgba(255, 242, 207, 0.7);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.brand-poster-card figcaption span {
  color: var(--brand-orange);
}

.brand-poster-card figcaption strong {
  font-weight: 600;
  text-align: right;
}

/* Golf Cube brand project — green-led continuation of the center-card VI system */
.golf-cube-project {
  --brand-orange: #27b77c;
  --brand-cream: #effff7;
  --brand-line: rgba(224, 255, 240, 0.16);
  overflow: hidden;
  padding: clamp(90px, 11vw, 180px) 0 clamp(84px, 9vw, 150px);
  color: var(--brand-cream);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 84% 12%, rgba(25, 148, 98, 0.16), transparent 30%),
    #0e1110;
}

.golf-cube-inner {
  width: min(1600px, calc(100% - clamp(40px, 8vw, 150px)));
  margin-inline: auto;
}

.golf-cube-heading > span,
.golf-cube-project .brand-vi-heading > span,
.golf-cube-key-visual figcaption span,
.golf-cube-project .brand-vi-controls p span:first-child {
  color: var(--brand-orange);
}

.golf-cube-key-visual {
  border-color: rgba(65, 198, 143, 0.28);
  background: #168b60;
}

.golf-cube-vi {
  margin-top: clamp(120px, 15vw, 250px);
}

.golf-cube-flow {
  width: 100vw;
  margin-top: clamp(54px, 7vw, 108px);
  margin-left: calc(50% - 50vw);
  padding: clamp(18px, 2.4vw, 36px) 0;
  overflow: hidden;
  outline: none;
}

.golf-cube-flow-row {
  overflow: hidden;
  padding: clamp(7px, 0.8vw, 13px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.golf-cube-flow-row--bottom {
  margin-top: clamp(12px, 1.4vw, 22px);
}

.golf-cube-flow-track {
  display: flex;
  width: max-content;
  contain: layout paint;
  backface-visibility: hidden;
  will-change: transform;
  animation: golf-cube-flow-left 96s linear infinite;
}

.golf-cube-flow-row--bottom .golf-cube-flow-track {
  animation-name: golf-cube-flow-right;
  animation-duration: 96s;
  animation-delay: -37s;
}

.golf-cube-flow:hover .golf-cube-flow-track,
.golf-cube-flow:focus-within .golf-cube-flow-track {
  animation-play-state: paused;
}

.golf-cube-flow-set {
  display: flex;
  flex-shrink: 0;
  gap: clamp(14px, 1.45vw, 25px);
  padding-right: clamp(14px, 1.45vw, 25px);
}

.golf-cube-flow-card {
  position: relative;
  flex: 0 0 clamp(330px, 31vw, 560px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 255, 240, 0.14);
  border-radius: clamp(14px, 1.4vw, 22px);
  background: #101a16;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  transform: translateZ(0);
}

.golf-cube-flow-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.golf-cube-flow-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.golf-cube-flow-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 15px 13px;
  color: rgba(239, 255, 247, 0.76);
  font-size: 9px;
  letter-spacing: 0.14em;
  background: linear-gradient(transparent, rgba(4, 15, 10, 0.82));
}

.golf-cube-flow-card figcaption span {
  color: #55d69f;
}

.golf-cube-flow-card figcaption strong {
  font-weight: 700;
}

.golf-cube-key-visual figcaption {
  color: rgba(239, 255, 247, 0.68);
}

@keyframes golf-cube-flow-left {
  from {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes golf-cube-flow-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/* Johnson & Johnson 20th anniversary — red-led identity project */
.jnj-20-project {
  --brand-orange: #e33a36;
  --brand-cream: #fff4f1;
  --brand-line: rgba(255, 226, 222, 0.18);
  overflow: hidden;
  padding: clamp(90px, 11vw, 180px) 0 clamp(84px, 9vw, 150px);
  color: var(--brand-cream);
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 34, 33, 0.2), transparent 31%),
    radial-gradient(circle at 15% 72%, rgba(227, 58, 54, 0.08), transparent 28%),
    #100d0d;
}

.jnj-20-inner {
  width: min(1600px, calc(100% - clamp(40px, 8vw, 150px)));
  margin-inline: auto;
}

.jnj-20-heading > span,
.jnj-20-project .brand-vi-heading > span,
.jnj-20-key-visual figcaption span,
.jnj-20-project .brand-vi-controls p span:first-child {
  color: var(--brand-orange);
}

.jnj-20-heading h2.text-motion.is-text-visible,
[data-reveal].is-visible .jnj-20-heading h2.text-motion {
  clip-path: inset(-0.24em -0.2em -0.34em -0.2em);
  overflow: visible;
}

.jnj-20-heading p,
.jnj-20-project .brand-vi-heading p {
  color: rgba(255, 232, 228, 0.64);
}

.jnj-20-key-visual {
  border-color: rgba(227, 58, 54, 0.34);
  background: #bf2523;
}

.jnj-20-key-visual figcaption,
.jnj-20-project .brand-vi-card figcaption,
.jnj-20-project .brand-vi-controls p {
  color: rgba(255, 232, 228, 0.68);
}

.jnj-20-project .brand-vi-card {
  border-color: rgba(255, 226, 222, 0.14);
  background: #1c1111;
}

.jnj-20-project .brand-vi-card.is-active {
  border-color: rgba(227, 58, 54, 0.72);
  box-shadow: 0 34px 96px rgba(87, 7, 7, 0.52);
}

.brand-vi-carousel {
  width: 100vw;
  margin-top: clamp(54px, 7vw, 108px);
  margin-left: calc(50% - 50vw);
  outline: none;
}

.brand-vi-viewport {
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 38px) 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-vi-viewport:active {
  cursor: grabbing;
}

.brand-vi-track {
  width: max-content;
  display: flex;
  gap: clamp(14px, 1.6vw, 26px);
  align-items: center;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brand-vi-carousel.is-dragging .brand-vi-track {
  transition: none;
}

.brand-vi-card {
  flex: 0 0 clamp(420px, 65vw, 1040px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 207, 0.13);
  border-radius: clamp(13px, 1.4vw, 22px);
  background: #1a120c;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.23);
  opacity: 0.28;
  filter: saturate(0.62) brightness(0.65);
  transform: scale(0.9);
  transform-origin: center;
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 620ms ease,
    box-shadow 620ms ease;
}

.brand-vi-card.is-active {
  z-index: 2;
  border-color: rgba(242, 139, 27, 0.64);
  opacity: 1;
  filter: none;
  transform: scale(1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.brand-vi-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
}

.brand-vi-card figcaption {
  padding: 12px 15px 14px;
  color: rgba(255, 242, 207, 0.63);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-vi-controls {
  width: min(1600px, calc(100% - clamp(40px, 8vw, 150px)));
  margin: clamp(20px, 2vw, 34px) auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand-vi-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  color: #fff7e4;
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 19px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.brand-vi-controls button:hover,
.brand-vi-controls button:focus-visible {
  border-color: var(--brand-orange);
  color: #101010;
  background: var(--brand-orange);
  outline: none;
}

.brand-vi-controls p {
  min-width: 112px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 242, 207, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-vi-controls p span:first-child {
  color: var(--brand-orange);
}

.brand-vi-controls p i {
  height: 1px;
  flex: 1;
  background: var(--brand-line);
}

@media (max-width: 800px) {
  .brand-system {
    padding: 86px 0 88px;
  }

  .brand-system-inner {
    width: calc(100% - 40px);
  }

  .golf-cube-project {
    padding: 86px 0 96px;
  }

  .golf-cube-inner {
    width: calc(100% - 40px);
  }

  .jnj-20-project {
    padding: 86px 0 96px;
  }

  .jnj-20-inner {
    width: calc(100% - 40px);
  }

  .brand-system-heading,
  .brand-vi-heading {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .brand-system-heading > span,
  .brand-vi-heading > span,
  .brand-system-heading h2,
  .brand-vi-heading h3,
  .brand-system-heading p,
  .brand-vi-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .brand-key-visual {
    margin-top: 36px;
    border-radius: 14px;
  }

  .brand-key-visual figcaption {
    font-size: 9px;
  }

  .brand-vi {
    margin-top: 108px;
  }

  .golf-cube-vi {
    margin-top: 108px;
  }

  .golf-cube-flow {
    margin-top: 44px;
    padding-block: 12px;
  }

  .golf-cube-flow-row {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .golf-cube-flow-card {
    flex-basis: min(76vw, 340px);
    border-radius: 15px;
  }

  .golf-cube-flow-track {
    animation-duration: 78s;
  }

  .golf-cube-flow-row--bottom .golf-cube-flow-track {
    animation-duration: 78s;
  }

  .brand-application {
    margin-top: 108px;
  }

  .brand-posters {
    margin-top: 108px;
  }

  .brand-poster-grid {
    grid-template-columns: repeat(3, minmax(78vw, 1fr));
    gap: 16px;
    margin-top: 44px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brand-poster-grid::-webkit-scrollbar {
    display: none;
  }

  .brand-poster-card,
  .brand-poster-card:nth-child(2),
  .brand-poster-card:nth-child(3) {
    margin-top: 0;
    scroll-snap-align: start;
  }

  .brand-vi-carousel {
    margin-top: 44px;
  }

  .brand-vi-card {
    flex-basis: min(84vw, 620px);
  }

  .brand-vi-viewport {
    padding-block: 14px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .brand-vi-controls {
    width: calc(100% - 40px);
  }

  .brand-vi-controls button {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-vi-track,
  .brand-vi-card {
    transition: none !important;
  }

  .golf-cube-flow-track {
    animation-play-state: paused !important;
  }
}

