:root {
  --night: #090B0E;
  --night-soft: #0E1213;
  --night-panel: #121716;
  --bone: #F2F0E8;
  --muted: #A2AAA3;
  --faint: #919B94;
  --line: rgba(242, 240, 232, 0.16);
  --line-soft: rgba(242, 240, 232, 0.09);
  --green: #B9F28A;
  --orange: #E87945;
  --cyan: #7EBFC4;
  --content-width: 1240px;
  --edge: max(20px, calc((100vw - var(--content-width)) / 2));
  --ease: cubic-bezier(0.22, 0.8, 0.28, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--night);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(9, 11, 14, 0.89), rgba(7, 15, 17, 0.93)),
    url("assets/hero-fallback.webp");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: auto, 100vw 100vh;
  background-attachment: scroll, fixed;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 0 var(--edge);
  align-items: center;
  justify-content: space-between;
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(9, 11, 14, 0.88);
  border-color: var(--line-soft);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 2;
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(242, 240, 232, 0.76);
  font-size: 13px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.site-nav .nav-contact { color: var(--green); }

.menu-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  color: var(--bone);
  background: var(--night);
}

#poemScene,
.hero-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#poemScene { display: block; opacity: 0.98; }

.hero-fallback {
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}

.hero-shade {
  pointer-events: none;
  background: linear-gradient(90deg, rgba(9, 11, 14, 0.68), rgba(9, 11, 14, 0.18) 61%, rgba(9, 11, 14, 0.04));
}

/* The opening sequence lives on top of the same lake scene as the hero. */
.intro-pending .hero-shade,
.intro-active .hero-shade {
  background:
    radial-gradient(circle at 65% 48%, rgba(210, 238, 208, 0.10), transparent 25%),
    linear-gradient(90deg, rgba(5, 9, 12, 0.86), rgba(5, 9, 12, 0.56) 58%, rgba(5, 9, 12, 0.36));
  transition: background 1000ms var(--ease);
}

.intro-gate {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--bone);
  background:
    radial-gradient(circle at 66% 48%, rgba(207, 239, 210, 0.07), transparent 19%),
    linear-gradient(90deg, rgba(4, 9, 12, 0.52), rgba(4, 9, 12, 0.24) 64%, rgba(4, 9, 12, 0.12));
  opacity: 1;
  transform: scale(1);
  transition: opacity 900ms cubic-bezier(0.22, 0.75, 0.18, 1), transform 1200ms cubic-bezier(0.18, 0.9, 0.24, 1.05), visibility 900ms;
}

.intro-gate::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 54%, rgba(191, 234, 191, 0.07) 65%, transparent 82%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 900ms ease, transform 1500ms cubic-bezier(0.18, 0.9, 0.24, 1);
}

.intro-gate::before {
  position: absolute;
  z-index: 1;
  bottom: -4%;
  left: 50%;
  width: min(76vw, 980px);
  height: 34%;
  content: "";
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at 50% 100%, rgba(185, 242, 138, 0.18) 0 1px, transparent 2px 17px);
  mask-image: linear-gradient(to top, black, transparent 86%);
  -webkit-mask-image: linear-gradient(to top, black, transparent 86%);
  opacity: 0;
  transform: translateX(-50%) scaleY(0.32);
  transform-origin: bottom center;
  transition: opacity 850ms ease, transform 1200ms cubic-bezier(0.18, 0.9, 0.24, 1);
}

.intro-gate.is-ready::before { opacity: 0.52; transform: translateX(-50%) scaleY(1); }
.intro-gate.is-converging::before { opacity: 0.86; transform: translateX(-50%) scaleY(1.18); }

.intro-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(225, 241, 229, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(225, 241, 229, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
  transform: scale(1.03);
  transition: opacity 900ms var(--ease), transform 1600ms var(--ease);
}

.intro-brand {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  text-align: center;
  transform: translateY(2vh);
}

.intro-title {
  display: inline-flex;
  min-height: 1.2em;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(62px, 8.4vw, 132px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.09em;
  visibility: hidden;
}

.intro-title[data-intro-ready] { visibility: visible; }

.intro-glyph {
  display: inline-block;
  min-width: 0.92em;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(var(--glyph-x, 0px), var(--glyph-y, 0px), 0) rotate(var(--glyph-r, 0deg)) scale(0.34);
  will-change: opacity, filter, transform;
}

.intro-gate.is-ready .intro-glyph {
  animation: intro-char-in 1050ms cubic-bezier(0.18, 0.9, 0.24, 1.08) var(--glyph-delay, 0ms) both;
}

.intro-gate.is-converging .intro-glyph {
  animation: intro-char-converge 860ms cubic-bezier(0.65, 0, 0.24, 1) var(--converge-delay, 0ms) both;
}

.intro-brand > p {
  margin: 24px 0 0;
  color: rgba(242, 240, 232, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease) 1200ms, transform 700ms var(--ease) 1200ms;
}

.intro-gate.is-ready .intro-brand > p { opacity: 1; transform: none; }

.intro-enter {
  position: absolute;
  z-index: 3;
  bottom: 15.5%;
  left: 50%;
  display: inline-flex;
  min-width: 174px;
  min-height: 46px;
  padding: 11px 14px 11px 17px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(242, 240, 232, 0.4);
  border-radius: 2px;
  color: var(--bone);
  background: rgba(10, 19, 20, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 650ms var(--ease) 800ms, transform 650ms cubic-bezier(0.18, 0.9, 0.24, 1.08) 800ms, border-color 220ms var(--ease), background-color 220ms var(--ease);
  transition-delay: 800ms;
}

.intro-enter span { color: var(--green); font-size: 20px; line-height: 1; }
.intro-gate.is-ready .intro-enter { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.intro-enter:hover { border-color: var(--green); background: rgba(185, 242, 138, 0.12); }
.intro-enter:focus-visible { outline: 2px solid var(--green); outline-offset: 5px; }

.intro-light-path {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -9%;
  width: min(34vw, 460px);
  height: 68%;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(209, 239, 205, 0.12) 38%, rgba(225, 247, 209, 0.66) 82%, transparent);
  filter: blur(22px);
  transform: translateX(-50%) scaleX(0.14) rotate(-7deg);
  transform-origin: bottom center;
  mix-blend-mode: screen;
  transition: opacity 750ms ease, transform 1000ms cubic-bezier(0.18, 0.9, 0.24, 1);
}

.intro-gate.is-ready .intro-light-path { opacity: 0.42; transform: translateX(-50%) scaleX(0.78) rotate(-7deg); }
.intro-gate.is-converging::after { opacity: 1; transform: translateX(18%); }
.intro-gate.is-converging .intro-brand { transform: translateY(-6vh) scale(0.92); opacity: 0.32; transition: transform 820ms cubic-bezier(0.65, 0, 0.24, 1), opacity 600ms ease; }
.intro-gate.is-converging .intro-enter { opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition-delay: 0ms; }
.intro-gate.is-converging .intro-light-path { opacity: 0.95; transform: translateX(-50%) scaleX(1.18) rotate(-7deg); }

.intro-gate.is-leaving { visibility: hidden; opacity: 0; transform: scale(1.045); pointer-events: none; }
.intro-gate.is-leaving .intro-grid { opacity: 0; transform: scale(1.12); }

.intro-pending .hero-content,
.intro-active .hero-content { opacity: 0; visibility: hidden; transform: translateY(18px); }
.hero-content { transition: opacity 900ms var(--ease), transform 1100ms cubic-bezier(0.18, 0.9, 0.24, 1.08), visibility 0s linear 0s; }
.intro-finished .hero-content { opacity: 1; visibility: visible; transform: none; transition-delay: 360ms; }

.hero-bottom-actions { display: inline-flex; align-items: center; gap: 18px; }
.hero-replay,
.hero-audio-toggle {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(242, 240, 232, 0.26);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(8, 14, 15, 0.2);
  font-size: 15px;
  transition: color 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease), transform 220ms var(--ease);
}
.hero-replay:hover,
.hero-audio-toggle:hover { border-color: var(--green); color: var(--green); background: rgba(185, 242, 138, 0.10); transform: translateY(-2px); }
.hero-audio-toggle { position: static; }
.hero-audio-toggle[hidden] { display: none; }

@keyframes intro-char-in {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(var(--glyph-x, 0px), var(--glyph-y, 0px), 0) rotate(var(--glyph-r, 0deg)) scale(0.34); }
  68% { opacity: 1; filter: blur(1px); transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04); }
  100% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}

@keyframes intro-char-converge {
  0% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  62% { opacity: 0.72; filter: blur(3px); transform: translate3d(0, 9vh, 0) scale(0.56); }
  100% { opacity: 0; filter: blur(16px); transform: translate3d(0, 22vh, 0) scale(0.08); }
}

.hero-static #poemScene { display: none; }
.hero-static .hero-fallback { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--content-width), calc(100% - 40px));
  height: 100%;
  padding: 110px 0 32px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.section-marker,
.hero-kicker,
.work-tag,
.project-kind,
.section-note,
.hero-bottomline,
.photo-caption,
.work-detail,
.digital-meta > span,
.storyboard-wheel-label,
.storyboard-wheel-status,
.storyboard-range-row,
.tool-line > span,
.tool-line > strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow { color: var(--green); }

.hero-copy {
  width: min(530px, 100%);
  margin-top: auto;
  margin-bottom: auto;
  animation: hero-copy-enter 1100ms var(--ease) both;
}

.hero-kicker { color: rgba(242, 240, 232, 0.66); }

.hero h1 {
  margin: 20px 0 30px;
  color: var(--bone);
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(60px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 1.06;
}

h1 em, h2 em { color: var(--green); font-style: normal; }

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.button-primary { min-width: 190px; color: var(--night); background: var(--green); }
.button-primary:hover { background: var(--bone); transform: translateY(-2px); }
.button span { font-size: 20px; line-height: 1; }

.hero-bottomline {
  display: flex;
  color: rgba(242, 240, 232, 0.62);
  justify-content: space-between;
}

.hero-scroll { color: var(--bone); }
.hero-scroll span { color: var(--green); font-size: 17px; }

.section-shell {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
}

.work.section-shell { width: min(1400px, calc(100% - 40px)); }

.about,
.work,
.method,
.contact { padding: 140px 0; }

.about { background: rgba(14, 18, 19, 0.78); }
.about::before,
.work::before,
.method::before,
.contact::before { display: block; height: 1px; margin-bottom: 30px; content: ""; background: var(--line-soft); }

.section-marker { color: var(--orange); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
  padding-top: 44px;
}

.about-photo {
  position: relative;
  max-width: 430px;
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(16%) contrast(1.04);
}

.photo-caption {
  display: block;
  padding-top: 13px;
  color: var(--faint);
}

.about-copy { padding-top: 6px; }
.about-copy h2,
.section-heading h2,
.method-heading h2,
.contact-copy h2 {
  margin: 20px 0 24px;
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
}

.about-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  gap: 14px;
  align-items: center;
  color: var(--cyan);
  font-size: 14px;
  transition: color 220ms var(--ease);
}

.text-link:hover { color: var(--bone); }
.text-link span { font-size: 18px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 68px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.about-stats div { display: grid; gap: 10px; }
.about-stats strong { color: var(--green); font-family: Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1; }
.about-stats span { color: var(--muted); font-size: 12px; line-height: 1.6; }

.section-heading {
  display: flex;
  padding-bottom: 34px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 { margin-bottom: 0; }
.section-note { max-width: 180px; color: var(--faint); text-align: right; }

.work-list { padding-top: 78px; }

.work-card { margin-bottom: 100px; }
.work-card { width: 100%; }

.work-media,
.digital-media {
  position: relative;
  overflow: hidden;
  background: #1a201e;
}

.work-media { aspect-ratio: 16 / 8.4; }
.work-media img,
.digital-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms var(--ease);
}

.work-card:hover .work-media img,
.digital-card:hover .digital-media img { transform: scale(1.025); filter: saturate(1.06) brightness(1.025); }

.work-index,
.work-tag {
  position: absolute;
  z-index: 1;
  top: 18px;
  color: var(--bone);
}

.work-index { left: 20px; color: var(--green); font-family: Georgia, serif; font-size: 18px; font-weight: 400; letter-spacing: 0; }
.work-tag { right: 20px; color: rgba(242, 240, 232, 0.8); }

.media-play {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242, 240, 232, 0.48);
  border-radius: 2px;
  color: var(--bone);
  background: rgba(9, 11, 14, 0.68);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.media-play:hover { border-color: var(--green); background: rgba(9, 11, 14, 0.9); transform: translateY(-2px); }
.play-icon { color: var(--green); font-size: 10px; }

.media-inspect {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(242, 240, 232, 0.48);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(9, 11, 14, 0.72);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.media-inspect span { font-size: 20px; line-height: 1; transition: transform 220ms var(--ease); }
.media-inspect:hover { border-color: var(--green); color: var(--green); background: rgba(9, 11, 14, 0.92); transform: translateY(-2px); }
.media-inspect:hover span { transform: translate(2px, -2px); }

.work-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding-top: 23px;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 24px;
}

.work-meta h3,
.digital-meta h3 {
  margin: 0 0 8px;
  color: var(--bone);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.work-meta p { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.work-detail { padding-top: 8px; color: var(--faint); white-space: nowrap; }

.project-evidence {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.project-evidence-row {
  display: grid;
  min-height: 48px;
  padding: 11px 0;
  grid-template-columns: minmax(92px, 0.22fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 22px;
}

.project-evidence-row + .project-evidence-row { border-top: 1px solid var(--line-soft); }
.project-evidence dt { color: var(--faint); font-size: 11px; letter-spacing: 0.08em; }
.project-evidence dd { margin: 0; color: var(--bone); font-size: 13px; line-height: 1.65; }

.digital-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 12px;
}

.digital-card { border-top: 1px solid var(--line); }
.digital-media { aspect-ratio: 16 / 10; margin-top: 26px; }
.digital-media img { object-fit: cover; }
.qitu-media { background: #e4dfd6; }
.guiyi-media { background: #151f25; }
.guiyi-media img { object-position: top center; }

.digital-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 0 0;
}

.digital-meta > div { grid-column: 1 / -1; }
.digital-meta h3 { margin-bottom: 0; font-size: 30px; }
.project-kind { margin: 0 0 10px; color: var(--cyan); }
.digital-meta > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.digital-meta > span { padding-top: 5px; color: var(--faint); }
.digital-card .project-evidence { margin-top: 20px; }

.films { background: rgba(18, 23, 22, 0.86); }
.films-inner { padding: 140px 0; }
.films .section-marker { color: var(--cyan); }

.storyboard-section { scroll-margin-top: 92px; background: rgba(8, 14, 16, 0.82); }
.storyboard-inner { padding: 140px 0; }
.storyboard-section .section-marker { color: var(--orange); }

.storyboard-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  padding-top: 64px;
  align-items: stretch;
}

.storyboard-wheel-panel {
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.storyboard-wheel-label,
.storyboard-wheel-status {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
}

.storyboard-wheel-label strong { color: var(--green); font-weight: 500; }
.storyboard-wheel-status { border-top: 1px solid var(--line-soft); font-size: 10px; }

.option-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
  outline: none;
}

.option-wheel--dragging { cursor: grabbing; }

.option-wheel::before,
.option-wheel::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 30%;
  content: "";
  pointer-events: none;
}

.option-wheel::before { top: 0; background: linear-gradient(rgba(8, 14, 16, 0.96), transparent); }
.option-wheel::after { bottom: 0; background: linear-gradient(transparent, rgba(8, 14, 16, 0.96)); }

.option-wheel__item {
  position: absolute;
  top: 50%;
  left: 24px;
  width: calc(100% - 48px);
  padding: 8px 0;
  overflow: hidden;
  border: 0;
  color: color-mix(in srgb, var(--bone) calc(var(--ow-p, 0) * 100%), var(--faint));
  background: transparent;
  cursor: pointer;
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform-origin: left center;
  will-change: transform, opacity, filter;
}

.option-wheel__item::before {
  display: inline-block;
  width: 0;
  height: 1px;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  background: var(--green);
  transition: width 220ms var(--ease), margin-right 220ms var(--ease);
}

.option-wheel__item--selected { color: var(--bone); font-weight: 500; }
.option-wheel__item--selected::before { width: 18px; margin-right: 12px; }

.storyboard-viewer {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(14, 20, 20, 0.9);
}

.storyboard-viewer-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  min-height: 170px;
  padding: 26px 28px;
  align-items: end;
}

.storyboard-viewer-header h3 {
  margin: 8px 0 8px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
}

.storyboard-viewer-header p:not(.project-kind) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.storyboard-video-button {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--bone);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background-color 200ms var(--ease);
}

.storyboard-video-button:hover { color: var(--night); border-color: var(--green); background: var(--green); }
.storyboard-video-button span { color: var(--green); font-size: 10px; }
.storyboard-video-button:hover span { color: var(--night); }
.storyboard-video-button[hidden] { display: none; }

.storyboard-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050808;
}

.storyboard-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storyboard-frame-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  min-height: 42px;
  padding: 4px;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  background: rgba(9, 11, 14, 0.82);
  backdrop-filter: blur(8px);
}

.storyboard-frame-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  background: transparent;
  cursor: pointer;
}

.storyboard-frame-controls button:hover:not(:disabled) { color: var(--night); border-color: var(--green); background: var(--green); }
.storyboard-frame-controls button:disabled { opacity: 0.28; cursor: default; }
.storyboard-frame-controls > span { min-width: 64px; text-align: center; font-size: 11px; letter-spacing: 0.08em; }
.storyboard-frame-controls strong { color: var(--green); font-weight: 500; }

.storyboard-range-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  color: var(--faint);
  border-top: 1px solid var(--line-soft);
}

.storyboard-range-row input {
  width: 100%;
  accent-color: var(--green);
}

.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.5fr);
  gap: 60px;
  align-items: end;
  padding: 42px 0 68px;
}

.method-heading h2 { margin: 0; }
.method-heading p { max-width: 360px; margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.9; }

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

.method-card {
  position: relative;
  z-index: 0;
  min-height: 252px;
  padding: 24px 22px 28px;
  background: var(--night);
  transition: background-color 420ms var(--ease), box-shadow 420ms var(--ease), transform 520ms cubic-bezier(0.18, 0.9, 0.24, 1.08);
}

.method-card:hover {
  z-index: 2;
  background: rgba(21, 29, 26, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(185, 242, 138, 0.22) inset;
  transform: translateY(-8px) scale(1.035);
}
.method-card > span { color: var(--orange); font-family: Georgia, serif; font-size: 20px; }
.method-card h3 { margin: 52px 0 12px; font-size: 19px; font-weight: 500; }
.method-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.tool-line {
  display: flex;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tool-line > span { margin-right: 10px; color: var(--faint); }
.tool-line > strong { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-weight: 400; letter-spacing: 0.06em; text-transform: none; }

.contact { padding-bottom: 90px; }
.contact-panel {
  display: flex;
  min-height: 430px;
  padding: 52px clamp(28px, 6vw, 84px);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid var(--line);
  background: #131918;
}

.contact-copy h2 { margin-bottom: 20px; }
.contact-copy > p { max-width: 430px; margin: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.contact-copy { width: min(680px, 100%); }
.contact-facts { width: 100%; margin: 0 0 30px; border-top: 1px solid var(--line); }
.contact-fact { display: grid; min-height: 50px; padding: 12px 0; grid-template-columns: 110px minmax(0, 1fr); align-items: baseline; gap: 22px; border-bottom: 1px solid var(--line-soft); }
.contact-fact dt { color: var(--faint); font-size: 11px; letter-spacing: 0.08em; }
.contact-fact dd { margin: 0; color: var(--bone); font-size: 14px; line-height: 1.65; }
.contact-signal { display: grid; min-width: 210px; gap: 10px; justify-items: start; color: var(--faint); }
.contact-signal span { color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }
.contact-signal strong { color: var(--orange); font-family: Georgia, serif; font-size: 96px; font-weight: 400; line-height: 0.85; }
.contact-signal small { font-size: 10px; line-height: 1.5; letter-spacing: 0.12em; }

.site-footer {
  display: flex;
  width: min(var(--content-width), calc(100% - 40px));
  min-height: 80px;
  padding: 22px 0;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--faint);
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.site-footer a { color: var(--bone); }
.site-footer a:hover { color: var(--green); }

.work-dialog {
  width: min(1020px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  color: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #101514;
}

.work-dialog[open] { display: block; }
.work-dialog::backdrop { background: rgba(0, 0, 0, 0.82); backdrop-filter: blur(8px); }
.dialog-shell { padding: 14px; }
.dialog-bar { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 20px; }
.dialog-bar strong { font-size: 15px; font-weight: 500; }
.dialog-bar button { width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--bone); background: transparent; cursor: pointer; font-size: 24px; line-height: 1; }
.dialog-bar button:hover { border-color: var(--green); color: var(--green); }
.work-dialog video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 130px);
  object-fit: contain;
  object-position: center;
  background: #050606;
}

.image-dialog { width: min(1280px, calc(100% - 32px)); }
.image-dialog-stage { display: grid; min-height: min(72svh, 780px); place-items: center; overflow: auto; background: #050606; }
.image-dialog img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
  object-position: center;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transform-origin: center bottom;
  transition: opacity 720ms var(--ease) var(--reveal-delay), transform 720ms var(--ease) var(--reveal-delay);
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-group] > .reveal { will-change: opacity, transform; }

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  :root { --edge: 32px; }
  .hero-content, .section-shell, .site-footer { width: calc(100% - 64px); }
  .work.section-shell { width: calc(100% - 64px); }
  .hero h1 { font-size: 74px; }
  .about-grid { gap: 56px; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-card { min-height: 224px; }
  .storyboard-layout { grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: 28px; }
  .option-wheel__item { font-size: 25px; }
  .storyboard-viewer-header { grid-template-columns: 1fr; align-items: start; }
  .storyboard-video-button { justify-self: start; }
}

@media (max-width: 768px) {
  :root { --edge: 20px; }
  .site-header { min-height: 66px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    padding: 100px var(--edge) 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--bone);
    background: rgba(9, 11, 14, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }
  .site-nav a { font-family: "Songti SC", SimSun, Georgia, serif; font-size: 42px; line-height: 1.25; }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: none; }
  .menu-open { overflow: hidden; }
  .menu-open main, .menu-open .site-footer { pointer-events: none; }
  .hero { min-height: 680px; }
  main { background-attachment: scroll; background-size: auto, auto 100vh; }
  .hero-content, .section-shell, .site-footer { width: calc(100% - 40px); }
  .work.section-shell { width: calc(100% - 40px); }
  .hero-content { padding-top: 94px; padding-bottom: 24px; }
  .hero-copy { margin-top: 30px; margin-bottom: auto; }
  .hero h1 { margin: 16px 0 16px; font-size: 54px; line-height: 1.12; }
  .hero-intro { max-width: 320px; font-size: 15px; }
  .hero-bottomline { align-items: end; font-size: 10px; }
  .hero-scroll { max-width: 120px; text-align: right; }
  .about, .work, .method, .contact, .films-inner, .storyboard-inner { padding: 90px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 30px; }
  .about-copy { order: 1; }
  .about-photo { max-width: 100%; order: 2; }
  .about-photo img { max-height: 480px; }
  .about-copy h2, .section-heading h2, .method-heading h2, .contact-copy h2 { font-size: 42px; }
  .about-copy > p:not(.eyebrow) { font-size: 16px; }
  .about-stats { padding-top: 35px; margin-top: 38px; gap: 12px; }
  .about-stats strong { font-size: 27px; }
  .about-stats span { font-size: 11px; }
  .section-heading { display: block; padding-bottom: 26px; }
  .section-note { margin-top: 20px; text-align: left; }
  .work-list { padding-top: 48px; }
  .work-card { width: 100%; margin-bottom: 64px; }
  .work-media { aspect-ratio: 4 / 3; }
  .work-meta { grid-template-columns: 1fr; gap: 10px; }
  .work-meta h3 { font-size: 25px; }
  .work-detail { padding-top: 0; white-space: normal; }
  .media-play { right: 12px; bottom: 12px; }
  .media-inspect { right: 12px; bottom: 12px; width: 42px; height: 42px; }
  .digital-grid { grid-template-columns: 1fr; gap: 56px; }
  .digital-media { aspect-ratio: 4 / 3; }
  .digital-meta { grid-template-columns: 1fr; gap: 14px; }
  .digital-meta > div { grid-column: auto; }
  .project-evidence-row { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; }
  .films .section-heading h2 { font-size: 42px; }
  .storyboard-layout { grid-template-columns: 1fr; gap: 42px; padding-top: 42px; }
  .storyboard-wheel-panel { min-height: 340px; }
  .option-wheel { min-height: 240px; }
  .option-wheel__item { left: 18px; width: calc(100% - 36px); font-size: 23px; }
  .storyboard-viewer-header { min-height: 0; padding: 22px 20px; }
  .storyboard-viewer-header h3 { font-size: 25px; }
  .storyboard-frame-controls { right: 10px; bottom: 10px; }
  .storyboard-range-row { padding: 0 16px; }
  .method-heading { display: block; padding: 30px 0 44px; }
  .method-heading p { margin-top: 20px; font-size: 15px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: auto; padding: 22px; }
  .method-card h3 { margin-top: 34px; }
  .method-card:hover { transform: none; }
  .contact-panel { min-height: 0; padding: 34px 24px 40px; flex-direction: column; align-items: flex-start; }
  .contact-fact { grid-template-columns: 84px minmax(0, 1fr); gap: 14px; }
  .contact-signal { display: none; }
  .site-footer { min-height: 0; padding: 20px 0 26px; flex-wrap: wrap; font-size: 10px; }
  .site-footer span:nth-child(2) { width: 100%; order: 3; }
  .work-dialog { width: calc(100% - 20px); }
  .dialog-shell { padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  [data-reveal-group] .reveal { --reveal-delay: 0ms; }
}

/* React Bits-inspired effects, kept dependency-free for the static portfolio. */
.blur-text { overflow: visible; }
.blur-text .blur-segment {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, -0.55em, 0);
  transition: opacity 700ms var(--ease) var(--blur-delay), filter 700ms var(--ease) var(--blur-delay), transform 700ms var(--ease) var(--blur-delay);
  will-change: opacity, filter, transform;
}
.blur-text-visible .blur-segment { opacity: 1; filter: blur(0); transform: none; }
.blur-text:not([data-blur-ready]) { opacity: 1; }

.true-focus {
  position: relative;
  width: fit-content;
  max-width: 100%;
  isolation: isolate;
}
.true-focus-word {
  position: relative;
  display: inline;
  color: var(--bone);
  filter: blur(5px);
  opacity: 0.5;
  transition: filter 520ms var(--ease), opacity 520ms var(--ease), color 520ms var(--ease);
}
.true-focus-word.is-focused { color: var(--green); filter: blur(0); opacity: 1; }
.true-focus .focus-frame {
  position: absolute;
  top: var(--focus-y, 0px);
  left: var(--focus-x, 0px);
  width: var(--focus-w, 0px);
  height: var(--focus-h, 0px);
  pointer-events: none;
  opacity: 0.8;
  transform: translate(-6px, -4px);
  transition: top 520ms var(--ease), left 520ms var(--ease), width 520ms var(--ease), height 520ms var(--ease);
}
.true-focus .focus-frame i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--green);
  border-style: solid;
  filter: drop-shadow(0 0 5px rgba(185, 242, 138, 0.4));
}
.true-focus .focus-frame i:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.true-focus .focus-frame i:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.true-focus .focus-frame i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.true-focus .focus-frame i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }

.gradual-blur {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 132px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.8;
  isolation: isolate;
}
.gradual-blur span {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 86%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 86%);
}
.gradual-blur span:nth-child(2) { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); mask-image: linear-gradient(to bottom, transparent 26%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 26%, black 100%); }
.gradual-blur span:nth-child(3) { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); mask-image: linear-gradient(to bottom, transparent 48%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 48%, black 100%); }
.gradual-blur span:nth-child(4) { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); mask-image: linear-gradient(to bottom, transparent 70%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 70%, black 100%); }
.gradual-blur span:nth-child(5) { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); mask-image: linear-gradient(to bottom, transparent 84%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 84%, black 100%); }
.hero-gradual-blur { height: 160px; opacity: 0.72; }
.section-gradual-blur { height: 110px; opacity: 0.58; }

.experiment-section { position: relative; background: rgba(10, 18, 19, 0.88); }
.experiment-inner { padding: 140px 0; }
.experiment-section .section-marker { color: var(--green); }
.experiment-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 84px);
  padding-top: 64px;
  align-items: center;
}
.experiment-copy { max-width: 420px; }
.experiment-copy h3 { margin: 16px 0 18px; color: var(--bone); font-family: Georgia, serif; font-size: clamp(28px, 3vw, 46px); font-weight: 400; line-height: 1.08; }
.experiment-copy > p:not(.project-kind) { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.christmas-tree-preview {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #071116;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.christmas-tree-preview::before { position: absolute; z-index: 1; inset: 0; pointer-events: none; content: ""; border: 1px solid rgba(126, 191, 196, 0.12); }
.christmas-tree-preview iframe { display: block; width: 100%; height: 100%; border: 0; background: #071116; }

@media (max-width: 1024px) {
  .experiment-card { gap: 36px; }
}

@media (max-width: 768px) {
  .blur-text .blur-segment { transform: translate3d(0, -0.35em, 0); }
  .true-focus { width: 100%; }
  .true-focus .focus-frame { transform: translate(-4px, -3px); }
  .hero-gradual-blur { height: 120px; }
  .section-gradual-blur { height: 74px; }
  .experiment-inner { padding: 90px 0; }
  .experiment-card { grid-template-columns: 1fr; gap: 34px; padding-top: 42px; }
  .experiment-copy { max-width: none; }
  .christmas-tree-preview { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .blur-text .blur-segment { opacity: 1; filter: none; transform: none; transition: none; }
  .true-focus-word { filter: none; transition: none; }
  .true-focus .focus-frame { transition: none; }
}

/* 2026 portfolio interaction revision */
.ambient-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}
.work-light-rays { opacity: 0.46; mix-blend-mode: screen; clip-path: inset(0 42% 72% 0); }
.storyboard-dark-veil { opacity: 0.82; }
.method-shape-blur { opacity: 0.82; mix-blend-mode: screen; }
.work,
.storyboard-section,
.method { position: relative; isolation: isolate; }
.work > *:not(.ambient-canvas),
.storyboard-section > *:not(.ambient-canvas),
.method > *:not(.ambient-canvas) { position: relative; z-index: 1; }

.hero-copy { width: min(470px, 100%); }
.hero h1.ascii-text {
  position: relative;
  width: min(470px, 100%);
  min-height: 148px;
  margin: 17px 0 23px;
  font-size: clamp(47px, 4.4vw, 68px);
  user-select: none;
}
.ascii-text .ascii-source { display: block; }
.ascii-text:not(.ascii-text-ready) .ascii-source { opacity: 1; }
.ascii-text-ready .ascii-source,
.ascii-text-ready .ascii-source em { color: transparent; }
.ascii-text-canvas {
  position: absolute;
  top: 0;
  left: -12px;
  display: block;
  max-width: calc(100% + 24px);
  pointer-events: none;
  image-rendering: pixelated;
}

.about-focus {
  display: grid;
  width: min(590px, 100%);
  gap: 26px;
  padding: 5px 0 8px;
}
.about-focus h2,
.about-focus-body { margin: 0; }
.about-focus-body {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.about-focus .true-focus-word { display: block; filter: blur(4px); opacity: 0.42; }
.about-focus .true-focus-word.is-focused { color: inherit; filter: blur(0); opacity: 1; }
.about-focus h2.is-focused em { color: var(--green); }
.about-focus-body.is-focused { color: var(--bone); }
.about-copy > .about-focus + .text-link { margin-top: 18px; }

.profile-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --profile-rotate-x: 0deg;
  --profile-rotate-y: 0deg;
  perspective: 760px;
  touch-action: pan-y;
}
.profile-card-glow {
  position: absolute;
  z-index: -1;
  inset: 10%;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(185, 242, 138, 0.2), rgba(126, 191, 196, 0.06) 38%, transparent 70%);
  filter: blur(38px);
  opacity: 0;
  transition: opacity 260ms var(--ease);
}
.profile-card:hover .profile-card-glow { opacity: 1; }
.profile-card-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(242, 240, 232, 0.15);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(28, 38, 35, 0.94), rgba(8, 12, 13, 0.98));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  transform: rotateX(var(--profile-rotate-x)) rotateY(var(--profile-rotate-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, border-color 240ms var(--ease);
}
.profile-card:hover .profile-card-shell { border-color: rgba(185, 242, 138, 0.38); }
.profile-card-shell > .profile-ascii-waterway {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.84;
  pointer-events: none;
  mix-blend-mode: screen;
}
.profile-card-shell > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.88) contrast(1.03);
  transform: translateZ(18px) scale(1.11);
}
.profile-card-shine {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(242, 240, 232, 0.4), transparent 22%),
    repeating-linear-gradient(112deg, rgba(185, 242, 138, 0.12) 0 2%, rgba(126, 191, 196, 0.08) 4%, transparent 9% 15%);
  mix-blend-mode: screen;
}
.film-wheel-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 72px);
  padding-top: 64px;
  align-items: stretch;
}
.film-wheel-panel {
  display: grid;
  min-height: 560px;
  grid-template-rows: auto 1fr auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.film-wheel-label,
.film-wheel-status {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.film-wheel-label strong { color: var(--green); font-weight: 500; }
.film-wheel-status { border-top: 1px solid var(--line-soft); }
#filmWheel.option-wheel { min-height: 450px; }
#filmWheel .option-wheel__item { font-size: 27px; }
.film-inline-player {
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: transparent;
}

.star-border-container {
  --star-speed: 5.8s;
  position: relative;
  isolation: isolate;
  padding: 1px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(126, 191, 196, 0.12);
}

.border-gradient-bottom,
.border-gradient-top {
  position: absolute;
  z-index: 0;
  width: 260%;
  height: 58%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.78;
  filter: blur(0.4px);
}

.border-gradient-bottom {
  right: -220%;
  bottom: -28%;
  background: radial-gradient(circle, rgba(185, 242, 138, 0.96), rgba(126, 191, 196, 0.42) 4%, transparent 13%);
  animation: star-movement-bottom var(--star-speed) linear infinite alternate;
}

.border-gradient-top {
  top: -28%;
  left: -220%;
  background: radial-gradient(circle, rgba(126, 191, 196, 0.96), rgba(185, 242, 138, 0.34) 4%, transparent 13%);
  animation: star-movement-top var(--star-speed) linear infinite alternate;
}

.star-border-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 232, 0.13);
  border-radius: 4px;
  background: rgba(8, 13, 14, 0.96);
}

@keyframes star-movement-bottom {
  0% { opacity: 0.9; transform: translate3d(0, 0, 0); }
  100% { opacity: 0.18; transform: translate3d(-88%, 0, 0); }
}

@keyframes star-movement-top {
  0% { opacity: 0.9; transform: translate3d(0, 0, 0); }
  100% { opacity: 0.18; transform: translate3d(88%, 0, 0); }
}
.film-inline-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #030606;
}
.film-inline-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(220px, 1.2fr);
  gap: 28px;
  min-height: 128px;
  padding: 22px 25px;
  align-items: start;
}
.film-inline-meta h3 { margin: 6px 0 0; font-size: 29px; font-weight: 500; }
.film-inline-meta > p { margin: 2px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.storyboard-viewer { background: rgba(9, 19, 21, 0.82); }
.storyboard-corridor {
  position: relative;
  height: 430px;
  overflow: hidden;
  perspective: 1350px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  background:
    linear-gradient(rgba(4, 9, 10, 0.2), rgba(4, 9, 10, 0.8)),
    repeating-linear-gradient(90deg, transparent 0 9.8%, rgba(126, 191, 196, 0.05) 10%);
}
.storyboard-corridor::before,
.storyboard-corridor::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 17%;
  content: "";
  pointer-events: none;
}
.storyboard-corridor::before { left: 0; background: linear-gradient(90deg, rgba(4, 9, 10, 0.98), transparent); }
.storyboard-corridor::after { right: 0; background: linear-gradient(-90deg, rgba(4, 9, 10, 0.98), transparent); }
.storyboard-corridor-track { position: absolute; inset: 0; transform-style: preserve-3d; }
.storyboard-corridor.is-dragging { cursor: grabbing; }
.corridor-card {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 46%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 232, 0.13);
  border-radius: 2px;
  background: #071011;
  cursor: pointer;
  opacity: 1;
  transform: translate3d(calc(-50% + var(--corridor-x, 0px)), -50%, var(--corridor-z, 0px)) rotateY(var(--corridor-rotate, 0deg)) scale(var(--corridor-scale, 1));
  transition: transform 620ms var(--ease), opacity 420ms var(--ease), filter 420ms var(--ease);
  will-change: transform;
}
.corridor-card[data-offset="-3"] { --corridor-z: -520px; --corridor-rotate: 44deg; --corridor-scale: 0.8; opacity: 0.2; }
.corridor-card[data-offset="-2"] { --corridor-z: -330px; --corridor-rotate: 32deg; --corridor-scale: 0.86; opacity: 0.5; }
.corridor-card[data-offset="-1"] { --corridor-z: -150px; --corridor-rotate: 18deg; --corridor-scale: 0.93; opacity: 0.82; }
.corridor-card[data-offset="0"] { --corridor-x: 0px; --corridor-z: 45px; --corridor-rotate: 0deg; --corridor-scale: 1; z-index: 4; opacity: 1; box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48); }
.corridor-card[data-offset="1"] { --corridor-z: -150px; --corridor-rotate: -18deg; --corridor-scale: 0.93; opacity: 0.82; }
.corridor-card[data-offset="2"] { --corridor-z: -330px; --corridor-rotate: -32deg; --corridor-scale: 0.86; opacity: 0.5; }
.corridor-card[data-offset="3"] { --corridor-z: -520px; --corridor-rotate: -44deg; --corridor-scale: 0.8; opacity: 0.2; }
.corridor-card img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.corridor-controls { z-index: 6; }

@media (max-width: 1024px) {
  .film-wheel-layout { grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr); gap: 30px; }
  .film-wheel-panel { min-height: 480px; }
  #filmWheel.option-wheel { min-height: 370px; }
  #filmWheel .option-wheel__item { font-size: 23px; }
  .storyboard-corridor { height: 370px; }
}

@media (max-width: 768px) {
  .hero-copy { width: min(360px, 100%); }
  .hero h1.ascii-text { width: min(350px, 100%); min-height: 115px; font-size: 43px; }
  .about-focus { gap: 22px; }
  .about-focus-body { font-size: 15px; }
  .profile-card-shell { max-height: 500px; }
  .film-wheel-layout { grid-template-columns: 1fr; gap: 38px; padding-top: 42px; }
  .film-wheel-panel { min-height: 340px; }
  #filmWheel.option-wheel { min-height: 238px; }
  #filmWheel .option-wheel__item { left: 18px; width: calc(100% - 36px); font-size: 23px; }
  .film-inline-meta { grid-template-columns: 1fr; gap: 12px; min-height: 0; padding: 18px; }
  .film-inline-meta h3 { font-size: 24px; }
  .storyboard-corridor { height: 315px; }
  .corridor-card { width: 68%; }
  .ambient-canvas { opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-canvas { opacity: 0.28; }
  .profile-card-shell > .profile-ascii-waterway { opacity: 0.28; }
  .profile-card-shell { transform: none; transition: none; }
  .corridor-card { transition: none; }
  .ascii-text-canvas { pointer-events: none; }
}

/* Chinese-first editorial hierarchy */
.section-marker {
  display: inline-grid;
  width: fit-content;
  gap: 4px;
  color: var(--bone);
  text-transform: none;
}

.section-marker-title {
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.section-marker-meta {
  color: var(--orange);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.films .section-marker-meta { color: var(--cyan); }
.storyboard-section .section-marker-meta { color: var(--orange); }
.experiment-section .section-marker-meta { color: var(--green); }

.section-heading > div {
  display: grid;
  gap: 20px;
}

.section-heading h2 { margin-top: 0; }

.section-note {
  display: grid;
  max-width: 245px;
  gap: 5px;
  color: var(--muted);
  text-align: right;
  text-transform: none;
}

.section-note span {
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.section-note small {
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.bilingual-label {
  display: inline-grid;
  gap: 3px;
  color: var(--bone);
  text-transform: none;
}

.bilingual-label strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.bilingual-label span {
  color: var(--faint);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.photo-caption {
  display: flex;
  padding-top: 16px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--faint);
  text-transform: none;
}

.photo-caption strong {
  color: var(--bone);
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.photo-caption span {
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.about-stats { gap: 0; padding-top: 0; }

.about-stats div {
  min-width: 0;
  padding: 24px 22px 4px;
  gap: 8px;
  border-left: 1px solid var(--line-soft);
}

.about-stats div:first-child { padding-left: 0; border-left: 0; }
.about-stats div:last-child { padding-right: 0; }

.about-stats .about-stat-index {
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.about-stats strong {
  color: var(--green);
  font-family: "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

.about-stats .about-stat-label {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.work-tag,
.project-kind,
.digital-meta > span,
.film-wheel-label,
.film-wheel-status,
.storyboard-wheel-label,
.storyboard-wheel-status,
.storyboard-range-row,
.tool-line > span,
.site-footer { text-transform: none; }

.project-kind { font-size: 10px; letter-spacing: 0.08em; }
.work-tag { letter-spacing: 0.08em; }
.digital-meta > span { line-height: 1.6; letter-spacing: 0.06em; }

@media (max-width: 1024px) {
  .section-marker-title { font-size: 34px; }
  .about-stats div { padding-inline: 16px; }
  .about-stats strong { font-size: 23px; }
}

@media (max-width: 768px) {
  .section-marker { gap: 3px; }
  .section-marker-title { font-size: 30px; }
  .section-heading > div { gap: 16px; }
  .section-note { max-width: none; text-align: left; }
  .about-grid { padding-top: 38px; }
  .photo-caption { padding-top: 14px; }
  .photo-caption strong { font-size: 20px; }
  .about-stats { grid-template-columns: 1fr; margin-top: 44px; }
  .about-stats div,
  .about-stats div:first-child,
  .about-stats div:last-child {
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }
  .about-stats div:first-child { border-top: 0; }
  .about-stats strong { font-size: 25px; }
  .about-stats .about-stat-label { font-size: 12px; }
}

/* Spatial layout and React Bits-inspired gallery/effect revision */
:root { --hero-content-width: 1500px; }

.site-header { padding-inline: max(20px, calc((100vw - var(--hero-content-width)) / 2)); }

.hero-content {
  width: min(var(--hero-content-width), calc(100% - 40px));
}

.hero-copy { margin-left: 0; }

.hero-bottomline {
  width: 100%;
  align-items: end;
}

.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about > *:not(.ambient-canvas) { position: relative; z-index: 2; }
.about-magic-rings { z-index: 0; opacity: 0.78; mix-blend-mode: screen; }
.about-laser-flow { z-index: 1; opacity: 0.62; mix-blend-mode: screen; }

.circular-gallery {
  --gallery-bend: 3;
  width: 100%;
  height: 450px;
  overflow: hidden;
  cursor: grab;
  outline: none;
}

.circular-gallery:active,
.circular-gallery.is-dragging { cursor: grabbing; }

.circular-gallery:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.circular-gallery::before,
.circular-gallery::after { width: 10%; }

.circular-gallery .storyboard-corridor-track {
  inset: 0;
  transform-style: flat;
}

.circular-gallery .corridor-card {
  top: 44%;
  left: 50%;
  display: grid;
  width: 42%;
  height: 62%;
  aspect-ratio: auto;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  background: transparent;
  opacity: var(--gallery-opacity, 1);
  filter: saturate(calc(0.7 + var(--gallery-opacity, 1) * 0.3));
  transform: translate3d(calc(-50% + var(--gallery-x, 0px)), calc(-50% + var(--gallery-y, 0px)), 0) rotate(var(--gallery-rotate, 0deg)) scale(var(--gallery-scale, 1));
  transform-origin: center bottom;
  transition: transform 520ms var(--ease), opacity 360ms var(--ease), filter 360ms var(--ease);
}

.circular-gallery .corridor-card img {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(242, 240, 232, 0.16);
  border-radius: 4px;
  background: #050909;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.circular-gallery .corridor-card.is-active img { border-color: rgba(185, 242, 138, 0.42); }

.corridor-card-label {
  display: flex;
  min-height: 34px;
  padding-top: 9px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.corridor-card-label strong { color: var(--bone); font-weight: 500; }
.circular-gallery .corridor-controls { right: 18px; bottom: 15px; }

@media (max-width: 1024px) {
  :root { --hero-content-width: 1320px; }
  .circular-gallery { height: 390px; }
  .circular-gallery .corridor-card { width: 48%; height: 58%; }
}

@media (max-width: 768px) {
  :root { --hero-content-width: 100%; }
  .site-header { padding-inline: var(--edge); }
  .hero-content { width: calc(100% - 40px); }
  .about-magic-rings { opacity: 0.42; }
  .about-laser-flow { opacity: 0.34; }
  .circular-gallery { height: 330px; }
  .circular-gallery .corridor-card { width: 70%; height: 56%; }
  .corridor-card-label { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-magic-rings,
  .about-laser-flow { opacity: 0.24; }
  .circular-gallery .corridor-card { transition: none; }
}

/* Elastic scroll and GlareHover-inspired project framing. */
[data-scroll-reveal] {
  --scroll-reveal-progress: 0;
  opacity: calc(0.28 + var(--scroll-reveal-progress) * 0.72);
  filter: blur(calc((1 - var(--scroll-reveal-progress)) * 7px));
  transform: translateY(calc((1 - var(--scroll-reveal-progress)) * 24px)) rotate(calc((1 - var(--scroll-reveal-progress)) * 2.2deg));
  transform-origin: left center;
  will-change: opacity, filter, transform;
}

.glare-hover {
  --gh-angle: -32deg;
  --gh-duration: 820ms;
  --gh-size: 260%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 232, 0.18);
  transition: border-color 420ms var(--ease), box-shadow 420ms var(--ease), transform 520ms cubic-bezier(0.18, 0.9, 0.24, 1.18);
}

.glare-hover::before {
  position: absolute;
  z-index: 7;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(var(--gh-angle), transparent 54%, rgba(255, 255, 255, 0.16) 65%, rgba(185, 242, 138, 0.1) 68%, transparent 78%);
  background-repeat: no-repeat;
  background-position: -115% -115%;
  background-size: var(--gh-size) var(--gh-size);
  opacity: 0;
  transition: background-position var(--gh-duration) var(--ease), opacity 220ms var(--ease), transform 520ms cubic-bezier(0.18, 0.9, 0.24, 1.18);
}

.glare-hover:hover {
  border-color: rgba(185, 242, 138, 0.48);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(126, 191, 196, 0.08) inset;
  transform: translateY(-5px) scale(1.002);
}

.glare-hover:hover::before { background-position: 115% 115%; opacity: 1; }

.work-card.glare-hover,
.digital-card.glare-hover { padding: 1px 18px 18px; }
.work-card.glare-hover .work-media,
.digital-card.glare-hover .digital-media { margin-inline: -17px; }
.work-card.glare-hover .work-media { margin-top: -1px; }
.digital-card.glare-hover .digital-media { margin-top: 25px; }

.film-inline-video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #030606;
}

.storyboard-layout {
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4vw, 58px);
}

.circular-gallery { height: clamp(480px, 34vw, 610px); }
.circular-gallery::before,
.circular-gallery::after { width: 7%; }
.circular-gallery .corridor-card {
  top: 46%;
  width: 72%;
  height: 72%;
  transition: transform 680ms cubic-bezier(0.18, 0.9, 0.24, 1.16), opacity 420ms var(--ease), filter 420ms var(--ease);
}
.circular-gallery .corridor-card.is-active img {
  border-color: rgba(185, 242, 138, 0.64);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(185, 242, 138, 0.12);
}

@media (max-width: 1024px) {
  .storyboard-layout { grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr); gap: 28px; }
  .circular-gallery { height: clamp(420px, 50vw, 520px); }
  .circular-gallery .corridor-card { width: 76%; height: 70%; }
}

@media (max-width: 768px) {
  [data-scroll-reveal] { transform: translateY(calc((1 - var(--scroll-reveal-progress)) * 16px)); }
  .glare-hover:hover { transform: none; }
  .work-card.glare-hover,
  .digital-card.glare-hover { padding-inline: 12px; }
  .work-card.glare-hover .work-media,
  .digital-card.glare-hover .digital-media { margin-inline: -11px; }
  .storyboard-layout { grid-template-columns: 1fr; }
  .circular-gallery { height: clamp(360px, 112vw, 470px); }
  .circular-gallery .corridor-card { width: 88%; height: 68%; }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] { --scroll-reveal-progress: 1; opacity: 1; filter: none; transform: none; }
  .glare-hover,
  .glare-hover:hover { transform: none; transition: none; }
  .glare-hover::before { display: none; transition: none; }
}

/* ASCIIText, LaserFlow and GradualBlur placements. */
.ascii-text { position: relative; }
.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact > *:not(.ambient-canvas) { position: relative; z-index: 2; }
.contact-laser-flow {
  z-index: 0;
  opacity: 0.88;
  mix-blend-mode: screen;
}
.contact-panel { background: linear-gradient(90deg, rgba(19, 25, 24, 0.66), rgba(19, 25, 24, 0.9) 68%); backdrop-filter: blur(2px); }
.work > .section-gradual-blur,
.contact > .section-gradual-blur { z-index: 4; }

@media (max-width: 768px) {
  .contact-laser-flow { opacity: 0.58; }
  .intro-grid { background-size: 48px 48px; opacity: 0.12; }
  .intro-brand { transform: translateY(-1vh); }
  .intro-title { font-size: clamp(54px, 18vw, 78px); letter-spacing: 0.04em; }
  .intro-brand > p { margin-top: 18px; font-size: 9px; letter-spacing: 0.18em; }
  .intro-enter { bottom: 18%; min-width: 166px; }
  .intro-light-path { width: 68vw; height: 60%; }
  .hero-bottom-actions { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .ascii-text-canvas { pointer-events: none; }
  .contact-laser-flow { opacity: 0.24; }
  .method-shape-blur { opacity: 0.18; }
  .border-gradient-bottom,
  .border-gradient-top { animation: none; opacity: 0.22; }
  .intro-glyph { opacity: 1; filter: none; transform: none; animation: none !important; }
  .intro-brand > p,
  .intro-enter { opacity: 1; transform: translate(-50%, 0); transition-delay: 0ms; }
  .intro-brand > p { transform: none; }
  .intro-grid,
  .intro-light-path { display: none; }
  .intro-gate,
  .intro-gate.is-leaving,
  .hero-content { transition-duration: 180ms !important; }
}
