@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Display SC";
  src: local("Noto Sans SC DemiLight"), local("Noto Sans SC Light"), local("Microsoft YaHei UI Light"), local("DengXian Light");
  font-weight: 250 420;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Portfolio Text SC";
  src: local("Noto Sans SC"), local("Noto Sans CJK SC"), local("Microsoft YaHei UI"), local("DengXian");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #121212;
  --paper: #f3f1eb;
  --muted: #8b8b86;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f2f2f2;
  --warm: #d7c4a4;
  --header-h: 72px;
  --scrollbar-track: rgba(255, 255, 255, 0.055);
  --scrollbar-thumb: rgba(215, 196, 164, 0.58);
  --scrollbar-thumb-hover: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) #060606;
}

body {
  margin: 0;
  font-family: "Portfolio Inter", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  color: var(--accent);
  background: var(--black);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #060606;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), var(--scrollbar-thumb));
  border: 3px solid #060606;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover), rgba(215, 196, 164, 0.82));
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.styled-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.styled-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.styled-scrollbar::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.styled-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), var(--scrollbar-thumb));
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 999px;
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--scrollbar-thumb-hover), rgba(215, 196, 164, 0.78));
}

body.dialog-open {
  overflow: hidden;
}

body.is-intro {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

.line-icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.7px, transparent 0.8px);
  background-position: var(--grain-x, 0px) var(--grain-y, 0px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.ambient-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 21;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 420ms ease;
}

.ambient-glow.is-visible {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 0;
  height: 2px;
  background: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: #fff;
  mix-blend-mode: difference;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-intro .site-header {
  opacity: 0;
  transform: translateY(-14px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand span,
.brand small {
  transition: color 220ms ease, text-shadow 260ms ease, opacity 220ms ease;
}

.brand small,
.top-nav a,
.social-rail a,
.eyebrow {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.brand:hover span,
.brand:focus-visible span {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.26);
}

.brand:hover small,
.brand:focus-visible small {
  color: rgba(255, 255, 255, 0.92);
}

.top-nav {
  display: flex;
  gap: 10px;
}

.top-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 800;
  color: inherit;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  transition: color 220ms ease, opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  opacity: 0.78;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-nav a::before {
  content: "";
  position: absolute;
  inset: -10px -8px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0);
  transform: scaleX(0.72);
  transform-origin: center;
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
}

.top-nav a:hover::before,
.top-nav a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switch:hover,
.lang-switch:focus-within {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.lang-switch button {
  min-width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: color 200ms ease, background 220ms ease;
}

.lang-switch button.active {
  background: #fff;
  color: #050505;
}

.lang-switch button:hover:not(.active),
.lang-switch button:focus-visible:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.social-rail {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  padding: 10px 0;
}

.social-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16) 10%, rgba(255, 255, 255, 0.16) 90%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.social-rail::after {
  content: "";
  position: absolute;
  inset: -18px -12px;
  z-index: -1;
  display: none;
  pointer-events: none;
}

.rail-wechat {
  position: relative;
}

.social-rail a {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(8, 8, 8, 0.46);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    border-color 220ms,
    color 220ms,
    transform 220ms,
    background 220ms,
    box-shadow 220ms;
}

.social-rail a > span:last-child {
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateX(0.25px);
}

.social-rail .line-icon {
  width: 10px;
  height: 10px;
  color: rgba(255, 255, 255, 0.56);
}

.social-rail a:hover,
.social-rail a:focus-visible,
.rail-wechat:focus-within > a {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  transform: translateX(-3px) scale(1.03);
}

.social-rail a:hover .line-icon,
.social-rail a:focus-visible .line-icon,
.rail-wechat:focus-within > a .line-icon {
  color: rgba(255, 255, 255, 0.92);
}

.social-rail a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%) scaleX(0.7);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}

.social-rail a:hover::after,
.social-rail a:focus-visible::after,
.rail-wechat:focus-within > a::after {
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%) scaleX(1);
}

.wechat-pop {
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  width: 220px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);
  transform: translate3d(12px, -50%, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease;
}

.wechat-pop img {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wechat-pop-copy {
  display: grid;
  gap: 6px;
}

.wechat-pop-copy strong,
.contact-qr-copy strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wechat-pop-copy p,
.contact-qr-copy span {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.rail-wechat:hover .wechat-pop,
.rail-wechat:focus-within .wechat-pop {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.ambient-section {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.ambient-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.075), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 28%, transparent 70%, rgba(215, 196, 164, 0.035));
  transform: translate3d(0, 0, 0);
  transition: opacity 280ms ease;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

.ambient-section.is-glowing::before {
  opacity: 0.46;
}

.ambient-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 70%);
}

.ambient-section > * {
  position: relative;
  z-index: 1;
}

.section-light.ambient-section::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.025), transparent 30%, transparent 72%, rgba(0, 0, 0, 0.035));
}

.section-light.ambient-section.is-glowing::before {
  opacity: 0.28;
}

.section-light.ambient-section::after {
  opacity: 0.06;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

@keyframes ambientDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.03);
  }
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 54px) 36px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 43vw);
  align-items: end;
  gap: 28px;
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.2) 49%, transparent 62%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  transform: translateX(-80%);
  animation: heroScan 4.8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero::before {
  content: "Z";
  position: absolute;
  right: 12vw;
  top: 10svh;
  font-size: clamp(220px, 38vw, 720px);
  font-weight: 900;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  transform: rotate(-12deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  transform: translateY(var(--scroll-shift, 0));
}

.hero .eyebrow,
.hero-position,
.hero-meta {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-intro .hero .eyebrow,
body.is-intro .hero-position,
body.is-intro .hero-meta {
  opacity: 0;
  transform: translateY(22px);
}

.hero .eyebrow {
  transition-delay: 120ms;
}

.hero-position {
  transition-delay: 720ms;
}

.hero-meta {
  transition-delay: 820ms;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.hero h1,
.gtm h2,
.links h2 {
  margin: 0;
  font-size: clamp(74px, 14vw, 208px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  font-family: "Portfolio Inter", "Arial Black", "Microsoft YaHei UI", sans-serif;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 64px rgba(215, 196, 164, 0.12);
  animation: titleBreath 11s ease-in-out infinite;
}

.hero-title-line {
  display: block;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title-line:nth-child(1) {
  transition-delay: 200ms;
}

.hero-title-line:nth-child(2) {
  transition-delay: 380ms;
}

body.is-intro .hero-title-line {
  opacity: 0;
  transform: translateY(42px);
}

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

.hero h1::before {
  inset: -0.025em -0.01em;
  background:
    repeating-linear-gradient(0deg, transparent 0 0.115em, rgba(255, 255, 255, 0.13) 0.118em 0.122em),
    linear-gradient(90deg, rgba(0, 210, 255, 0.12), transparent 22%, transparent 74%, rgba(255, 38, 82, 0.1));
  mix-blend-mode: screen;
  opacity: 0.26;
  transform: translate(0.025em, -0.018em);
  clip-path: inset(0 0 0 0);
  pointer-events: none;
}

.hero h1::after {
  left: -2%;
  right: -2%;
  height: 0.12em;
  top: 46%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(215, 196, 164, 0.44), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(0.01em);
  animation: titleScan 12s steps(1, end) infinite;
}

.hero h1 .hero-dot {
  color: var(--warm);
}

.hero-position {
  max-width: min(720px, 92vw);
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.hero-position p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.35vw, 24px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-position span {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.75;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: min(64svh, 680px);
  min-height: 430px;
  overflow: hidden;
  background: #111;
  clip-path: inset(0 round 2px);
  transform: translateY(var(--scroll-shift, 0));
  opacity: 1;
  transition:
    transform 180ms linear,
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: crosshair;
}

body.is-intro .hero-visual {
  opacity: 0;
  transform: translate3d(0, calc(var(--scroll-shift, 0px) + 24px), 0) scale(1.04);
}

.hero-visual.is-switching {
  animation: heroVisualShake 760ms steps(1, end);
}

.hero-image {
  position: absolute;
  inset: 0;
  transition: opacity 280ms steps(2, end), transform 420ms cubic-bezier(0.76, 0, 0.24, 1), filter 280ms steps(2, end);
  will-change: opacity, transform, filter, clip-path;
}

.hero-image-next {
  opacity: 0;
  transform: translate3d(14px, -5px, 0) scale(1.045);
  filter: contrast(1.28) saturate(1.12) blur(1px);
  clip-path: inset(0 0 86% 0);
}

.hero-visual.is-switching .hero-image-current {
  animation: heroGlitchOut 720ms steps(1, end) both;
}

.hero-visual.is-switching .hero-image-next {
  animation: heroGlitchIn 720ms steps(1, end) both;
}

.hero-glitch-stack {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-visual.is-switching .hero-glitch-stack {
  opacity: 1;
}

.hero-slice {
  position: absolute;
  inset: 0;
  background-image: var(--slice-image);
  background-size: cover;
  background-position: center;
  clip-path: inset(var(--slice-top) 0 var(--slice-bottom) 0);
  opacity: 0;
  filter:
    contrast(1.22)
    saturate(1.08)
    drop-shadow(4px 0 rgba(0, 210, 255, 0.36))
    drop-shadow(-4px 0 rgba(255, 24, 78, 0.28));
  mix-blend-mode: normal;
  transform: translate3d(var(--slice-x), var(--slice-y), 0) scale(1.018);
  animation: heroSliceDrive 760ms var(--slice-delay) steps(1, end) both;
  will-change: transform, opacity, clip-path, filter;
}

.hero-slice::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 6px);
  mix-blend-mode: overlay;
}

.hero-flash {
  position: absolute;
  inset: -4%;
  z-index: 5;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 24%, rgba(255, 38, 62, 0.1) 28%, rgba(0, 195, 255, 0.1) 34%, transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.08) 10px 11px);
  transform: translateX(-82%) skewX(-8deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual.is-switching .hero-flash {
  opacity: 0.58;
  animation: heroImageSweep 720ms steps(5, end);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 52, 52, 0.1), transparent 18%, transparent 78%, rgba(0, 225, 255, 0.1)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px 20px, transparent 21px 34px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual.is-switching::before {
  animation: heroGlitchBars 720ms steps(1, end);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 55%),
    radial-gradient(circle at 30% 30%, transparent, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 6;
  width: min(280px, calc(100% - 48px));
}

.hero-frame strong {
  display: block;
  font-size: clamp(112px, 15vw, 240px);
  line-height: 0.72;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-shadow: 18px 18px 0 rgba(215, 196, 164, 0.18);
  transition: text-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-frame p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 13px;
}

.hero-visual:hover .hero-frame strong {
  text-shadow:
    18px 18px 0 rgba(215, 196, 164, 0.14),
    0 0 18px rgba(255, 255, 255, 0.14),
    0 0 32px rgba(215, 196, 164, 0.12);
}

.hero-meta {
  position: absolute;
  left: 36px;
  bottom: 34px;
  display: flex;
  gap: 36px;
  z-index: 3;
}

.hero-meta div {
  display: grid;
  gap: 4px;
  min-width: 92px;
}

.hero-meta .line-icon {
  width: 15px;
  height: 15px;
  margin-bottom: 4px;
  color: rgba(215, 196, 164, 0.62);
}

.hero-meta span {
  font-size: 22px;
  font-weight: 900;
}

.hero-meta small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.intro-strip {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip-track {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  animation: marquee 26s linear infinite;
}

.intro-strip p {
  flex: 0 0 auto;
  margin: 0;
  padding: 24px 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(26px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.intro-strip .line-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.34);
}

.marquee-track {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track-etched {
  position: relative;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.02)),
    #050505;
}

.marquee-track-etched::before,
.marquee-track-etched::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.marquee-track-etched::before {
  z-index: 1;
  background: linear-gradient(90deg, #050505 0%, transparent 10%, transparent 90%, #050505 100%);
}

.marquee-track .marquee-content {
  display: inline-block;
  min-width: max-content;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-track .marquee-content span {
  display: inline-block;
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.05),
    0 0 1px rgba(255, 255, 255, 0.18);
}

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

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

@keyframes heroScan {
  0%,
  18% {
    transform: translateX(-85%);
  }
  55%,
  100% {
    transform: translateX(85%);
  }
}

@keyframes heroImageSweep {
  0% {
    transform: translateX(-82%) skewX(-8deg);
    clip-path: inset(0 0 76% 0);
  }
  18% {
    transform: translateX(-34%) skewX(12deg);
    clip-path: inset(42% 0 30% 0);
  }
  36% {
    transform: translateX(8%) skewX(-16deg);
    clip-path: inset(8% 0 60% 0);
  }
  58% {
    transform: translateX(34%) skewX(8deg);
    clip-path: inset(64% 0 10% 0);
  }
  100% {
    transform: translateX(86%) skewX(-8deg);
    clip-path: inset(0);
  }
}

@keyframes heroVisualShake {
  0%,
  100% {
    transform: translate3d(0, var(--scroll-shift, 0), 0);
  }
  8% {
    transform: translate3d(-4px, calc(var(--scroll-shift, 0) + 2px), 0);
  }
  14% {
    transform: translate3d(5px, calc(var(--scroll-shift, 0) - 2px), 0);
  }
  21% {
    transform: translate3d(-3px, calc(var(--scroll-shift, 0) + 1px), 0);
  }
  34% {
    transform: translate3d(4px, calc(var(--scroll-shift, 0) - 1px), 0);
  }
  48% {
    transform: translate3d(-2px, var(--scroll-shift, 0), 0);
  }
  62% {
    transform: translate3d(2px, calc(var(--scroll-shift, 0) + 1px), 0);
  }
}

@keyframes heroSliceDrive {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--slice-x) * -0.75), var(--slice-y), 0) scale(1.04);
    filter:
      contrast(1.42)
      saturate(1.16)
      hue-rotate(-8deg)
      drop-shadow(6px 0 rgba(0, 210, 255, 0.38))
      drop-shadow(-6px 0 rgba(255, 24, 78, 0.34));
  }
  8% {
    opacity: 0.58;
    transform: translate3d(calc(var(--slice-x) * 0.9), calc(var(--slice-y) * -0.7), 0) scale(1.035);
    clip-path: inset(calc(var(--slice-top) + 2%) 0 calc(var(--slice-bottom) - 1%) 0);
  }
  18% {
    opacity: 0.36;
    transform: translate3d(calc(var(--slice-x) * -0.45), calc(var(--slice-y) * 1.1), 0) scale(1.028);
    filter:
      contrast(1.36)
      saturate(1.12)
      hue-rotate(8deg)
      drop-shadow(7px 0 rgba(0, 210, 255, 0.32))
      drop-shadow(-7px 0 rgba(255, 24, 78, 0.28));
  }
  31% {
    opacity: 0.52;
    transform: translate3d(calc(var(--slice-x) * 0.38), calc(var(--slice-y) * -0.55), 0) scale(1.022);
  }
  48% {
    opacity: 0.42;
    transform: translate3d(calc(var(--slice-x) * -0.48), 0, 0) scale(1.016);
    clip-path: inset(calc(var(--slice-top) - 1%) 0 calc(var(--slice-bottom) + 3%) 0);
  }
  66% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) scale(1.015);
    filter:
      contrast(1.22)
      saturate(1.08)
      drop-shadow(3px 0 rgba(0, 210, 255, 0.28))
      drop-shadow(-3px 0 rgba(255, 24, 78, 0.24));
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

@keyframes heroGlitchIn {
  0% {
    opacity: 0;
    transform: translate3d(18px, -6px, 0) scale(1.055);
    filter: contrast(1.38) saturate(1.12) hue-rotate(-8deg);
    clip-path: inset(0 0 82% 0);
  }
  14% {
    opacity: 0.82;
    transform: translate3d(-12px, 4px, 0) scale(1.04);
    filter: contrast(1.32) saturate(1.1) hue-rotate(7deg);
    clip-path: inset(48% 0 26% 0);
  }
  28% {
    opacity: 0.5;
    transform: translate3d(10px, -1px, 0) scale(1.032);
    filter: contrast(1.42) saturate(1.08);
    clip-path: inset(12% 0 58% 0);
  }
  44% {
    opacity: 1;
    transform: translate3d(-5px, 2px, 0) scale(1.024);
    filter: contrast(1.2) saturate(1.08);
    clip-path: inset(70% 0 8% 0);
  }
  64% {
    opacity: 0.86;
    transform: translate3d(6px, 0, 0) scale(1.02);
    filter: contrast(1.35);
    clip-path: inset(28% 0 42% 0);
  }
  78% {
    opacity: 1;
    transform: translate3d(-2px, 0, 0) scale(1.01);
    filter: contrast(1.15);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
    clip-path: inset(0);
  }
}

@keyframes heroGlitchOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
    clip-path: inset(0);
  }
  12% {
    opacity: 0.9;
    transform: translate3d(-8px, 2px, 0) scale(1.026);
    filter: contrast(1.32) saturate(1.1) hue-rotate(6deg);
    clip-path: inset(18% 0 54% 0);
  }
  26% {
    opacity: 0.42;
    transform: translate3d(10px, -4px, 0) scale(1.04);
    filter: contrast(1.38) saturate(1.05);
    clip-path: inset(62% 0 14% 0);
  }
  42% {
    opacity: 0.58;
    transform: translate3d(-12px, 3px, 0) scale(1.04);
    filter: contrast(1.24) blur(0.4px);
    clip-path: inset(0 0 76% 0);
  }
  62% {
    opacity: 0.22;
    transform: translate3d(6px, 0, 0) scale(1.055);
    filter: blur(1px) contrast(1.12);
    clip-path: inset(76% 0 0 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.06);
    filter: blur(2px);
    clip-path: inset(0);
  }
}

@keyframes heroGlitchBars {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0);
    clip-path: inset(0);
  }
  10% {
    opacity: 0.28;
    transform: translateX(-6px);
    clip-path: inset(6% 0 80% 0);
  }
  24% {
    opacity: 0.36;
    transform: translateX(8px);
    clip-path: inset(36% 0 42% 0);
  }
  40% {
    opacity: 0.25;
    transform: translateX(-10px);
    clip-path: inset(72% 0 8% 0);
  }
  58% {
    opacity: 0.34;
    transform: translateX(5px);
    clip-path: inset(18% 0 62% 0);
  }
  72% {
    opacity: 0.18;
    transform: translateX(-3px);
    clip-path: inset(54% 0 24% 0);
  }
}

@keyframes titleBreath {
  0%,
  100% {
    letter-spacing: 0;
    filter: contrast(1);
  }
  50% {
    letter-spacing: 0;
    filter: contrast(1.06) brightness(1.04);
  }
}

@keyframes titleScan {
  0% {
    top: 12%;
    opacity: 0;
    transform: translateX(-18%);
  }
  9% {
    opacity: 0.14;
  }
  13% {
    top: 34%;
    transform: translateX(8%);
  }
  16% {
    opacity: 0;
  }
  46% {
    top: 66%;
    opacity: 0;
    transform: translateX(-10%);
  }
  52% {
    opacity: 0.1;
  }
  58% {
    top: 82%;
    transform: translateX(16%);
  }
  100% {
    opacity: 0;
  }
}

.showreel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showreel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showreel video {
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showreel.is-playing video {
  transform: scale(1);
}

.showreel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 44%);
  pointer-events: none;
}

.showreel-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 72px));
  margin: 0 36px 58px;
}

.sound-unlock {
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 2;
  min-height: 78px;
  max-width: min(420px, calc(100% - 72px));
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.16), transparent 42%),
    rgba(0, 0, 0, 0.62);
  color: #fff;
  padding: 12px 20px 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.45);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms,
    background 220ms,
    box-shadow 220ms;
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.sound-unlock::before,
.sound-unlock::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.sound-unlock::after {
  animation-delay: 900ms;
}

.showreel.needs-sound .sound-unlock::before,
.showreel.needs-sound .sound-unlock::after {
  animation: soundCtaPulse 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.sound-orbit {
  position: relative;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.sound-orbit::before,
.sound-orbit::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.7);
  opacity: 0;
}

.showreel.needs-sound .sound-orbit::before,
.showreel.needs-sound .sound-orbit::after {
  animation: soundRing 1.45s ease-out infinite;
}

.showreel.needs-sound .sound-orbit::after {
  animation-delay: 620ms;
}

.sound-unlock .sound-icon,
.sound-unlock .line-icon {
  width: 18px;
  height: 18px;
}

.sound-copy {
  display: grid;
  gap: 5px;
}

.sound-copy strong {
  display: block;
  line-height: 1;
  letter-spacing: 0.08em;
}

.sound-copy small {
  display: block;
  max-width: 270px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.sound-unlock:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.56);
  transform: translateY(-2px) scale(1);
}

.showreel.needs-sound .sound-unlock {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@keyframes soundCtaPulse {
  0% {
    opacity: 0.42;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes soundRing {
  0% {
    opacity: 0.65;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.showreel-copy h2 {
  margin: 0;
  font-size: clamp(68px, 13vw, 190px);
  line-height: 0.82;
  font-weight: 900;
}

.showreel-copy p:last-child {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.capabilities,
.workflow {
  padding: 112px 36px;
  border-bottom: 1px solid var(--line);
}

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

.capabilities-head,
.workflow-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}

.capabilities-head .eyebrow,
.workflow-head .eyebrow {
  margin-bottom: 10px;
}

.capabilities-head h2,
.workflow-head h2 {
  margin: 0;
  font-size: clamp(52px, 10vw, 168px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.capabilities-head p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: -34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: stretch;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 24px;
  align-content: start;
}

.capability-card {
  min-height: 210px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 900ms cubic-bezier(0.16, 1, 0.3, 1),
    color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card.is-hovered {
  border-color: rgba(215, 196, 164, 0.72);
  transform: translateY(-4px);
}

.capability-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--warm), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card-kicker,
.workflow-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 38px;
}

.card-kicker > span,
.workflow-kicker > span {
  display: block;
  color: rgba(215, 196, 164, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.card-kicker .line-icon,
.workflow-kicker .line-icon {
  color: rgba(255, 255, 255, 0.42);
  transition: color 260ms, transform 260ms;
}

.capability-card h3,
.workflow-item h3 {
  margin: 0 0 18px;
  max-width: 360px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

.capability-card strong {
  display: block;
  margin: 0 0 14px;
  color: rgba(215, 196, 164, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-card p,
.workflow-item p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.capability-card:hover,
.capability-card:focus-visible,
.workflow-item:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 196, 164, 0.74);
  outline: 0;
}

.capability-card:hover::after,
.capability-card:focus-visible::after,
.capability-card.is-hovered::after {
  opacity: 1;
  width: 132px;
  transform: translateY(0);
}

.capability-card:hover h3,
.capability-card:focus-visible h3,
.workflow-item:hover h3,
.workflow-item:hover strong {
  color: #fff;
}

.capability-card:hover .line-icon,
.capability-card:focus-visible .line-icon,
.workflow-item:hover .line-icon {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.capability-preview {
  position: sticky;
  top: 116px;
  min-height: 640px;
  overflow: hidden;
  align-self: start;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  isolation: isolate;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 28px 72px rgba(0, 0, 0, 0.42);
}

.capability-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 35% 30%, transparent 22%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.capability-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.32;
  pointer-events: none;
  background:
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px),
      linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.capability-preview-word {
  position: absolute;
  right: -0.06em;
  top: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(88px, 10vw, 188px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-preview img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, var(--natural-width, 100%));
  height: auto;
  max-height: min(100%, var(--natural-height, 100%));
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.18) contrast(1.08);
  transform: translate3d(-50%, -50%, 0) scale(1);
  animation: previewSlowZoom 14s ease-in-out infinite alternate;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-preview img.is-switching {
  opacity: 0.28;
  transform: translate3d(-50%, -50%, 0) scale(1.03);
}

.capability-preview-hud {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 24px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.capability-preview-hud span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-preview-hud strong {
  max-width: 360px;
  color: rgba(215, 196, 164, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capability-preview-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.capability-preview-copy span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.capability-preview-copy strong {
  max-width: 420px;
  font-size: clamp(24px, 2.8vw, 48px);
  line-height: 0.96;
}

.capability-preview-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.capability-preview-meter {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  z-index: 4;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.capability-preview-meter span {
  display: block;
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, var(--warm), #fff);
  transition: width 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes previewSlowZoom {
  from {
    transform: translate3d(-50%, -50%, 0) scale(1.01);
  }
  to {
    transform: translate3d(-50%, -50%, 0) scale(1.035);
  }
}

.cgi-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4.8vw, 78px);
  padding: 116px 36px 122px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.cgi-process::after {
  content: "C4D / OCTANE";
  position: absolute;
  left: -0.04em;
  bottom: -0.14em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  font-size: clamp(104px, 19vw, 320px);
  line-height: 0.8;
  font-weight: 900;
  pointer-events: none;
}

.cgi-visual,
.cgi-copy {
  position: relative;
  z-index: 1;
}

.cgi-visual {
  min-height: min(80svh, 840px);
  overflow: hidden;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.cgi-visual::before,
.cgi-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cgi-visual::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 58% 30%, transparent 18%, rgba(0, 0, 0, 0.44));
}

.cgi-visual::after {
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
}

.cgi-visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88%, var(--natural-width, 88%));
  height: auto;
  max-height: min(92%, var(--natural-height, 92%));
  object-fit: contain;
  opacity: 0.86;
  filter: grayscale(0.12) contrast(1.1);
  transform: translate3d(-50%, -50%, 0) scale(1.01);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cgi-visual img.is-switching {
  opacity: 0.26;
  filter: grayscale(0.7) contrast(1.24);
  transform: translate3d(-50%, -50%, 0) scale(1.03);
}

.cgi-hud {
  position: absolute;
  inset: 22px 22px auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cgi-hud span {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cgi-scan {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0.2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: cgiScan 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.cgi-copy {
  display: flex;
  min-height: min(74svh, 760px);
  flex-direction: column;
  justify-content: center;
}

.cgi-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 98px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.cgi-lead {
  max-width: 540px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
}

.cgi-steps {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cgi-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cgi-step span {
  color: rgba(215, 196, 164, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.cgi-step strong {
  margin-bottom: 7px;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1;
  font-weight: 900;
}

.cgi-step p {
  grid-column: 2;
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.62;
}

.cgi-step:hover,
.cgi-step.is-active {
  opacity: 1;
  border-color: rgba(215, 196, 164, 0.62);
  transform: translateX(8px);
}

.cgi-steps:has(.cgi-step:hover) .cgi-step:not(:hover) {
  opacity: 0.42;
}

@keyframes cgiScan {
  0%,
  62% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.workflow {
  padding-top: 74px;
  padding-bottom: 76px;
}

.workflow-head {
  margin-bottom: 28px;
}

.workflow-head h2 {
  font-size: clamp(38px, 6vw, 96px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.workflow-item {
  min-height: 220px;
  padding: 18px 22px 22px 0;
  border-right: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 360ms;
}

.workflow-item:last-child {
  border-right: 0;
}

.workflow-kicker {
  margin-bottom: 22px;
}

.workflow-item h3 {
  font-size: clamp(17px, 1.28vw, 22px);
}

.workflow-item strong {
  display: block;
  min-height: 38px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.55;
}

.workflow-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.work-stage {
  position: relative;
  min-height: auto;
  padding: 118px 0 92px;
  scroll-margin-top: var(--header-h);
  --work-stage-image: url("assets/wigomat-cover.webp");
}

.work-stage::before {
  content: "";
  position: absolute;
  inset: 18% 0 auto;
  height: 54%;
  opacity: 0.08;
  pointer-events: none;
  background: var(--work-stage-image) center / cover no-repeat;
  filter: grayscale(1) blur(20px) contrast(1.2);
  transform: scale(1.08);
}

.work-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 10% 0;
  height: 38%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.work-pin {
  position: relative;
  top: auto;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  padding: 24px 0 38px 36px;
}

.project-index {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1.58fr);
  gap: 64px;
  padding: 96px 36px 108px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}

.sticky-title {
  position: sticky;
  top: 118px;
  align-self: start;
  max-width: 332px;
}

.sticky-title h2 {
  max-width: 310px;
  margin: 0;
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 0.98;
  font-weight: 900;
}

.index-lead {
  max-width: 286px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.64;
}

.index-preview {
  position: relative;
  width: min(304px, 100%);
  aspect-ratio: 4 / 5;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.9;
  transform: translateY(4px);
  isolation: isolate;
}

.index-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.42;
}

.index-preview-track {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-preview-item {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #090909;
  opacity: 0.4;
  transform: scale(0.985);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.82) brightness(0.82);
}

.index-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
}

.index-preview-item.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.index-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.index-row {
  position: relative;
  min-height: 110px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(180px, 242px);
  gap: 16px 28px;
  align-items: start;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 18px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-row::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--warm);
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-order,
.index-row b,
.index-row em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.index-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.index-row strong {
  font-size: clamp(17px, 2vw, 30px);
  line-height: 1.04;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  transition: color 260ms cubic-bezier(0.16, 1, 0.3, 1), transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-meta {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  text-align: left;
  padding-top: 8px;
}

.index-row em {
  line-height: 1.45;
}

.index-row b {
  color: rgba(215, 196, 164, 0.68);
}

.index-list:has(.index-row:hover) .index-row:not(:hover) {
  opacity: 0.38;
}

.index-row.is-active strong,
.index-row:hover strong {
  color: var(--warm);
  transform: translateX(6px);
}

.index-row.is-active::before,
.index-row:hover::before,
.index-row:focus-visible::before {
  opacity: 0.92;
  transform: scaleY(1);
}

.index-row.is-active {
  border-color: rgba(215, 196, 164, 0.2);
}

.index-row:hover,
.index-row:focus-visible {
  transform: translateX(8px);
  border-color: rgba(215, 196, 164, 0.28);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 920px);
  gap: 36px;
  padding-right: 36px;
  margin-bottom: 12px;
}

.section-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(34px, 6.4vw, 104px);
  line-height: 0.95;
  font-weight: 900;
}

.work-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding-right: 36px;
}

.work-progress-group {
  display: grid;
  gap: 16px;
}

.work-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.work-progress span {
  display: block;
  width: var(--work-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--warm), #fff);
  transition: width 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-details {
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.work-details span {
  color: rgba(215, 196, 164, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.work-current {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.work-current b {
  font-size: 46px;
  line-height: 0.9;
  font-weight: 900;
  color: var(--warm);
}

.work-current p {
  margin: 0;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-viewport {
  position: relative;
  overflow: hidden;
  padding: 6px 0 22px;
}

.work-viewport::before,
.work-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none;
}

.work-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.work-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.work-ghost {
  position: absolute;
  right: -0.08em;
  top: 12px;
  z-index: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
}

.work-ghost span {
  display: block;
  font-size: clamp(92px, 12vw, 220px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(500px, 38vw);
  gap: 26px;
  min-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 34vw 10px 0;
  scroll-padding-left: 0;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  touch-action: pan-x;
}

.work-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.work-track::-webkit-scrollbar {
  height: 11px;
}

.work-track::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

.work-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), var(--scrollbar-thumb));
  border: 3px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
}

.work-track::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--scrollbar-thumb-hover), rgba(215, 196, 164, 0.78));
}

.feature-card {
  position: relative;
  height: clamp(520px, 64vh, 760px);
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 54%),
    #070707;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  transform: translate3d(0, calc((18px * var(--card-depth, 0)) + var(--active-y, 0px)), 0) scale(var(--active-scale, 1));
  opacity: 0;
  transform-origin: center bottom;
  filter: saturate(calc(1 - 0.26 * var(--card-depth, 0))) brightness(calc(1 - 0.14 * var(--card-depth, 0)));
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-edge {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.feature-edge b {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.44);
}

.feature-ghost {
  position: absolute;
  right: -0.06em;
  bottom: 74px;
  z-index: 1;
  pointer-events: none;
  max-width: 80%;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(54px, 7vw, 132px);
  line-height: 0.82;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card.is-visible {
  opacity: 1;
}

.feature-card.tall {
  height: clamp(520px, 64vh, 760px);
  margin-top: 0;
}

.feature-card.is-active {
  z-index: 3;
  --active-y: -10px;
  --active-scale: 1.024;
  filter: saturate(1.1) brightness(1.07);
  box-shadow: inset 0 0 0 1px rgba(215, 196, 164, 0.24), 0 18px 60px rgba(0, 0, 0, 0.44);
}

.feature-card.is-active img {
  transform: scale(1.035);
}

.feature-card.is-active .feature-ghost {
  color: rgba(255, 255, 255, 0.14);
  transform: translate3d(0, -8px, 0);
}

.feature-card.is-active .feature-edge b {
  color: rgba(215, 196, 164, 0.82);
}

.work-track:has(.feature-card:hover) .feature-card:not(:hover) {
  opacity: 0.3;
  filter: grayscale(0.8) blur(2px);
  transform: translate3d(0, calc(18px * var(--card-depth, 0)), 0) scale(0.98);
}

.work-track:has(.feature-card:hover) .feature-card:hover {
  z-index: 10;
  transform: translate3d(0, -8px, 0) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.feature-media {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.12), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    #080808;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-focus-x, 50%) var(--media-focus-y, 50%);
  padding: 0;
  transform: translateY(var(--img-parallax, 0%)) scale(var(--img-scale, 1.15));
  transition: transform 0.1s linear, filter 700ms;
  will-change: transform;
}

.feature-card.is-tight-crop img {
  --img-scale: 1.34;
}

.feature-card:hover img {
  --img-scale: 1.19;
  filter: saturate(1.08) contrast(1.03);
}

.feature-card.is-tight-crop:hover img {
  --img-scale: 1.42;
}

.feature-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.feature-card span,
.project-tile span {
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 3.6vw, 58px);
  line-height: 0.92;
  letter-spacing: 0;
}

.feature-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.gtm {
  min-height: 100svh;
  padding: 96px 36px 128px;
}

.gtm-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.gtm-title .eyebrow {
  grid-column: 1 / -1;
  color: rgba(0, 0, 0, 0.45);
}

.gtm-title h2 {
  color: #b7b7b2;
}

.gtm-title p:last-child {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.filter-bar button.active {
  background: var(--ink);
  color: #fff;
}

.project-grid {
  column-count: 4;
  column-gap: 18px;
}

.project-tile {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  margin: 0 0 16px;
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  min-height: 0;
  isolation: isolate;
  break-inside: avoid;
}

.project-tile.size-standard {
  grid-column: auto;
  grid-row: auto;
}

.project-tile.size-wide {
  grid-column: auto;
  grid-row: auto;
}

.project-tile.size-tall {
  grid-column: auto;
  grid-row: auto;
}

.project-tile.size-large {
  grid-column: auto;
  grid-row: auto;
}

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

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  opacity: 0.84;
}

.project-tile::before {
  content: "OPEN";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms, transform 220ms;
}

.project-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  text-shadow:
    0 0 0 rgba(255, 0, 0, 0),
    0 0 0 rgba(0, 255, 255, 0),
    0 0 0 rgba(255, 255, 255, 0);
  transition: color 220ms, text-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tile img,
.project-tile video {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 50% 50%;
  background: transparent;
}

.project-tile img {
  display: block;
  max-width: min(100%, var(--natural-width, 100%));
  margin: 0 auto;
  transform: scale(1);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.project-tile video {
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tile:hover img,
.project-tile:hover video {
  transform: scale(1.02);
}

.project-tile:hover video {
  transform: scale(1.04);
}

.project-tile.is-cover-pending img {
  opacity: 0.86;
}

.project-grid:has(.project-tile:hover) .project-tile:not(:hover) {
  opacity: 0.65;
  filter: saturate(0.8) brightness(0.85);
  transform: scale(0.98);
}

.project-grid:has(.project-tile:hover) .project-tile:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.project-tile,
.capability-card,
.feature-card {
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.project-tile:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.project-tile:hover span {
  color: #fff;
  text-shadow:
    -2px 0 0 rgba(255, 0, 0, 0.78),
    2px 0 0 rgba(0, 255, 255, 0.78),
    0 0 18px rgba(255, 255, 255, 0.14);
}

.project-tile.is-hidden {
  display: none;
}

.project-grid.is-filtering .project-tile:not(.is-hidden) {
  animation: gridFilterIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gridFilterIn {
  from {
    opacity: 0.42;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-block {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal-block h2,
.reveal-block p {
  transform: translateY(16px) skewY(2deg);
  transform-origin: left center;
  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

.reveal-block.is-visible h2,
.reveal-block.is-visible p {
  transform: translateY(0) skewY(0deg);
}

.kinetic-word {
  position: absolute;
  right: -0.08em;
  top: 6%;
  z-index: 0;
  pointer-events: none;
  color: currentColor;
  opacity: 0.045;
  font-size: clamp(120px, 22vw, 420px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate3d(0, var(--kinetic-y, 0px), 0);
  will-change: transform;
}

.section-light .kinetic-word {
  opacity: 0.08;
}

[data-reveal].index-row {
  opacity: 0.22;
  transform: translateX(34px);
  transition: opacity 600ms, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.profile {
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(460px, 1fr);
  gap: clamp(40px, 4vw, 88px);
  align-items: center;
  padding: 104px 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.profile > * {
  min-width: 0;
}

.profile h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 118px);
  line-height: 0.88;
  white-space: nowrap;
  overflow-wrap: normal;
}

.avatar-lockup {
  width: min(260px, 62vw);
  margin: 34px 0 0;
  padding: 0;
}

.avatar-lockup img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.avatar-lockup figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-copy .profile-lead {
  max-width: 660px;
  margin: 0 0 22px;
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1.3;
  font-weight: 850;
  text-wrap: balance;
}

.profile-copy .profile-note {
  max-width: 620px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(14px, 1.08vw, 18px);
  line-height: 1.85;
  font-weight: 650;
}

.profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.profile dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.brand-experience {
  padding: 72px 36px;
  border-bottom: 1px solid var(--line);
}

.brand-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.brand-head .eyebrow {
  margin-bottom: 8px;
}

.brand-head h2 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 92px);
  line-height: 0.86;
  font-weight: 900;
}

.brand-head p:last-child {
  grid-column: 2;
  max-width: 660px;
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.78;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.brand-token {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(15px, 1.25vw, 22px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    color 240ms,
    border-color 240ms;
}

.brand-token:nth-child(4n) {
  border-right: 0;
}

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

.brand-token .line-icon {
  width: 15px;
  height: 15px;
  color: rgba(215, 196, 164, 0.42);
}

.brand-token:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(215, 196, 164, 0.46);
}

.links {
  min-height: auto;
  padding: 92px 36px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.links h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(48px, 8.2vw, 132px);
  line-height: 0.88;
}

.final-cta-copy {
  display: grid;
  gap: 22px;
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
}

.cta-presence {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-presence span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(215, 196, 164, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.cta-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0 16px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 220ms, background 220ms, transform 220ms;
}

.cta-actions a:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

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

.contact-side {
  display: grid;
  gap: 24px;
  align-self: stretch;
}

.contact-qr-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(6, 6, 6, 0.82);
}

.contact-status-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(8, 8, 8, 0.78);
}

.contact-status-card strong {
  max-width: 420px;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1;
}

.contact-status-card p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.contact-qr-media img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-qr-copy {
  display: grid;
  gap: 8px;
}

.contact-qr-copy .eyebrow {
  margin: 0;
}

.compact-originals {
  align-self: end;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.link-list span {
  font-weight: 850;
  font-size: 12px;
  line-height: 1.45;
}

.link-list b {
  font-size: 11px;
}

#magic-cursor {
  display: none;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body,
  a,
  button,
  .project-tile,
  .feature-card,
  .showreel,
  .hero-visual,
  .cgi-step,
  .social-rail a {
    cursor: none !important;
  }

  #magic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    --cursor-scale: 1;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 2147483647;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
      opacity 180ms ease,
      width 0.22s cubic-bezier(0.16, 1, 0.3, 1),
      height 0.22s cubic-bezier(0.16, 1, 0.3, 1),
      margin 0.22s cubic-bezier(0.16, 1, 0.3, 1),
      background 0.22s ease,
      backdrop-filter 0.22s ease;
  }

  #magic-cursor.is-visible {
    opacity: 1;
  }

  dialog[open] ~ #magic-cursor,
  body.dialog-open #magic-cursor {
    pointer-events: none;
    z-index: 2147483647;
  }

  body.dialog-open #magic-cursor {
    display: flex !important;
    pointer-events: none !important;
    z-index: 2147483647;
  }

  #magic-cursor.is-active {
    width: 76px;
    height: 76px;
    margin: -38px 0 0 -38px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    mix-blend-mode: normal;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  #magic-cursor.is-pressed {
    border-width: 2px;
    --cursor-scale: 0.8;
  }

  #magic-cursor.is-releasing {
    animation: cursorSpring 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  #magic-cursor .cursor-text {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #magic-cursor.is-active .cursor-text {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cursorSpring {
  0% {
    --cursor-scale: 0.8;
  }
  45% {
    --cursor-scale: 1.2;
  }
  100% {
    --cursor-scale: 1;
  }
}

.project-dialog {
  width: min(1380px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  border: 0;
  padding: 0;
  background: #080808;
  color: #fff;
  overflow: visible;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.58);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(16px);
  animation: dialogBackdropIn 260ms ease both;
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.62fr);
  animation: dialogPanelIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-dialog[open] .dialog-media {
  animation: dialogMediaIn 420ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.project-dialog[open] .dialog-copy {
  animation: dialogCopyIn 460ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

.project-dialog.is-closing {
  animation: dialogPanelOut 220ms ease both;
}

.project-dialog.is-closing::backdrop {
  animation: dialogBackdropOut 220ms ease both;
}

.project-dialog.is-closing .dialog-media {
  animation: dialogMediaOut 220ms ease both;
}

.project-dialog.is-closing .dialog-copy {
  animation: dialogCopyOut 220ms ease both;
}

@keyframes dialogPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialogPanelOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.992);
  }
}

@keyframes dialogBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dialogBackdropOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes dialogMediaIn {
  from {
    opacity: 0;
    transform: translateX(-18px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes dialogMediaOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-10px) scale(0.996);
  }
}

@keyframes dialogCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialogCopyOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.dialog-media {
  height: min(86vh, 860px);
  min-height: 620px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 52%),
    #030303;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.dialog-media::-webkit-scrollbar {
  width: 7px;
}

.dialog-media::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.dialog-media::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), var(--scrollbar-thumb));
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
}

.case-viewer {
  min-height: inherit;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  background: #030303;
}

.case-stage-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.06), transparent 48%),
    #030303;
}

.case-stage-word {
  position: absolute;
  right: -0.04em;
  top: 14px;
  z-index: 1;
  max-width: 78%;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(72px, 10vw, 180px);
  line-height: 0.82;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.case-stage-meta {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  max-width: 420px;
  pointer-events: none;
}

.case-stage-meta span {
  color: rgba(215, 196, 164, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-stage-meta strong {
  font-size: clamp(26px, 3vw, 54px);
  line-height: 0.96;
}

.case-stage-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.case-stage {
  position: relative;
  min-height: 720px;
  background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: 42px 42px;
  overflow: hidden;
}

.case-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 34%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.5));
}

.case-stage img,
.case-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
  padding: 0;
  transform-origin: center;
}

.case-stage.is-video video,
.case-stage-cover video {
  object-fit: cover;
}

.case-stage.is-entering img,
.case-stage.is-entering video {
  animation: caseReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.case-viewer-flow {
  display: block;
  min-height: auto;
}

.case-page-flow {
  background: #050505;
}

.case-flow-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 4;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-flow-intro b {
  color: rgba(215, 196, 164, 0.84);
}

.case-flow {
  display: grid;
  gap: 0;
  padding: 0 24px 40px;
  background: #050505;
}

.case-flow-item {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
}

.case-flow-item::before {
  content: attr(data-order);
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  color: rgba(215, 196, 164, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-flow-frame {
  position: relative;
  overflow: visible;
  border: 0;
  background: #0a0a0a;
  box-shadow: none;
}

.case-flow-item img,
.case-flow-item video {
  display: block;
  width: 100%;
  max-width: min(100%, var(--natural-width, 100%));
  height: auto;
  margin: 0 auto;
  background: #0a0a0a;
}

.case-flow-item.is-video .case-flow-frame {
  aspect-ratio: auto;
}

.case-flow-item.is-video video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case-controls {
  display: grid;
  grid-template-columns: 86px 1fr 68px 86px;
  gap: 12px;
  align-items: center;
  padding: 12px 18px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.72);
}

.case-controls button {
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.case-controls button.active {
  background: rgba(215, 196, 164, 0.16);
  border-color: var(--warm);
}

.case-progress {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.case-progress b {
  position: absolute;
  right: 0;
  top: -24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
}

.case-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--warm);
  transition: width 260ms ease;
}

.case-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 116px;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 18px 18px;
  background: rgba(0, 0, 0, 0.72);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.case-strip::-webkit-scrollbar {
  height: 5px;
}

.case-strip::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.case-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), var(--scrollbar-thumb));
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
}

.case-strip::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--scrollbar-thumb-hover), rgba(215, 196, 164, 0.78));
}

.case-thumb {
  position: relative;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  background: #151515;
  opacity: 0.54;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  scroll-snap-align: start;
}

.case-thumb.active,
.case-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--warm);
}

.case-thumb img,
.case-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.case-thumb span {
  position: absolute;
  left: 8px;
  bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 900;
  text-shadow: 0 1px 8px #000;
}

@keyframes caseReveal {
  from {
    opacity: 0;
    transform: scale(0.965) translateY(14px);
    filter: blur(8px) saturate(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
  }
}

.dialog-copy {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  max-height: min(86vh, 860px);
  overflow: hidden;
}

.dialog-copy-scroll {
  min-height: 0;
  padding: 42px 48px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.dialog-copy-scroll::-webkit-scrollbar {
  width: 6px;
}

.dialog-copy-scroll::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.dialog-copy-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), var(--scrollbar-thumb));
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
}

.dialog-copy-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover), rgba(215, 196, 164, 0.78));
}

.dialog-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
}

.dialog-text {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.76;
  font-size: 14px;
}

.dialog-facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog-facts li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.dialog-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-facts b {
  font-size: 13px;
  line-height: 1.55;
}

.dialog-link {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.dialog-actions {
  padding: 18px 48px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72), #080808 34%),
    #080808;
}

.dialog-link:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 196, 164, 0.78);
  background: rgba(215, 196, 164, 0.08);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.dialog-close:hover {
  transform: rotate(90deg) scale(1.04);
  border-color: rgba(215, 196, 164, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

html:lang(zh-CN) body {
  font-family: "Portfolio Inter", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
  line-break: loose;
  text-rendering: optimizeLegibility;
}

:lang(zh-CN) .hero h1,
:lang(zh-CN) .gtm h2,
:lang(zh-CN) .links h2 {
  font-size: clamp(64px, 12vw, 176px);
  line-height: 0.9;
}

:lang(zh-CN) .showreel-copy h2,
:lang(zh-CN) .capabilities-head h2,
:lang(zh-CN) .workflow-head h2,
:lang(zh-CN) .cgi-copy h2,
:lang(zh-CN) .section-heading h2 {
  line-height: 0.96;
}

:lang(zh-CN) .cgi-copy h2 {
  max-width: 700px;
  font-size: clamp(46px, 5.8vw, 88px);
}

:lang(zh-CN) .links h2 {
  max-width: 980px;
}

:lang(zh-CN) .hero-position span,
:lang(zh-CN) .showreel-copy p:last-child,
:lang(zh-CN) .capabilities-head p:last-child,
:lang(zh-CN) .cgi-lead,
:lang(zh-CN) .index-lead,
:lang(zh-CN) .archive-head p,
:lang(zh-CN) .profile-copy .profile-lead,
:lang(zh-CN) .profile-copy .profile-note,
:lang(zh-CN) .links p,
:lang(zh-CN) .dialog-summary {
  line-height: 1.78;
}

:lang(zh-CN) .eyebrow,
:lang(zh-CN) .brand small,
:lang(zh-CN) .top-nav a,
:lang(zh-CN) .work-details p,
:lang(zh-CN) .project-meta,
:lang(zh-CN) .feature-edge span,
:lang(zh-CN) .case-stage-meta span {
  letter-spacing: 0.02em;
}

:lang(zh-CN) .project-title,
:lang(zh-CN) .work-current p,
:lang(zh-CN) .capability-card strong,
:lang(zh-CN) .workflow-item strong,
:lang(zh-CN) .feature-card h3,
:lang(zh-CN) .dialog-title {
  line-height: 1.12;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero h1,
  .hero h1::after,
  .hero-scan,
  .intro-strip p,
  .marquee-track .marquee-content,
  .hero-visual.is-switching,
  .hero-visual.is-switching::before,
  .hero-visual.is-switching .hero-image-current,
  .hero-visual.is-switching .hero-image-next {
    animation: none !important;
  }

  .hero-glitch-stack,
  .hero-flash {
    display: none !important;
  }

  .hero-visual,
  .showreel video,
  .showreel iframe,
  .capability-preview img,
  .cgi-visual img,
  .cgi-scan,
  .feature-card,
  .brand-token {
    transform: none !important;
  }

  .ambient-section::before,
  .ambient-section::after {
    animation: none !important;
    opacity: 0 !important;
  }

  #magic-cursor {
    display: none !important;
  }

  body,
  a,
  button,
  .project-tile,
  .feature-card,
  .showreel,
  .hero-visual {
    cursor: auto !important;
  }
}

@media (max-width: 1100px) {
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .cgi-process {
    grid-template-columns: 1fr;
  }

  .capability-preview {
    position: relative;
    top: auto;
    min-height: 420px;
    order: -1;
  }

  .capability-preview-word {
    font-size: clamp(72px, 14vw, 148px);
  }

  .cgi-visual {
    min-height: 520px;
  }

  .cgi-copy {
    min-height: auto;
  }

  .capability-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-token:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .brand-token:nth-child(2n) {
    border-right: 0;
  }

  .workflow-item:nth-child(2n) {
    border-right: 0;
  }

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

  .profile h2 {
    font-size: clamp(54px, 12vw, 118px);
    max-width: none;
  }

  .profile-copy .profile-lead,
  .profile-copy .profile-note {
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .top-nav {
    position: fixed;
    inset: var(--header-h) 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    mix-blend-mode: normal;
  }

  .top-nav.is-open {
    display: grid;
  }

  .menu-button {
    display: flex;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-switch {
    mix-blend-mode: normal;
  }

  .social-rail {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 18px 24px;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 104px);
  }

  :lang(zh-CN) .hero h1 {
    font-size: clamp(56px, 17vw, 92px);
    line-height: 0.92;
  }

  .hero h1::after {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
    height: 54svh;
  }

  .hero-meta {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 3;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-position {
    margin-top: 20px;
  }

  .capabilities,
  .cgi-process,
  .workflow,
  .brand-experience {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  .capabilities-head,
  .workflow-head,
  .brand-head {
    gap: 14px;
    margin-bottom: 34px;
  }

  .capabilities-head p:last-child,
  .brand-head p:last-child {
    grid-column: 1;
    margin: 0;
  }

  .capability-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .capability-preview {
    min-height: 340px;
  }

  .cgi-visual {
    min-height: 360px;
  }

  .cgi-copy h2 {
    font-size: clamp(42px, 13vw, 76px);
  }

  :lang(zh-CN) .cgi-copy h2,
  :lang(zh-CN) .showreel-copy h2,
  :lang(zh-CN) .capabilities-head h2,
  :lang(zh-CN) .workflow-head h2,
  :lang(zh-CN) .section-heading h2 {
    font-size: clamp(40px, 11.5vw, 68px);
    line-height: 1;
  }

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

  .card-kicker,
  .workflow-kicker {
    margin-bottom: 22px;
  }

  .workflow-grid {
    border-top: 0;
  }

  .workflow-item,
  .workflow-item:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .intro-strip p {
    padding: 18px 26px;
  }

  .work-stage,
  .capabilities,
  .cgi-process,
  .workflow,
  .brand-experience,
  .gtm,
  .profile,
  .links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .capabilities-head,
  .workflow-head,
  .cgi-process,
  .brand-head,
  .gtm-title,
  .project-index,
  .profile,
  .brand-experience,
  .links {
    grid-template-columns: 1fr;
  }

  .sticky-title {
    position: relative;
    top: auto;
  }

  .index-preview {
    width: 100%;
    max-width: 420px;
  }

  .index-row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 116px;
    align-items: start;
    padding: 18px 0;
  }

  .index-copy,
  .index-meta {
    grid-column: 2;
  }

  .index-meta {
    justify-items: start;
    text-align: left;
    margin-top: 2px;
    padding-top: 0;
  }

  .work-stage {
    min-height: auto;
    padding-top: 88px;
  }

  .work-pin {
    position: relative;
    top: auto;
    height: auto;
    padding: 0 18px 40px;
  }

  .work-meta {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .work-current {
    justify-items: start;
    text-align: left;
  }

  .work-details {
    max-width: none;
  }

  .work-viewport::before,
  .work-viewport::after {
    display: none;
  }

  .work-track {
    grid-auto-columns: 82vw;
    overflow-x: auto;
    padding-right: 18px;
  }

  .work-ghost span {
    font-size: clamp(72px, 16vw, 132px);
  }

  .work-track::-webkit-scrollbar {
    height: 2px;
  }

  .work-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
  }

  .feature-card,
  .feature-card.tall {
    height: 470px;
    margin-top: 0;
    transform: none;
    filter: none;
  }

  .project-grid {
    column-count: 2;
  }

  .project-tile.size-standard,
  .project-tile.size-wide {
    grid-row: span 1;
  }

  .project-tile.size-tall,
  .project-tile.size-large {
    grid-row: span 2;
  }

  .profile-copy .profile-lead {
    font-size: 28px;
  }

  .profile-copy .profile-note {
    font-size: 15px;
  }

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

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

  .brand-token {
    min-height: 74px;
    padding-right: 12px;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 320px;
    height: 58vh;
    max-height: none;
  }

  .case-viewer {
    grid-template-rows: auto auto minmax(0, 1fr);
  }

  .case-stage-shell,
  .case-stage {
    min-height: 520px;
  }

  .dialog-copy {
    max-height: none;
  }

  .dialog-copy-scroll {
    padding: 28px 28px 18px;
  }

  .dialog-actions {
    padding: 16px 28px 28px;
  }

  .contact-status-card strong {
    font-size: 24px;
  }

  .case-stage-meta {
    left: 18px;
    top: 18px;
    max-width: calc(100% - 36px);
  }

  .case-stage-word {
    font-size: clamp(58px, 14vw, 120px);
  }

  .case-flow {
    padding: 20px 18px 28px;
    gap: 18px;
  }

  .case-flow-item {
    width: min(760px, 100%);
  }

  .case-flow-intro {
    padding: 16px 18px 18px;
  }

  .showreel-copy {
    width: auto;
    margin: 0 18px 130px;
  }

  .links {
    gap: 34px;
  }

  .contact-side,
  .compact-originals {
    align-self: stretch;
  }

  .sound-unlock {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .cgi-step {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
  }
}

@media (max-width: 720px) {
  .contact-qr-card {
    padding: 16px;
  }

  .contact-qr-media img {
    width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 62px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-frame strong {
    font-size: 32px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-meta small {
    font-size: 9px;
  }

  .project-grid {
    column-count: 1;
  }

  .capability-preview-copy strong {
    font-size: 28px;
  }

  .capability-preview-copy p,
  .work-details p {
    font-size: 13px;
  }

  .work-track {
    grid-auto-columns: 88vw;
  }

  .work-current b {
    font-size: 34px;
  }

  .work-ghost span {
    font-size: 72px;
  }

  #magic-cursor {
    display: none;
  }

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

  .brand-token,
  .brand-token:nth-child(2n),
  .brand-token:nth-child(4n) {
    border-right: 0;
  }

  .links h2 {
    font-size: 56px;
  }

  :lang(zh-CN) .links h2 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1.02;
  }

  .cta-presence {
    gap: 8px;
  }

  .cta-presence span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .case-stage-meta strong {
    font-size: 24px;
  }

  .case-stage-meta p {
    font-size: 12px;
  }

  .case-stage-shell,
  .case-stage {
    min-height: 380px;
  }

  .case-flow {
    padding: 18px 14px 24px;
    gap: 16px;
  }

  .case-flow-item::before {
    top: -16px;
    font-size: 9px;
  }

  .case-flow-intro {
    padding: 14px 14px 16px;
    font-size: 10px;
  }

  .dialog-copy {
    padding: 28px 22px;
  }

  .profile h2 {
    font-size: clamp(36px, 10.4vw, 48px);
    line-height: 0.96;
  }
}

/* HR portfolio layout refresh */
:root {
  --portfolio-blue: #2f72ff;
  --portfolio-blue-soft: rgba(47, 114, 255, 0.34);
  --portfolio-panel: rgba(255, 255, 255, 0.045);
  --portfolio-panel-strong: rgba(255, 255, 255, 0.075);
}

body {
  background:
    radial-gradient(circle at 52% 8%, rgba(47, 114, 255, 0.12), transparent 24vw),
    radial-gradient(circle at 92% 42%, rgba(215, 196, 164, 0.08), transparent 22vw),
    #020203;
}

.grain {
  opacity: 0.42;
}

.ambient-glow {
  opacity: 0.54;
}

.site-header {
  mix-blend-mode: normal;
  padding: 0 clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(2, 2, 3, 0.76), rgba(2, 2, 3, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand span {
  font-size: 13px;
}

.top-nav a {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.72);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #fff;
}

.lang-switch {
  border-radius: 999px;
}

.lang-switch button {
  border-radius: 999px;
}

.hero {
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-items: end;
  padding: calc(var(--header-h) + 40px) clamp(18px, 4vw, 58px) clamp(34px, 5vw, 74px);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.12), transparent 12vw),
    #020203;
}

.hero::before {
  content: "";
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  top: calc(var(--header-h) + 22px);
  bottom: 28px;
  width: auto;
  height: auto;
  font-size: 0;
  transform: none;
  color: transparent;
  -webkit-text-stroke: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent 84%);
  pointer-events: none;
}

.hero-copy {
  align-self: end;
  max-width: min(1180px, 92vw);
  padding-bottom: clamp(112px, 16vh, 180px);
}

.hero .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.58);
}

.hero h1 {
  max-width: 1220px;
  font-size: clamp(78px, 19vw, 246px);
  line-height: 0.78;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.22),
    0 0 76px rgba(47, 114, 255, 0.22);
}

:lang(zh-CN) .hero h1 {
  font-size: clamp(76px, 18vw, 232px);
  line-height: 0.78;
}

.hero h1::before {
  opacity: 0.16;
  background:
    repeating-linear-gradient(0deg, transparent 0 0.12em, rgba(255, 255, 255, 0.16) 0.122em 0.126em),
    linear-gradient(90deg, rgba(47, 114, 255, 0.18), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.1));
}

.hero-title-line {
  max-width: max-content;
}

.hero-position {
  width: min(780px, 92vw);
  margin-top: 24px;
  gap: 12px;
}

.hero-position p {
  font-size: clamp(18px, 2vw, 32px);
  text-transform: none;
}

.hero-position span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(12px, 1.06vw, 16px);
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: calc(var(--header-h) + 22px) clamp(18px, 4vw, 58px) 28px;
  height: auto;
  min-height: 0;
  clip-path: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050507;
  opacity: 0.72;
  filter: saturate(0.88) brightness(0.74) contrast(1.08);
}

body.is-intro .hero-visual {
  transform: translate3d(0, 22px, 0) scale(1.015);
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.92), rgba(2, 2, 3, 0.42) 44%, rgba(2, 2, 3, 0.84)),
    linear-gradient(0deg, rgba(2, 2, 3, 0.96), transparent 35%, rgba(2, 2, 3, 0.52)),
    radial-gradient(circle at 46% 48%, rgba(255, 255, 255, 0.12), transparent 18vw);
}

.hero-frame {
  left: auto;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 46px);
  width: min(270px, 42vw);
  text-align: right;
}

.hero-frame strong {
  font-size: clamp(42px, 5vw, 88px);
  text-shadow: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.68);
}

.hero-frame p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.hero-meta {
  left: auto;
  right: clamp(18px, 4vw, 58px);
  top: calc(var(--header-h) + 38px);
  bottom: auto;
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
}

.hero-meta div {
  justify-items: end;
}

.hero-meta span {
  font-size: clamp(20px, 2.1vw, 38px);
}

.intro-strip {
  background: #020203;
}

.intro-strip p {
  font-size: clamp(22px, 3.8vw, 54px);
  color: rgba(255, 255, 255, 0.1);
}

.portfolio-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(320px, 0.54fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 4vw, 58px) clamp(72px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}

.portfolio-proof > * {
  position: relative;
  z-index: 1;
}

.portfolio-proof::before {
  opacity: 0.3;
}

.portfolio-proof-copy,
.portfolio-proof-note,
.portfolio-track-grid {
  width: min(1180px, 100%);
  margin: 0;
}

.portfolio-proof-copy {
  display: grid;
  gap: 12px;
  align-items: start;
}

.portfolio-proof-copy .eyebrow {
  margin: 0;
}

.portfolio-proof-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 0.92;
  letter-spacing: 0;
}

:lang(zh-CN) .portfolio-proof-copy h2 {
  font-size: clamp(30px, 4.8vw, 68px);
  line-height: 0.96;
}

.portfolio-proof-note {
  display: grid;
  gap: 14px;
  justify-self: end;
  align-self: start;
  max-width: 360px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.portfolio-proof-note p {
  max-width: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

.portfolio-proof-note dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.portfolio-proof-note dl div {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  min-height: 0;
  border-top: 0;
  padding-top: 0;
}

.portfolio-proof-note dl div:first-child {
  border-top-color: transparent;
}

.portfolio-proof-note dt,
.portfolio-proof-note dd {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-proof-note dt {
  color: var(--portfolio-blue);
}

.portfolio-proof-note dd {
  color: rgba(255, 255, 255, 0.84);
}

.portfolio-track-grid {
  grid-column: 1 / -1;
  margin-top: clamp(22px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.portfolio-track-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #070708;
  color: #fff;
  padding: 20px;
  display: grid;
  align-content: end;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-track-card:first-child {
  grid-row: 1 / span 2;
  min-height: clamp(420px, 42vw, 560px);
}

.portfolio-track-card:nth-child(2),
.portfolio-track-card:nth-child(3) {
  min-height: clamp(202px, 16vw, 272px);
}

.portfolio-track-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.9) brightness(0.78) contrast(1.04);
  transform: scale(1.05);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-track-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 26%, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.portfolio-track-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--portfolio-blue);
  box-shadow: 0 0 22px var(--portfolio-blue-soft);
}

.portfolio-track-card:hover,
.portfolio-track-card:focus-visible {
  outline: 0;
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.portfolio-track-card:hover img,
.portfolio-track-card:focus-visible img {
  transform: scale(1.1);
  filter: saturate(1.05) brightness(0.88) contrast(1.06);
}

.portfolio-track-kicker {
  display: block;
  max-width: 82%;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-track-card strong {
  display: block;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 0.92;
  letter-spacing: 0;
}

.portfolio-track-card:nth-child(2) strong,
.portfolio-track-card:nth-child(3) strong {
  font-size: clamp(24px, 2.6vw, 40px);
}

.portfolio-track-card p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.portfolio-track-card b {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capabilities,
.workflow {
  background: #020203;
}

.capabilities {
  padding: clamp(88px, 10vw, 130px) clamp(18px, 4vw, 58px);
}

.capabilities-head,
.workflow-head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
}

.capabilities-head h2,
.workflow-head h2 {
  font-size: clamp(44px, 7.5vw, 116px);
}

.capabilities-head p:last-child {
  max-width: 620px;
}

.capability-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: block;
}

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

.capability-preview {
  display: none;
}

.capability-card {
  min-height: 252px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 114, 255, 0.16), transparent 38%),
    var(--portfolio-panel);
}

.capability-card h3 {
  font-size: clamp(28px, 3.2vw, 48px);
}

.card-kicker {
  margin-bottom: 42px;
}

.workflow {
  padding-left: clamp(18px, 4vw, 58px);
  padding-right: clamp(18px, 4vw, 58px);
}

.workflow-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top-color: rgba(255, 255, 255, 0.13);
}

.project-index {
  padding-left: clamp(18px, 4vw, 58px);
  padding-right: clamp(18px, 4vw, 58px);
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 52px);
}

.project-index .kinetic-word {
  display: none;
}

.sticky-title {
  max-width: none;
}

.sticky-title h2 {
  max-width: 420px;
  font-size: clamp(28px, 3.6vw, 56px);
}

.index-lead {
  max-width: 420px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.62;
}

.index-preview {
  width: 100%;
  margin-top: 24px;
  border-radius: 6px;
}

.index-preview-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 40%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 58%);
}

.index-preview-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.index-preview-item figcaption span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.index-preview-item figcaption strong {
  max-width: 88%;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.98;
  font-weight: 900;
}

.index-preview-item figcaption p {
  max-width: 88%;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.52;
}

.index-list {
  gap: 8px;
  border-top: 0;
}

.index-row {
  min-height: 0;
  grid-template-columns: 40px 168px minmax(0, 1fr) minmax(110px, 132px);
  gap: 14px 18px;
  align-items: center;
  padding: 14px 0;
}

.index-row::before {
  left: -10px;
  top: 12px;
  bottom: 12px;
}

.index-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #090909;
}

.index-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-row:hover .index-thumb img,
.index-row.is-active .index-thumb img {
  transform: scale(1.045);
}

.index-copy {
  gap: 6px;
}

.index-copy small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.index-row strong {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.02;
}

.index-meta {
  gap: 6px;
  padding-top: 0;
}

.index-meta em {
  font-size: 12px;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
}

.index-meta b {
  color: rgba(255, 255, 255, 0.82);
}

.index-list:has(.index-row:hover) .index-row:not(:hover) {
  opacity: 0.62;
}

.index-row.is-active strong,
.index-row:hover strong {
  color: #fff;
  transform: none;
}

.work-stage {
  padding-top: clamp(88px, 10vw, 132px);
}

.work-pin {
  padding-left: clamp(18px, 4vw, 58px);
}

.feature-card {
  height: clamp(390px, 50vh, 610px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.work-track {
  grid-auto-columns: minmax(420px, 33vw);
}

.gtm.section-light {
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 114, 255, 0.1), transparent 22vw),
    #020203;
  color: #fff;
  border-top: 1px solid var(--line);
}

.gtm-title {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.gtm-title .eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.gtm-title h2 {
  color: #fff;
  font-size: clamp(48px, 9vw, 132px);
}

.gtm-title p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.filter-bar {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.gtm.section-light .filter-bar button {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}

.gtm.section-light .filter-bar button.active {
  background: #fff;
  color: #030304;
}

.project-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  column-count: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-tile {
  margin: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.project-tile img,
.project-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

.project-tile:nth-child(1),
.project-tile:nth-child(7) {
  grid-column: span 2;
  aspect-ratio: 16 / 8;
}

.project-tile span {
  font-size: 12px;
}

.profile,
.brand-experience,
.links {
  background: #020203;
}

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

  .portfolio-track-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .project-index {
    grid-template-columns: 1fr;
  }

  .sticky-title {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.9fr);
    gap: 18px 28px;
    align-items: end;
  }

  .sticky-title .index-preview {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .index-row {
    grid-template-columns: 34px 152px minmax(0, 1fr);
  }

  .index-meta {
    grid-column: 3;
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: 92svh;
    padding: calc(var(--header-h) + 30px) 18px 30px;
  }

  .hero::before,
  .hero-visual {
    inset: calc(var(--header-h) + 14px) 18px 22px;
  }

  .hero-copy {
    padding-bottom: 132px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 128px);
  }

  .hero-frame {
    display: none;
  }

  .hero-meta {
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    text-align: left;
    gap: 12px;
  }

  .hero-meta div {
    justify-items: start;
  }

  .portfolio-proof {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-proof-copy,
  .portfolio-proof-note,
  .capabilities-head,
  .workflow-head,
  .project-index,
  .gtm-title {
    grid-template-columns: 1fr;
  }

  .portfolio-proof-note {
    justify-self: stretch;
    max-width: none;
    padding-top: 0;
  }

  .portfolio-track-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-track-card,
  .portfolio-track-card:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .index-preview {
    aspect-ratio: 16 / 11;
  }

  .index-row {
    grid-template-columns: 28px 118px minmax(0, 1fr);
    gap: 10px 14px;
    align-items: start;
  }

  .index-meta {
    grid-column: 3;
    justify-items: start;
  }

  .capabilities-head p:last-child {
    grid-column: auto;
    margin: 0;
  }

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

  .project-tile:nth-child(1),
  .project-tile:nth-child(7) {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding-bottom: 148px;
  }

  .hero-position span {
    max-width: 96%;
  }

  .hero-meta {
    bottom: 26px;
  }

  .hero-meta span {
    font-size: 18px;
  }

  .portfolio-proof-copy h2 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .portfolio-proof-note dl div {
    grid-template-columns: auto auto;
  }

  .portfolio-track-card {
    min-height: 270px;
    padding: 18px;
  }

  .portfolio-track-card strong {
    font-size: 34px;
  }

  .portfolio-track-card b {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: 14px;
  }

  .sticky-title {
    grid-template-columns: 1fr;
  }

  .sticky-title .index-preview {
    max-width: none;
  }

  .index-row {
    grid-template-columns: 1fr;
  }

  .index-order {
    margin-bottom: 2px;
  }

  .index-thumb {
    aspect-ratio: 16 / 9;
  }

  .index-meta {
    grid-column: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

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

  .work-track {
    grid-auto-columns: 86vw;
  }
}

/* Portfolio polish pass */

.portfolio-proof {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(16px, 2.4vw, 30px);
  align-items: end;
  padding-top: clamp(40px, 4.6vw, 62px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.portfolio-proof-copy {
  max-width: 360px;
  gap: 10px;
  align-self: end;
}

.portfolio-proof-copy h2 {
  max-width: 360px;
  font-size: clamp(26px, 3.5vw, 50px);
  line-height: 0.96;
}

:lang(zh-CN) .portfolio-proof-copy h2 {
  font-size: clamp(28px, 3.8vw, 54px);
}

.portfolio-proof-note {
  max-width: none;
  gap: 14px;
  padding-top: 2px;
  justify-self: start;
  align-self: start;
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-proof-note p {
  display: none;
}

.portfolio-proof-note dl {
  display: grid;
  gap: 10px;
}

.portfolio-proof-note dl div {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-track-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
  grid-template-rows: repeat(2, minmax(214px, 1fr));
  gap: 12px;
}

.portfolio-track-card {
  padding: 22px;
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.34);
}

.portfolio-track-card:first-child {
  min-height: clamp(430px, 40vw, 540px);
}

.portfolio-track-card:nth-child(2),
.portfolio-track-card:nth-child(3) {
  min-height: clamp(184px, 16vw, 248px);
}

.portfolio-track-card img {
  filter: saturate(1.02) brightness(0.98) contrast(1.08);
}

.portfolio-track-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 6%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 68%);
}

.portfolio-track-kicker {
  margin-bottom: 10px;
}

.portfolio-track-card strong {
  max-width: 10ch;
  font-size: clamp(30px, 3vw, 46px);
}

.portfolio-track-card:nth-child(2) strong,
.portfolio-track-card:nth-child(3) strong {
  font-size: clamp(24px, 2.1vw, 32px);
}

.portfolio-track-card p {
  max-width: 280px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.portfolio-track-card:nth-child(2) p,
.portfolio-track-card:nth-child(3) p {
  display: none;
}

.project-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  overflow: visible;
  padding-top: clamp(28px, 3vw, 42px);
  padding-bottom: clamp(92px, 10vw, 132px);
}

.index-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 8px 28px;
  align-items: end;
}

.index-summary .eyebrow {
  margin: 0;
  grid-column: 1 / -1;
}

.index-summary h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.92;
}

.index-lead {
  margin: 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.55;
  justify-self: end;
}

.index-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(24px, 2.2vw, 36px);
  align-items: start;
  padding-bottom: clamp(180px, 22vh, 260px);
}

.index-preview-shell {
  position: relative;
  align-self: start;
  height: clamp(560px, 72vh, 660px);
  min-height: clamp(560px, 72vh, 660px);
  --index-preview-left: 0px;
  --index-preview-width: 100%;
  --index-preview-height: clamp(560px, 72vh, 660px);
  --index-preview-top: calc(var(--header-h) + 18px);
}

.index-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.42);
  opacity: 1;
  transform: none;
}

.index-preview-shell.is-fixed .index-preview {
  position: fixed;
  top: var(--index-preview-top);
  left: var(--index-preview-left);
  width: var(--index-preview-width);
  height: var(--index-preview-height);
  z-index: 2;
}

.index-preview-shell.is-bottom .index-preview {
  position: absolute;
  inset: auto 0 0 0;
}

.index-preview-track,
.index-preview-item {
  height: 100%;
}

.index-preview-item::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 18%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 58%);
}

.index-preview-item {
  opacity: 0.58;
  transform: scale(1);
  filter: saturate(0.98) brightness(0.88);
}

.index-preview-item figcaption {
  left: 28px;
  right: 28px;
  bottom: 28px;
  gap: 8px;
}

.index-preview-item figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.index-preview-item figcaption strong {
  max-width: 72%;
  font-size: clamp(48px, 4vw, 72px);
  line-height: 0.88;
}

.index-preview-item figcaption p {
  max-width: 62%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index-list {
  min-width: 0;
  padding-top: 6px;
}

.index-row {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: start;
  min-height: 96px;
  padding: 20px 0 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 72%);
}

.index-row::before {
  left: -16px;
  top: 18px;
  bottom: 18px;
}

.index-thumb {
  display: none;
}

.index-order {
  padding-top: 4px;
}

.index-copy {
  gap: 4px;
}

.index-copy small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.index-copy p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.index-row strong {
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.78);
}

.index-meta {
  min-width: 94px;
  padding-top: 4px;
  align-content: start;
  justify-items: end;
  text-align: right;
}

.index-meta b {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.index-list:has(.index-row:hover) .index-row:not(:hover) {
  opacity: 1;
}

.index-row.is-active strong,
.index-row:hover strong {
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(0);
}

.index-row:hover,
.index-row:focus-visible {
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .project-index {
    gap: 22px;
    padding-bottom: clamp(92px, 10vw, 130px);
  }

  .index-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .index-stage {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 0;
  }

  .index-preview-shell {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .index-preview {
    position: relative;
    inset: auto;
    max-width: 760px;
    width: 100%;
    height: clamp(360px, 52vw, 500px);
  }

  .index-lead {
    max-width: 640px;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .portfolio-proof {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-proof-note {
    order: 3;
    max-width: none;
    justify-self: stretch;
  }

  .portfolio-proof-copy {
    max-width: none;
  }

  .portfolio-proof-copy h2 {
    max-width: 8ch;
    font-size: clamp(34px, 12vw, 58px);
  }

  .portfolio-track-grid {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .portfolio-track-card,
  .portfolio-track-card:first-child {
    min-height: 320px;
  }

  .portfolio-track-card:nth-child(2),
  .portfolio-track-card:nth-child(3) {
    min-height: 176px;
  }

  .portfolio-proof-note dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-proof-note dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-index {
    gap: 18px;
    padding-bottom: clamp(80px, 10vw, 110px);
  }

  .index-summary h2 {
    max-width: none;
    font-size: clamp(28px, 10vw, 46px);
  }

  .index-preview {
    height: auto;
    aspect-ratio: 0.88;
  }

  .index-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .index-thumb img {
    opacity: 0.98;
  }

  .index-row {
    grid-template-columns: 24px 84px minmax(0, 1fr);
    gap: 10px 14px;
    align-items: start;
    padding: 18px 0 20px;
    background: transparent;
  }

  .index-order {
    padding-top: 2px;
  }

  .index-row strong {
    font-size: clamp(22px, 7vw, 34px);
  }

  .index-copy p {
    -webkit-line-clamp: 2;
  }

  .index-meta {
    grid-column: 3;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .portfolio-proof-copy h2 {
    font-size: clamp(30px, 14vw, 52px);
  }

  .portfolio-proof-note dl {
    grid-template-columns: 1fr;
  }

  .portfolio-proof-note dl div {
    grid-template-columns: 20px 1fr;
    gap: 10px;
  }

  .index-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0 16px;
  }

  .index-thumb {
    aspect-ratio: 16 / 9;
  }

  .index-order,
  .index-meta {
    padding-top: 0;
  }

  .index-meta {
    grid-column: auto;
    justify-items: start;
    text-align: left;
  }
}

/* Chinese layout polish */
html:lang(zh-CN) body {
  word-break: normal;
  overflow-wrap: anywhere;
}

:lang(zh-CN) .top-nav {
  gap: 14px;
}

:lang(zh-CN) .top-nav a,
:lang(zh-CN) .lang-switch button,
:lang(zh-CN) .filter-bar button,
:lang(zh-CN) .cta-actions a,
:lang(zh-CN) .dialog-link {
  letter-spacing: 0.04em;
}

:lang(zh-CN) .lang-switch button {
  min-width: 44px;
  padding: 0 11px;
}

:lang(zh-CN) .hero-position span,
:lang(zh-CN) .portfolio-proof-note p,
:lang(zh-CN) .showreel-copy p:last-child,
:lang(zh-CN) .capabilities-head p:last-child,
:lang(zh-CN) .cgi-lead,
:lang(zh-CN) .workflow-item p,
:lang(zh-CN) .index-lead,
:lang(zh-CN) .gtm-title p:last-child,
:lang(zh-CN) .profile-copy .profile-note,
:lang(zh-CN) .brand-head p,
:lang(zh-CN) .links p,
:lang(zh-CN) .contact-status-card p,
:lang(zh-CN) .dialog-text,
:lang(zh-CN) .dialog-facts b {
  line-height: 1.72;
}

:lang(zh-CN) .portfolio-proof-copy h2,
:lang(zh-CN) .showreel-copy h2,
:lang(zh-CN) .capabilities-head h2,
:lang(zh-CN) .workflow-head h2,
:lang(zh-CN) .cgi-copy h2,
:lang(zh-CN) .section-heading h2,
:lang(zh-CN) .gtm-title h2,
:lang(zh-CN) .brand-head h2,
:lang(zh-CN) .links h2,
:lang(zh-CN) .dialog-copy h3 {
  line-height: 1.06;
  text-wrap: balance;
}

:lang(zh-CN) .capabilities-head h2,
:lang(zh-CN) .workflow-head h2,
:lang(zh-CN) .brand-head h2 {
  font-size: clamp(44px, 7vw, 104px);
}

:lang(zh-CN) .section-heading h2 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 92px);
}

:lang(zh-CN) .gtm-title h2,
:lang(zh-CN) .links h2 {
  max-width: 820px;
  font-size: clamp(42px, 7.4vw, 106px);
}

:lang(zh-CN) .profile-copy .profile-lead {
  max-width: 720px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.46;
}

:lang(zh-CN) .capability-card h3,
:lang(zh-CN) .workflow-item h3,
:lang(zh-CN) .cgi-step strong {
  line-height: 1.18;
}

:lang(zh-CN) .capability-card strong,
:lang(zh-CN) .workflow-item strong {
  min-height: 0;
  line-height: 1.5;
}

:lang(zh-CN) .feature-card h3,
:lang(zh-CN) .feature-content p,
:lang(zh-CN) .project-tile span,
:lang(zh-CN) .index-row strong,
:lang(zh-CN) .index-preview-item figcaption strong,
:lang(zh-CN) .link-list span {
  line-height: 1.12;
  text-transform: none;
}

:lang(zh-CN) .feature-ghost {
  line-height: 0.92;
}

:lang(zh-CN) .project-tile span {
  font-size: 13px;
  letter-spacing: 0.02em;
}

:lang(zh-CN) .project-tile::before {
  content: "查看";
  letter-spacing: 0.08em;
}

:lang(zh-CN) .index-copy p,
:lang(zh-CN) .index-preview-item figcaption p {
  line-height: 1.55;
}

:lang(zh-CN) .index-row strong {
  font-size: clamp(24px, 2vw, 34px);
}

:lang(zh-CN) .index-preview-item figcaption strong {
  max-width: 82%;
  font-size: clamp(38px, 3.4vw, 60px);
}

:lang(zh-CN) .dialog-copy h3 {
  max-width: 560px;
  font-size: clamp(28px, 2.5vw, 44px);
}

:lang(zh-CN) .dialog-facts li {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
}

:lang(zh-CN) .dialog-facts span {
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  :lang(zh-CN) .top-nav {
    gap: 8px;
  }

  :lang(zh-CN) .top-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  :lang(zh-CN) .portfolio-proof-copy h2,
  :lang(zh-CN) .cgi-copy h2,
  :lang(zh-CN) .showreel-copy h2,
  :lang(zh-CN) .capabilities-head h2,
  :lang(zh-CN) .workflow-head h2,
  :lang(zh-CN) .section-heading h2,
  :lang(zh-CN) .gtm-title h2,
  :lang(zh-CN) .brand-head h2 {
    font-size: clamp(38px, 10.5vw, 62px);
    line-height: 1.08;
  }

  :lang(zh-CN) .links h2 {
    font-size: clamp(40px, 10.8vw, 68px);
    line-height: 1.12;
  }

  :lang(zh-CN) .feature-card h3 {
    font-size: clamp(28px, 8vw, 48px);
  }

  :lang(zh-CN) .index-row strong {
    font-size: clamp(21px, 6vw, 30px);
    line-height: 1.16;
  }
}

@media (max-width: 560px) {
  :lang(zh-CN) .hero-position span {
    max-width: 24em;
  }

  :lang(zh-CN) .capabilities-head h2,
  :lang(zh-CN) .workflow-head h2,
  :lang(zh-CN) .section-heading h2,
  :lang(zh-CN) .gtm-title h2,
  :lang(zh-CN) .brand-head h2,
  :lang(zh-CN) .links h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  :lang(zh-CN) .profile-copy .profile-lead {
    font-size: clamp(22px, 7vw, 30px);
  }

  :lang(zh-CN) .dialog-copy h3 {
    font-size: clamp(24px, 7vw, 34px);
  }

  :lang(zh-CN) .dialog-facts li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Chinese editorial refinement */
html:lang(zh-CN) body {
  font-family: "Portfolio Text SC", "Noto Sans SC", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-weight: 360;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

:lang(zh-CN) .hero h1,
:lang(zh-CN) .portfolio-proof-copy h2,
:lang(zh-CN) .showreel-copy h2,
:lang(zh-CN) .capabilities-head h2,
:lang(zh-CN) .workflow-head h2,
:lang(zh-CN) .cgi-copy h2,
:lang(zh-CN) .section-heading h2,
:lang(zh-CN) .gtm-title h2,
:lang(zh-CN) .index-summary h2,
:lang(zh-CN) .profile h2,
:lang(zh-CN) .brand-head h2,
:lang(zh-CN) .links h2,
:lang(zh-CN) .dialog-copy h3 {
  font-family: "Portfolio Display SC", "Noto Sans SC DemiLight", "Noto Sans SC Light", "Microsoft YaHei UI Light", sans-serif;
  font-weight: 320;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

:lang(zh-CN) .eyebrow,
:lang(zh-CN) .brand small,
:lang(zh-CN) .top-nav a,
:lang(zh-CN) .lang-switch button,
:lang(zh-CN) .filter-bar button,
:lang(zh-CN) .portfolio-track-kicker,
:lang(zh-CN) .card-kicker,
:lang(zh-CN) .workflow-kicker,
:lang(zh-CN) .index-copy small,
:lang(zh-CN) .index-meta b,
:lang(zh-CN) .dialog-facts span {
  font-weight: 420;
  letter-spacing: 0.14em;
}

:lang(zh-CN) .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%),
    radial-gradient(circle at 52% 36%, rgba(255, 255, 255, 0.08), transparent 13vw),
    #020203;
}

:lang(zh-CN) .hero::before {
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 88px 88px;
}

:lang(zh-CN) .hero-copy {
  max-width: min(980px, 88vw);
  padding-bottom: clamp(132px, 18vh, 206px);
}

:lang(zh-CN) .hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.52);
}

:lang(zh-CN) .hero h1 {
  max-width: 8.2em;
  font-size: clamp(58px, 8.8vw, 128px);
  font-weight: 300;
  letter-spacing: -0.085em;
  line-height: 1.02;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.06),
    0 0 36px rgba(47, 114, 255, 0.08);
}

:lang(zh-CN) .hero h1::before,
:lang(zh-CN) .hero h1::after {
  opacity: 0.045;
}

:lang(zh-CN) .hero-position {
  width: min(620px, 88vw);
  margin-top: 18px;
  gap: 10px;
}

:lang(zh-CN) .hero-position p {
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 420;
  letter-spacing: 0.02em;
}

:lang(zh-CN) .hero-position span {
  max-width: 34em;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(12px, 0.94vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.035em;
}

:lang(zh-CN) .hero-meta {
  gap: 14px;
}

:lang(zh-CN) .hero-meta span {
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 360;
  letter-spacing: -0.03em;
}

:lang(zh-CN) .hero-meta small {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
}

:lang(zh-CN) .hero-frame {
  width: min(220px, 40vw);
}

:lang(zh-CN) .hero-frame p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

:lang(zh-CN) .intro-strip p {
  font-size: clamp(18px, 2.9vw, 42px);
  color: rgba(255, 255, 255, 0.08);
}

:lang(zh-CN) .portfolio-proof {
  grid-template-columns: minmax(210px, 0.26fr) minmax(0, 0.74fr);
  padding-top: clamp(48px, 5vw, 72px);
}

:lang(zh-CN) .portfolio-proof-copy {
  max-width: 300px;
}

:lang(zh-CN) .portfolio-proof-copy h2 {
  max-width: 7em;
  font-size: clamp(30px, 3.3vw, 50px);
  font-weight: 320;
  letter-spacing: -0.065em;
  line-height: 1.12;
}

:lang(zh-CN) .portfolio-proof-note {
  color: rgba(255, 255, 255, 0.7);
}

:lang(zh-CN) .portfolio-proof-note dl {
  gap: 8px;
}

:lang(zh-CN) .portfolio-proof-note dl div {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
}

:lang(zh-CN) .portfolio-proof-note dt,
:lang(zh-CN) .portfolio-proof-note dd {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

:lang(zh-CN) .portfolio-track-card {
  border-color: rgba(255, 255, 255, 0.085);
  box-shadow: none;
}

:lang(zh-CN) .portfolio-track-card::after {
  width: 6px;
  height: 6px;
  opacity: 0.75;
  box-shadow: none;
}

:lang(zh-CN) .portfolio-track-kicker {
  max-width: none;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

:lang(zh-CN) .portfolio-track-card strong {
  max-width: 7.5em;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 340;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

:lang(zh-CN) .portfolio-track-card:nth-child(2) strong,
:lang(zh-CN) .portfolio-track-card:nth-child(3) strong {
  font-size: clamp(22px, 1.9vw, 30px);
}

:lang(zh-CN) .portfolio-track-card p {
  max-width: 18em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.75;
}

:lang(zh-CN) .capabilities,
:lang(zh-CN) .workflow {
  padding-top: clamp(78px, 8vw, 112px);
  padding-bottom: clamp(78px, 8vw, 112px);
}

:lang(zh-CN) .capabilities-head,
:lang(zh-CN) .workflow-head {
  grid-template-columns: minmax(150px, 0.26fr) minmax(0, 0.74fr);
}

:lang(zh-CN) .capabilities-head h2,
:lang(zh-CN) .workflow-head h2,
:lang(zh-CN) .brand-head h2 {
  font-size: clamp(42px, 6vw, 82px);
}

:lang(zh-CN) .capabilities-head p:last-child {
  max-width: 28em;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
}

:lang(zh-CN) .capability-card {
  min-height: 228px;
  padding: 22px 20px;
  border-color: rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 114, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.026);
}

:lang(zh-CN) .card-kicker {
  margin-bottom: 34px;
}

:lang(zh-CN) .capability-card h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 340;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

:lang(zh-CN) .capability-card strong,
:lang(zh-CN) .workflow-item strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 360;
  line-height: 1.7;
}

:lang(zh-CN) .capability-card p,
:lang(zh-CN) .workflow-item p,
:lang(zh-CN) .cgi-step p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.78;
}

:lang(zh-CN) .cgi-process {
  gap: clamp(28px, 4vw, 56px);
}

:lang(zh-CN) .cgi-copy h2 {
  max-width: 7em;
  font-size: clamp(42px, 5.8vw, 84px);
  font-weight: 320;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

:lang(zh-CN) .cgi-lead {
  max-width: 32em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

:lang(zh-CN) .cgi-step {
  padding: 18px 0;
}

:lang(zh-CN) .cgi-step strong {
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 420;
  letter-spacing: -0.03em;
}

:lang(zh-CN) .workflow-item {
  min-height: 0;
  padding-top: 26px;
  padding-bottom: 26px;
}

:lang(zh-CN) .workflow-item h3 {
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 340;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

:lang(zh-CN) .project-index {
  padding-top: clamp(44px, 5vw, 68px);
}

:lang(zh-CN) .index-summary {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

:lang(zh-CN) .index-summary h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

:lang(zh-CN) .index-lead {
  max-width: 20em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

:lang(zh-CN) .index-row {
  min-height: 86px;
  padding: 17px 0 19px;
}

:lang(zh-CN) .index-copy {
  gap: 5px;
}

:lang(zh-CN) .index-copy small {
  color: rgba(255, 255, 255, 0.34);
}

:lang(zh-CN) .index-row strong {
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 340;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

:lang(zh-CN) .index-copy p,
:lang(zh-CN) .index-preview-item figcaption p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.6;
}

:lang(zh-CN) .index-preview-item figcaption strong {
  max-width: 8em;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 320;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

:lang(zh-CN) .section-heading h2 {
  max-width: 8em;
  font-size: clamp(48px, 6.4vw, 94px);
}

:lang(zh-CN) .work-details p {
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
}

:lang(zh-CN) .feature-card {
  border-color: rgba(255, 255, 255, 0.085);
}

:lang(zh-CN) .feature-content h3 {
  max-width: 9em;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 320;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

:lang(zh-CN) .feature-content p {
  max-width: 28em;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

:lang(zh-CN) .gtm.section-light {
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 114, 255, 0.075), transparent 22vw),
    #020203;
}

:lang(zh-CN) .gtm-title h2,
:lang(zh-CN) .links h2 {
  max-width: 8em;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 1.04;
}

:lang(zh-CN) .gtm-title p:last-child,
:lang(zh-CN) .brand-head p,
:lang(zh-CN) .links p,
:lang(zh-CN) .contact-status-card p,
:lang(zh-CN) .dialog-text,
:lang(zh-CN) .dialog-facts b {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
}

:lang(zh-CN) .filter-bar {
  gap: 8px;
}

:lang(zh-CN) .filter-bar button {
  min-height: 34px;
  padding: 0 15px;
  font-size: 11px;
}

:lang(zh-CN) .project-grid {
  gap: 12px;
}

:lang(zh-CN) .project-tile {
  border-color: rgba(255, 255, 255, 0.085);
}

:lang(zh-CN) .project-tile span {
  left: 16px;
  right: 16px;
  bottom: 15px;
  font-size: 13px;
  font-weight: 380;
  letter-spacing: 0.02em;
  line-height: 1.34;
}

:lang(zh-CN) .profile {
  gap: clamp(32px, 5vw, 78px);
}

:lang(zh-CN) .profile h2 {
  font-size: clamp(44px, 6vw, 86px);
}

:lang(zh-CN) .profile-copy .profile-lead {
  max-width: 21em;
  font-size: clamp(23px, 1.9vw, 31px);
  font-weight: 320;
  letter-spacing: -0.055em;
  line-height: 1.58;
}

:lang(zh-CN) .profile-copy .profile-note {
  max-width: 38em;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.9;
}

:lang(zh-CN) .profile dt,
:lang(zh-CN) .profile dd {
  line-height: 1.65;
}

:lang(zh-CN) .contact-qr-copy strong,
:lang(zh-CN) .contact-status-card strong {
  font-weight: 380;
  letter-spacing: -0.04em;
  line-height: 1.38;
}

:lang(zh-CN) .dialog-copy h3 {
  max-width: 10em;
  font-size: clamp(30px, 2.4vw, 42px);
}

:lang(zh-CN) .dialog-facts li {
  grid-template-columns: 54px minmax(0, 1fr);
}

@media (max-width: 900px) {
  :lang(zh-CN) .hero-copy {
    max-width: min(620px, 90vw);
    align-self: end;
    padding-bottom: clamp(182px, 24vh, 230px);
  }

  :lang(zh-CN) .hero h1 {
    max-width: 6.6em;
    font-size: clamp(46px, 11vw, 78px);
    letter-spacing: -0.08em;
    line-height: 1.08;
  }

  :lang(zh-CN) .portfolio-proof {
    grid-template-columns: 1fr;
  }

  :lang(zh-CN) .portfolio-proof-copy h2 {
    max-width: 7em;
    font-size: clamp(34px, 10.4vw, 58px);
  }

  :lang(zh-CN) .portfolio-track-card strong {
    font-size: clamp(28px, 7vw, 42px);
  }

  :lang(zh-CN) .capabilities-head,
  :lang(zh-CN) .workflow-head,
  :lang(zh-CN) .index-summary {
    grid-template-columns: 1fr;
  }

  :lang(zh-CN) .capabilities-head h2,
  :lang(zh-CN) .workflow-head h2,
  :lang(zh-CN) .cgi-copy h2,
  :lang(zh-CN) .section-heading h2,
  :lang(zh-CN) .gtm-title h2,
  :lang(zh-CN) .brand-head h2,
  :lang(zh-CN) .links h2 {
    max-width: 8em;
    font-size: clamp(38px, 10.2vw, 62px);
    line-height: 1.08;
  }

  :lang(zh-CN) .index-lead {
    justify-self: start;
  }

  :lang(zh-CN) .index-preview-item figcaption strong {
    font-size: clamp(30px, 8vw, 48px);
  }

  :lang(zh-CN) .index-row strong {
    font-size: clamp(21px, 5.8vw, 30px);
  }

  :lang(zh-CN) .feature-content h3 {
    font-size: clamp(28px, 7.4vw, 44px);
  }
}

@media (max-width: 560px) {
  :lang(zh-CN) .hero-copy {
    align-self: end;
    padding-bottom: clamp(154px, 23vh, 190px);
  }

  :lang(zh-CN) .hero h1 {
    max-width: 6.2em;
    font-size: clamp(40px, 10.4vw, 56px);
    letter-spacing: -0.075em;
    line-height: 1.1;
  }

  :lang(zh-CN) .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  :lang(zh-CN) .hero-position {
    margin-top: 14px;
    gap: 7px;
  }

  :lang(zh-CN) .hero-position p {
    font-weight: 380;
    font-size: 15px;
  }

  :lang(zh-CN) .hero-position span {
    max-width: 20em;
    font-size: 11px;
    line-height: 1.7;
  }

  :lang(zh-CN) .hero-scan {
    opacity: 0.22;
  }

  :lang(zh-CN) .hero-meta {
    gap: 8px;
  }

  :lang(zh-CN) .hero-meta small {
    font-size: 10px;
  }

  :lang(zh-CN) .portfolio-proof-copy h2,
  :lang(zh-CN) .capabilities-head h2,
  :lang(zh-CN) .workflow-head h2,
  :lang(zh-CN) .cgi-copy h2,
  :lang(zh-CN) .section-heading h2,
  :lang(zh-CN) .gtm-title h2,
  :lang(zh-CN) .brand-head h2,
  :lang(zh-CN) .links h2 {
    font-size: clamp(32px, 10.8vw, 50px);
    letter-spacing: -0.045em;
  }

  :lang(zh-CN) .portfolio-track-card {
    padding: 18px;
  }

  :lang(zh-CN) .portfolio-proof-note dl div {
    grid-template-columns: 22px 1fr;
  }

  :lang(zh-CN) .capability-card {
    min-height: 206px;
  }

  :lang(zh-CN) .index-row {
    min-height: 0;
  }

  :lang(zh-CN) .profile-copy .profile-lead {
    font-size: clamp(22px, 6.2vw, 29px);
  }
}

/* Final Chinese type override: keep generated titles out of heavy Inter weights. */
:lang(zh-CN) .brand span,
:lang(zh-CN) .hero-title-line,
:lang(zh-CN) .portfolio-track-card strong,
:lang(zh-CN) .capability-card h3,
:lang(zh-CN) .workflow-item h3,
:lang(zh-CN) .cgi-step strong,
:lang(zh-CN) .index-row strong,
:lang(zh-CN) .index-preview-item figcaption strong,
:lang(zh-CN) .feature-card h3,
:lang(zh-CN) .project-tile span,
:lang(zh-CN) .dialog-title,
:lang(zh-CN) .dialog-copy h3,
:lang(zh-CN) .link-list span,
:lang(zh-CN) .contact-status-card strong {
  font-family: "Portfolio Display SC", "Noto Sans SC DemiLight", "Noto Sans SC Light", "Microsoft YaHei UI Light", sans-serif;
}

:lang(zh-CN) .hero-title-line,
:lang(zh-CN) .portfolio-track-card strong,
:lang(zh-CN) .capability-card h3,
:lang(zh-CN) .workflow-item h3,
:lang(zh-CN) .index-preview-item figcaption strong,
:lang(zh-CN) .feature-card h3 {
  font-weight: 300;
}

:lang(zh-CN) .index-row strong,
:lang(zh-CN) .project-tile span,
:lang(zh-CN) .dialog-title,
:lang(zh-CN) .link-list span {
  font-weight: 340;
}
