:root {
  color-scheme: light;
  --ink: #111114;
  --muted: #626269;
  --line: rgba(17, 17, 20, 0.12);
  --paper: #f5f5f7;
  --glass: rgba(255, 255, 255, 0.56);
  --dark: #050506;
  --dark-soft: #131417;
  --blue: #0071e3;
  --green: #7a9f8a;
  --gold: #b69257;
  --radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

.site-nav {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(940px, calc(100% - 28px));
  height: 48px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(244, 244, 247, 0.66);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.brand {
  padding-left: calc(22px + 3ch);
  font-weight: 700;
}

.site-nav nav {
  display: flex;
  gap: 2px;
  padding-right: 8px;
}

.site-nav nav a {
  min-width: 52px;
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(17, 17, 20, 0.72);
  font-size: 13px;
  text-align: center;
}

.site-nav nav a:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.portrait-hero {
  background: #091521;
}

.portrait-hero img {
  z-index: 1;
  left: auto;
  width: min(44vw, 640px);
  object-fit: contain;
  object-position: right bottom;
  filter: none;
}

.hero-work-marquee {
  --marquee-opacity: 0.76;
  --marquee-card-radius: var(--radius);
  position: absolute;
  z-index: 0;
  top: 86px;
  bottom: 8px;
  left: 0;
  right: 0;
  display: grid;
  width: 100%;
  gap: 12px;
  overflow: hidden;
  padding: 18px var(--marquee-card-radius);
  opacity: 0;
  visibility: hidden;
  mask-image: none;
  transition: opacity 280ms ease;
}

.marquee-ready .hero-work-marquee {
  opacity: var(--marquee-opacity);
  visibility: visible;
}

.hero-work-marquee::after {
  display: none;
}

.marquee-row {
  min-width: 0;
  overflow: visible;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: heroWorksMarquee 28s linear infinite;
  animation-play-state: paused;
}

.marquee-ready .marquee-track {
  animation-play-state: running;
}

.marquee-row:nth-child(2) .marquee-track {
  animation-duration: 28s;
  animation-delay: -9s;
}

.marquee-row:nth-child(3) .marquee-track {
  animation-duration: 28s;
  animation-delay: -18s;
}

.marquee-track img {
  position: static;
  width: clamp(260px, 27vw, 390px);
  height: clamp(170px, 17.5vw, 255px);
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--marquee-card-radius);
  clip-path: inset(0 round var(--marquee-card-radius));
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  contain: paint;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

@keyframes heroWorksMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.06) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 20% 74%, rgba(0, 113, 227, 0.28), transparent 32%);
}

.portrait-hero .hero-shade {
  display: none;
}

.portrait-hero .hero-content {
  z-index: 2;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42), 0 1px 1px rgba(0, 0, 0, 0.24);
}

.portrait-hero .hero-content {
  align-content: start;
  width: min(49vw, 620px);
  margin-right: auto;
  margin-left: max(calc((100vw - 940px) / 2 + 22px), 36px);
  padding-top: 104px;
  padding-bottom: 0;
}

.portrait-hero .hero-subtitle {
  max-width: none;
  margin-top: 18px;
  font-size: 33px;
  font-weight: 500;
  white-space: nowrap;
}

.portrait-hero .hero-actions {
  margin-top: 22px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  align-content: end;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 124px 0 5vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #86c5ff;
}

.glass-text {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.12));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero h1,
.section-copy h2,
.contact-card h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(60px, 12vw, 156px);
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.28;
}

.hero-position {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.button-light {
  background: #fff;
  color: #111;
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.profile-section,
.work-section,
.contact-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-copy {
  max-width: 860px;
}

.section-copy h2,
.contact-card h2 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.05;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  gap: 18px;
  margin-top: 46px;
}

.profile-photo-card {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.12);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.profile-photo-card:hover {
  box-shadow: 0 32px 88px rgba(17, 17, 20, 0.18);
  transform: translateY(-4px);
}

.profile-photo-card img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.profile-photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  padding: 9px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.liquid-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32)),
    linear-gradient(40deg, rgba(0, 113, 227, 0.12), rgba(122, 159, 138, 0.14));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.72), 0 24px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.liquid-panel::before {
  position: absolute;
  inset: -40% auto auto -12%;
  width: 58%;
  height: 95%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 66%);
  content: "";
  opacity: 0.56;
  transform: rotate(14deg);
}

.intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.intro-panel:hover {
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.72), 0 30px 82px rgba(0, 113, 227, 0.12);
  transform: translateY(-4px);
}

.intro-panel p {
  position: relative;
  margin: 0;
  color: rgba(17, 17, 20, 0.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.68;
}

.intro-panel p + p {
  margin-top: 0;
}

.profile-brief {
  position: relative;
  display: grid;
  gap: 12px;
}

.profile-role-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.profile-role-tags span {
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  padding: 9px 12px;
  color: rgba(17, 17, 20, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.stat {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.stat:hover {
  border-color: rgba(0, 113, 227, 0.20);
  box-shadow: 0 18px 46px rgba(0, 113, 227, 0.12);
  transform: translateY(-4px);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.capability-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.capability-summary article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(28, 31, 36, 0.08);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.capability-summary article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.72) 46%, transparent 68%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 260ms ease, transform 680ms ease;
  pointer-events: none;
}

.capability-summary article:hover {
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 22px 58px rgba(0, 113, 227, 0.13);
  transform: translateY(-5px);
}

.capability-summary article:hover::after {
  opacity: 0.54;
  transform: translateX(120%);
}

.capability-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.capability-summary span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.capability-summary strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.capability-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.experience-section {
  padding: 110px 0;
}

.experience-section > .section-copy,
.timeline {
  width: min(1180px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

.experience-section > .section-copy {
  max-width: 1080px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.16);
}

.timeline article {
  min-height: 320px;
  background: var(--dark-soft);
  padding: 28px;
}

.timeline time {
  color: #a9d2ff;
  font-size: 13px;
  font-weight: 700;
}

.timeline h3 {
  margin: 22px 0 14px;
  font-size: 22px;
  line-height: 1.28;
}

.timeline p,
.project-copy p,
.project-card p,
.contact-list,
.photo-section .section-copy h2 {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.photo-section .section-copy p:not(.eyebrow) {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.8;
}

.work-divider {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 18px;
  align-items: end;
  margin: 34px 0 clamp(46px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(0, 113, 227, 0.16);
  padding: 34px 0 30px;
}

.work-divider::after {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.work-divider .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work-divider h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
}

.work-divider p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.graduation-divider {
  margin-top: 86px;
}

.yusheng-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 34px;
}

.yusheng-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #05070a;
  box-shadow: 0 18px 46px rgba(28, 31, 36, 0.10);
}

.yusheng-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05070a;
}

.yusheng-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.yusheng-copy h3 {
  position: relative;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.yusheng-copy p:not(.eyebrow) {
  position: relative;
  color: rgba(17, 17, 20, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.ai-workflow {
  margin: 0 0 34px;
}

.relocated-ai-workflow {
  width: min(1180px, calc(100% - 44px));
  margin: 72px auto 12px;
}

.ai-workflow-hero {
  margin-bottom: 18px;
}

.ai-workflow-hero h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.ai-workflow-hero p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
}

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

.ai-process-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #101722;
  box-shadow: 0 16px 42px rgba(28, 31, 36, 0.08);
  isolation: isolate;
}

.ai-process-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 520ms ease;
}

.ai-process-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.ai-card-copy {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    inset 1px 0 1px rgba(255, 255, 255, 0.28),
    inset -1px -1px 1px rgba(18, 28, 40, 0.16),
    0 18px 42px rgba(12, 18, 28, 0.14);
  opacity: 0;
  transform: translateY(calc(100% + 18px));
  transition:
    transform 520ms cubic-bezier(0.18, 0.9, 0.2, 1.12),
    opacity 360ms ease,
    background 520ms ease,
    border-color 520ms ease,
    box-shadow 520ms ease;
  backdrop-filter: blur(30px) saturate(1.7) contrast(1.08);
  -webkit-backdrop-filter: blur(30px) saturate(1.7) contrast(1.08);
}

.ai-process-card:hover .ai-card-copy {
  opacity: 1;
  transform: translateY(0);
}

.ai-card-copy h4,
.ai-card-copy p {
  margin: 0;
}

.ai-card-copy h4 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.75);
}

.ai-card-copy .eyebrow {
  margin: 0 10px 0 0;
}

.ai-card-copy p {
  margin-top: 9px;
  color: rgba(17, 17, 20, 0.74);
  line-height: 1.48;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.78);
}

.ai-card-copy strong {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.48;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.78);
}

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.work-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.work-hero-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  min-height: 560px;
}

.work-hero-media img {
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(17, 17, 20, 0.14);
}

.work-hero-media img:first-child {
  object-position: center top;
}

.work-hero-copy {
  padding: clamp(28px, 4vw, 48px);
}

.work-hero-copy h3 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.work-hero-copy p {
  position: relative;
  color: rgba(17, 17, 20, 0.72);
  font-size: 17px;
  line-height: 1.68;
}

.project-meta {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.project-meta div {
  border-top: 1px solid rgba(17, 17, 20, 0.12);
  padding-top: 14px;
}

.project-meta dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 6px 0 0;
  color: rgba(17, 17, 20, 0.72);
}

.work-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.015);
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.74));
  content: "";
}

.showcase-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.showcase-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.08;
}

.showcase-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.work-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.work-mosaic article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.work-mosaic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.1);
  transform-origin: center bottom;
}

.work-mosaic article:first-child img {
  object-position: center 20px;
}

.work-mosaic h3 {
  margin: 20px 20px 8px;
  font-size: 21px;
  line-height: 1.22;
}

.work-mosaic p {
  margin: 0 20px 22px;
  color: var(--muted);
  line-height: 1.45;
}

.graduation-feature {
  margin-top: 76px;
}

.corridor-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 18px;
}

.corridor-copy {
  padding: clamp(28px, 4vw, 48px);
}

.corridor-copy h3 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.corridor-copy p {
  position: relative;
  color: rgba(17, 17, 20, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.corridor-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: stretch;
  align-content: start;
}

.corridor-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(17, 17, 20, 0.12);
}

.corridor-gallery img:nth-child(1) {
  grid-column: span 6;
}

.corridor-gallery img:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 1.65;
  height: 100%;
  object-fit: cover;
}

.corridor-gallery img:nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 1.65;
  height: 100%;
  object-fit: cover;
}

.corridor-gallery img:nth-child(n + 4) {
  grid-column: span 3;
  aspect-ratio: 1.65;
  height: 100%;
  object-fit: cover;
}

.project-media {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 10px;
  min-height: 560px;
}

.project-media img,
.project-card img,
.photo-wall img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.project-media img:first-child {
  grid-row: span 2;
}

.project-copy {
  align-self: stretch;
  padding: clamp(28px, 4vw, 48px);
}

.project-copy h3,
.project-card h3 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.project-copy p,
.project-card p {
  position: relative;
  color: rgba(17, 17, 20, 0.72);
  font-size: 17px;
}

.tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tags li {
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 11px;
  color: rgba(17, 17, 20, 0.7);
  font-size: 13px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.project-card img {
  aspect-ratio: 1.35;
}

.project-card div {
  padding: 24px;
}

.project-card h3 {
  font-size: 25px;
}

.project-card p {
  color: var(--muted);
}

.photo-section {
  padding: 110px 0;
}

.photo-section > .section-copy,
.photo-wall {
  width: min(1180px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
  margin-top: 48px;
}

.photo-wall figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
}

.photo-wall figure:nth-child(1) {
  grid-column: span 2;
  grid-row: span 3;
}

.photo-wall figure:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-wall figure:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-wall figure:nth-child(4),
.photo-wall figure:nth-child(5),
.photo-wall figure:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-wall figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.creator-section {
  padding: 0 0 120px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
}

.creator-page {
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
}

.creator-hero,
.creator-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 16px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
    rgba(12, 23, 38, 0.72);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.creator-hero::before,
.creator-panel::before {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.18), rgba(0, 113, 227, 0));
  content: "";
  pointer-events: none;
}

.creator-hero::before {
  top: -120px;
  right: -110px;
}

.creator-panel::before {
  bottom: -130px;
  left: -120px;
  background: radial-gradient(circle, rgba(122, 159, 138, 0.16), rgba(122, 159, 138, 0));
}

.creator-hero {
  padding: clamp(24px, 4vw, 34px);
}

.creator-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 430px);
  gap: 26px;
  align-items: stretch;
}

.creator-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 0;
}

.creator-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.14);
  padding: 8px 14px;
  color: #cfe6ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.creator-hero h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.7vw, 60px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.creator-summary,
.creator-note p,
.creator-section-head p,
.creator-timeline-item p {
  margin: 0;
  color: rgba(243, 247, 255, 0.74);
  font-size: 16px;
  line-height: 2;
}

.creator-summary {
  margin-top: 22px;
}

.creator-note {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.creator-note strong {
  color: #fff;
  font-weight: 800;
}

.creator-note .stat-hot {
  color: #ffd45f;
  font-size: 1.08em;
  text-shadow: 0 0 18px rgba(255, 164, 28, 0.42);
}

.creator-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-chips span {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 13px;
  color: rgba(243, 247, 255, 0.82);
  font-size: 13px;
}

.creator-media-card {
  --creator-card-pad: 14px;
  --creator-sheet-inset: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(180deg, rgba(28, 48, 76, 0.52), rgba(10, 19, 31, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: var(--creator-card-pad);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.creator-media-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(0, 113, 227, 0.10);
}

.creator-media-stack {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
}

.creator-profile-shot {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 0.79;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  object-fit: cover;
  object-position: top center;
}

.creator-data-sheet {
  position: absolute;
  right: var(--creator-sheet-inset);
  bottom: var(--creator-sheet-inset);
  left: var(--creator-sheet-inset);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(20, 36, 58, 0.48), rgba(8, 17, 28, 0.90)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  padding: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(calc(100% + var(--creator-sheet-inset))) scale(0.98);
  transform-origin: bottom center;
  transition:
    transform 560ms cubic-bezier(0.18, 0.9, 0.2, 1.12),
    opacity 280ms ease;
  backdrop-filter: blur(22px) saturate(1.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
}

.creator-media-card:hover .creator-data-sheet,
.creator-media-card.is-popup-open .creator-data-sheet,
.creator-media-card:focus-within .creator-data-sheet,
.creator-media-card:active .creator-data-sheet {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.creator-data-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(243, 247, 255, 0.68);
  font-size: 12px;
}

.creator-data-head strong {
  color: #fff;
  font-size: 17px;
}

.creator-mini-bars {
  display: grid;
  gap: 12px;
}

.creator-mini-bars div {
  display: grid;
  grid-template-columns: 70px 62px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(243, 247, 255, 0.72);
  font-size: 13px;
}

.creator-mini-bars strong {
  color: #fff;
}

.creator-mini-bars i {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.creator-mini-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #8ec5ff);
  transition: width 900ms cubic-bezier(.2, .7, .2, 1);
}

.creator-mini-fill.gold {
  background: linear-gradient(90deg, var(--gold), #ffe0a0);
}

.creator-media-card:hover .creator-mini-fill,
.creator-media-card.is-popup-open .creator-mini-fill,
.creator-media-card:focus-within .creator-mini-fill,
.creator-media-card:active .creator-mini-fill {
  width: var(--bar);
}

.creator-panel {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 34px);
}

.creator-section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 20px 44px;
  align-items: end;
  margin-bottom: 28px;
}

.creator-section-head .creator-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.creator-section-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
}

.creator-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.creator-timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 24px 0;
}

.creator-timeline-item span {
  color: #cfe6ff;
  font-size: 14px;
  font-weight: 800;
}

.creator-timeline-item h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.24;
}

.contact-section {
  padding-top: 0;
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  contain: paint;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34), rgba(198, 228, 255, 0.52)),
    linear-gradient(40deg, rgba(0, 113, 227, 0.12), rgba(122, 159, 138, 0.14));
  background-size: 180% 180%, 100% 100%;
  animation: contactGlassFlow 10s ease-in-out infinite;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.contact-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.5) 42%, transparent 64%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  animation: contactSheen 6.5s ease-in-out infinite;
}

.contact-card:hover {
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.72), 0 34px 90px rgba(0, 113, 227, 0.16);
  transform: translateY(-4px);
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: rgba(17, 17, 20, 0.72);
}

.contact-list a,
.contact-list span {
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  padding: 11px 15px;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.contact-list a:hover,
.contact-list span:hover {
  border-color: rgba(0, 113, 227, 0.24);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.12);
  transform: translateY(-2px);
}

.wechat-qr-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(0, 113, 227, 0.10);
}

.wechat-qr-card img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center center;
}

.wechat-qr-card p {
  margin: 0;
  color: rgba(17, 17, 20, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.contact-card h2,
.contact-card .eyebrow {
  position: relative;
  z-index: 1;
}

@keyframes contactGlassFlow {
  0%,
  100% {
    background-position: 0% 50%, 0 0;
  }

  50% {
    background-position: 100% 50%, 0 0;
  }
}

@keyframes contactSheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-120%);
  }

  56% {
    opacity: 0.72;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .contact-card {
    animation: none;
  }

  .contact-card::after {
    animation: none;
  }

  .contact-card,
  .contact-list a,
  .contact-list span {
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  .site-nav {
    height: auto;
    min-height: 48px;
  }

  .site-nav nav {
    overflow-x: auto;
  }

  .profile-grid,
  .yusheng-feature,
  .feature-project,
  .project-grid,
  .work-hero-card,
  .work-showcase,
  .work-divider,
  .contact-card,
  .corridor-feature {
    grid-template-columns: 1fr;
  }

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

  .profile-stats {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-media {
    min-height: 480px;
  }

  .yusheng-video video {
    min-height: 360px;
  }

  .intro-panel {
    gap: 18px;
  }

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

  .ai-workflow-cards {
    grid-template-columns: 1fr;
  }

  .profile-photo-card {
    min-height: 680px;
  }

  .portrait-hero img {
    width: min(78vw, 620px);
    opacity: 1;
  }

  .hero-work-marquee {
    width: 100%;
  }

  .portrait-hero .hero-content {
    width: min(46vw, 500px);
  }

  .work-hero-media {
    min-height: 480px;
  }

  .work-showcase {
    grid-template-rows: none;
  }

  .showcase-card.large {
    grid-row: auto;
  }

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

  .creator-hero-grid,
  .creator-section-head {
    grid-template-columns: 1fr;
  }

  .creator-hero-copy {
    padding: 0;
  }

  .creator-media-card {
    max-width: 460px;
  }

  .photo-wall {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .photo-wall figure,
  .photo-wall figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 620px) {
  .site-nav {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    padding-left: 3ch;
  }

  .site-nav nav a {
    min-width: 44px;
    padding: 10px 9px;
  }

  .hero-content,
  .profile-section,
  .work-section,
  .contact-section,
  .relocated-ai-workflow,
  .experience-section > .section-copy,
  .timeline,
  .creator-page,
  .photo-section > .section-copy,
  .photo-wall {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 3.5vh;
  }

  .portrait-hero .hero-content {
    width: min(100% - 28px, 1180px);
    margin-right: auto;
    margin-left: auto;
    padding-top: 92px;
    padding-bottom: 0;
  }

  .portrait-hero h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

  .portrait-hero .hero-subtitle {
    max-width: 100%;
    font-size: clamp(24px, 7vw, 34px);
    white-space: normal;
  }

  .portrait-hero .hero-position {
    max-width: 100%;
    font-size: clamp(15px, 4.5vw, 20px);
  }


  .profile-section,
  .work-section,
  .experience-section,
  .creator-section,
  .photo-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .relocated-ai-workflow {
    margin-top: 44px;
    margin-bottom: 18px;
  }

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

  .intro-panel {
    gap: 16px;
    padding: 20px;
  }

  .intro-panel > p {
    font-size: 15px;
    line-height: 1.78;
  }

  .profile-role-tags {
    gap: 8px;
  }

  .profile-role-tags span {
    padding: 7px 10px;
    font-size: 12px;
  }

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

  .stat {
    overflow: hidden;
    border-radius: 14px;
    padding: 12px 8px 10px;
  }

  .stat:nth-child(1) {
    border-color: rgba(0, 113, 227, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(230, 242, 253, 0.86));
  }

  .stat:nth-child(2) {
    border-color: rgba(0, 113, 227, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(230, 242, 253, 0.86));
  }

  .stat:nth-child(3) {
    border-color: rgba(0, 113, 227, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(230, 242, 253, 0.86));
  }

  .stat strong {
    font-size: 25px;
  }

  .stat span {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.38;
  }

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

  .capability-summary article {
    border-radius: 14px;
    padding: 14px 13px;
    box-shadow: 0 14px 34px rgba(28, 31, 36, 0.07);
  }

  .capability-summary article:nth-child(2),
  .capability-summary article:nth-child(4) {
    transform: none;
  }

  .capability-summary article:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 253, 0.88));
  }

  .capability-summary article:nth-child(2) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 253, 0.88));
  }

  .capability-summary article:nth-child(3) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 253, 0.88));
  }

  .capability-summary article:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 253, 0.88));
  }

  .capability-summary span {
    font-size: 11px;
  }

  .capability-summary strong {
    margin-top: 0;
    font-size: 18px;
  }

  .capability-summary p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.48;
  }

  .timeline article {
    min-height: auto;
  }

  .profile-photo-card {
    min-height: 520px;
  }

  .work-divider {
    margin-top: 24px;
    padding-top: 28px;
  }

  .ai-process-card {
    min-height: 360px;
  }

  .work-divider h2 {
    font-size: 34px;
  }

  .work-divider p:not(.eyebrow) {
    font-size: 16px;
  }

  .project-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .yusheng-video video {
    min-height: 0;
    object-fit: contain;
  }

  .yusheng-copy {
    padding: 24px;
  }

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

  .portrait-hero img {
    width: 100%;
    opacity: 1;
    object-fit: cover;
    object-position: center center;
  }

  .portrait-hero {
    background: #091521;
  }

  .hero-work-marquee {
    --marquee-opacity: 0.54;
    top: 86px;
    bottom: 22px;
    display: grid;
    width: 100%;
    padding-right: var(--marquee-card-radius);
    padding-left: var(--marquee-card-radius);
    mask-image: none;
  }

  .marquee-track img {
    width: clamp(190px, 58vw, 260px);
    height: clamp(124px, 38vw, 170px);
  }

  .project-media img,
  .project-media img:first-child {
    grid-row: auto;
    aspect-ratio: 1.35;
  }

  .work-hero-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-hero-media img {
    aspect-ratio: 1.24;
  }

  .showcase-card {
    min-height: 360px;
  }

  .work-mosaic {
    grid-template-columns: 1fr;
  }

  .corridor-gallery {
    grid-template-columns: 1fr;
  }

  .corridor-gallery img,
  .corridor-gallery img:nth-child(n) {
    grid-column: auto;
    height: auto;
    object-fit: initial;
    aspect-ratio: auto;
  }

  .creator-hero,
  .creator-panel {
    border-radius: var(--radius);
  }

  .creator-hero {
    padding: 18px;
  }

  .creator-hero h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .creator-summary,
  .creator-note p,
  .creator-section-head p,
  .creator-timeline-item p {
    font-size: 15px;
    line-height: 1.9;
  }

  .creator-media-card {
    --creator-card-pad: 10px;
    --creator-sheet-inset: 10px;
    max-width: none;
    padding: var(--creator-card-pad);
  }

  .creator-mini-bars div {
    grid-template-columns: 60px 58px 1fr;
  }

  .creator-panel {
    padding: 18px;
  }

  .creator-section-head {
    gap: 14px;
  }

  .creator-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .creator-timeline-item h4 {
    font-size: 22px;
  }

  .contact-section {
    padding-top: 12px;
    padding-bottom: 84px;
  }

  .contact-card {
    gap: 18px;
    padding: 24px 20px;
  }

  .contact-card h2 {
    max-width: 12em;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .contact-list a,
  .contact-list span {
    border-radius: 16px;
    padding: 10px 12px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .contact-list span:nth-of-type(2),
  .contact-list span:nth-of-type(3) {
    grid-column: 1 / -1;
    padding: 11px 13px;
  }

  .wechat-qr-card {
    width: min(100%, 190px);
    justify-self: start;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .wechat-qr-card img {
    max-width: 168px;
    border-radius: 14px;
  }

  .wechat-qr-card p {
    font-size: 13px;
  }

  .photo-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-wall figure,
  .photo-wall figure:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-wall img {
    aspect-ratio: 0.82;
  }
}
