:root {
  --ink: #0b1014;
  --ink-soft: #121a20;
  --paper: #f6f7f3;
  --white: #ffffff;
  --muted: #aeb8be;
  --line: rgba(255, 255, 255, 0.16);
  --bamboo: #6f8f45;
  --bamboo-deep: #2e5a3c;
  --bamboo-light: #dde8cf;
  --bamboo-mist: #edf3e8;
  --pink: #c58b9f;
  --orange: #c99b6e;
  --page-pad: clamp(24px, 5vw, 88px);
  --max: 1480px;
  --header-h: 104px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 0.26s;
  --motion-enter: 0.72s;
  --motion-media: 1.05s;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.external-link-icon {
  position: relative;
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: -0.02em;
}

.external-link-icon::before {
  content: "";
  position: absolute;
  left: 0.08em;
  bottom: 0.1em;
  width: 0.72em;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.external-link-icon::after {
  content: "";
  position: absolute;
  top: 0.04em;
  right: 0.04em;
  width: 0.43em;
  height: 0.43em;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.content-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bamboo-deep), var(--bamboo-light));
  transform: scaleX(0);
  transform-origin: left;
}

.site-rail {
  position: fixed;
  top: calc(var(--header-h) + 20px);
  bottom: 24px;
  z-index: 55;
  width: 48px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgba(35, 71, 48, 0.78);
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
  transition: color 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
}

.site-rail--left {
  left: 6px;
}

.site-rail--right {
  right: 6px;
}

.site-rail__bar {
  position: relative;
  width: 4px;
  height: clamp(150px, 24vh, 260px);
  margin-top: auto;
  margin-bottom: 22px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 34%, transparent);
  box-shadow: 0 0 22px rgba(111, 143, 69, 0.2);
  isolation: isolate;
}

.site-rail__bar::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -34%;
  left: 50%;
  width: 7px;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent 0%, currentColor 48%, transparent 100%);
  opacity: 0;
  filter: drop-shadow(0 0 7px currentColor);
  transform: translateX(-50%);
  animation: site-rail-runner 4.6s var(--ease) infinite;
}

.site-rail__bar::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 12%, transparent);
  transform: translateX(-50%);
  animation: site-rail-pulse 2.8s ease-in-out infinite;
}

@keyframes site-rail-runner {
  0% {
    opacity: 0;
    transform: translate(-50%, -15%);
  }

  14%,
  82% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 392%);
  }
}

@keyframes site-rail-pulse {
  0%,
  100% {
    opacity: 0.54;
    transform: translateX(-50%) scale(0.78);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

.site-rail--left p {
  margin: 0 0 auto;
  writing-mode: vertical-rl;
  color: currentColor;
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.24em;
  text-shadow: 0 0 14px color-mix(in srgb, currentColor 18%, transparent);
  will-change: transform, letter-spacing;
}

.site-rail__section {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-family: monospace;
  letter-spacing: 0.12em;
}

.site-rail__section span {
  font-size: 20px;
  font-weight: 700;
}

.site-rail__section small {
  writing-mode: vertical-rl;
  opacity: 0.48;
  font-family: "Helvetica Neue", sans-serif;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-rail__progress {
  position: relative;
  width: 2px;
  flex: 1;
  min-height: 140px;
  margin-top: 22px;
  overflow: hidden;
  background: color-mix(in srgb, currentColor 28%, transparent);
}

.site-rail__progress i {
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 1;
  transform: scaleY(0);
  transform-origin: top;
}

body[data-active-section="top"] .site-rail,
body[data-active-section="contact"] .site-rail {
  color: rgba(238, 245, 231, 0.88);
  text-shadow: 0 1px 8px rgba(4, 9, 12, 0.36);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-rail {
    top: calc(var(--header-h) + 12px);
    bottom: 18px;
    width: 30px;
  }

  .site-rail--left {
    left: 2px;
  }

  .site-rail--right {
    right: 2px;
  }

  .site-rail__bar {
    width: 3px;
    height: clamp(96px, 18vh, 150px);
    margin-bottom: 14px;
  }

  .site-rail--left p {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .site-rail__section {
    gap: 7px;
  }

  .site-rail__section span {
    font-size: 15px;
  }

  .site-rail__section small {
    font-size: 11px;
  }

  .site-rail__progress {
    width: 1px;
    min-height: 96px;
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .site-rail {
    top: calc(var(--header-h) + 8px);
    bottom: 12px;
    width: 16px;
  }

  .site-rail--left {
    left: max(1px, env(safe-area-inset-left));
  }

  .site-rail--right {
    right: max(1px, env(safe-area-inset-right));
  }

  .site-rail__bar {
    width: 2px;
    height: clamp(64px, 15vh, 92px);
    margin-bottom: 8px;
    box-shadow: none;
  }

  .site-rail__bar::before {
    width: 4px;
    animation-duration: 5.2s;
  }

  .site-rail__bar::after {
    display: none;
  }

  .site-rail--left p,
  .site-rail__section small {
    display: none;
  }

  .site-rail__section {
    gap: 0;
  }

  .site-rail__section span {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
  }

  .site-rail__progress {
    width: 1px;
    min-height: 64px;
    margin-top: 8px;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-h);
  padding: 14px var(--page-pad);
  display: grid;
  grid-template-columns: 136px 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, min-height 0.4s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(250, 252, 248, 0.9);
  border-color: rgba(11, 16, 20, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(30, 45, 38, 0.06);
}

.brand {
  justify-self: start;
}

.brand:focus-visible,
.footer-logo-trigger:focus-visible {
  outline: 2px solid var(--bamboo-light);
  outline-offset: 5px;
}

.brand .motion-logo {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: invert(1) brightness(1.8);
  transition: width 0.4s ease, height 0.4s ease;
}

.site-header.is-scrolled .brand .motion-logo {
  width: 68px;
  height: 68px;
  filter: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(26px, 3.4vw, 56px);
  align-items: center;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  font-size: clamp(16px, 1.08vw, 18px);
  letter-spacing: 0.065em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  background: var(--bamboo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-header.is-scrolled .site-nav a {
  color: rgba(11, 16, 20, 0.62);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--bamboo-light);
  border-color: var(--bamboo-light);
}

.site-header.is-scrolled .header-cta {
  color: var(--ink);
  border-color: rgba(11, 16, 20, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: #071015;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  transform: scale(calc(1.04 + var(--hero-scale, 0)));
  transition: transform 0.2s linear;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(1.08);
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-carousel-track::-webkit-scrollbar {
  display: none;
}

.hero-carousel-slide {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-carousel-control {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(11, 16, 20, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-carousel-control:hover {
  color: var(--white);
  background: var(--bamboo-deep);
  transform: translateY(-2px);
}

.hero-carousel-control.is-prev {
  right: 72px;
}

.hero-carousel-dots {
  position: absolute;
  left: 10px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-carousel-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
  transition: width 0.25s ease;
}

.hero-carousel-dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(11, 16, 20, 0.1);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel-dots button.is-active {
  width: 36px;
}

.hero-carousel-dots button.is-active::before {
  width: 24px;
  background: var(--bamboo-deep);
}

.hero-carousel-control:focus-visible,
.hero-carousel-dots button:focus-visible,
.hero-carousel-track:focus-visible {
  outline: 2px solid var(--bamboo-deep);
  outline-offset: 3px;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 10, 14, 0.86) 0%, rgba(5, 10, 14, 0.66) 30%, rgba(5, 10, 14, 0.25) 63%, rgba(5, 10, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 8, 12, 0.24), rgba(4, 8, 12, 0.08) 50%, rgba(4, 8, 12, 0.58));
}

.join-grid {
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.orb {
  position: absolute;
  width: 26vw;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.orb-a {
  left: -10vw;
  bottom: 3vh;
  background: var(--bamboo);
}

.orb-b {
  right: -9vw;
  top: -12vh;
  background: #88a57f;
}

.hero-content {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 8vh);
  padding-bottom: 11vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-no {
  margin: 0 0 28px;
  color: var(--bamboo);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--bamboo);
}

.hero .eyebrow {
  margin-bottom: 26px;
  font-size: clamp(22px, 1.65vw, 27px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.section-no {
  margin-bottom: 26px;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.18em;
}

.hero-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(64px, 8vw, 142px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero-title span {
  display: block;
}

.hero-title .accent-line {
  width: fit-content;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
  position: relative;
}

.hero-title .accent-line::after {
  content: "";
  position: absolute;
  left: calc(100% + 24px);
  top: 48%;
  width: clamp(80px, 12vw, 220px);
  height: 10px;
  background: linear-gradient(90deg, var(--bamboo), var(--bamboo-light));
}

.hero-lede {
  max-width: 620px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.9;
  letter-spacing: 0.025em;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-width: 156px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--bamboo);
}

.button-primary:hover {
  background: var(--bamboo-light);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(8, 14, 18, 0.28);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-index {
  position: absolute;
  right: var(--page-pad);
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font: 700 17px/1 monospace;
}

.hero-index i {
  width: 104px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-cue {
  position: absolute;
  left: var(--page-pad);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font: 700 11px/1 monospace;
  letter-spacing: 0.2em;
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  background: var(--bamboo);
  animation: cue 1.8s ease-in-out infinite;
  transform-origin: left;
}

@keyframes cue {
  0%, 100% { transform: scaleX(0.35); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.section {
  position: relative;
  padding-block: clamp(94px, 11vw, 162px);
}

.section-heading {
  display: block;
  margin-bottom: clamp(52px, 6.5vw, 92px);
}

.section-heading .section-no {
  margin-bottom: clamp(18px, 2vw, 28px);
}

.section-heading h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
  will-change: transform, opacity, clip-path, letter-spacing;
}

.ip-section .section-heading h2 {
  max-width: none;
  font-size: clamp(52px, 5.8vw, 88px);
}

.ip-section .heading-secondary {
  font-size: 0.5em;
}

.heading-secondary {
  display: inline-block;
  margin-left: 0.18em;
  color: rgba(11, 16, 20, 0.48);
  font-size: 0.42em;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  vertical-align: 0.18em;
  white-space: nowrap;
}

.section-heading > p:last-child:not(.section-no) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.about {
  background: #ffffff;
}

.about .section-no,
.works .section-no,
.contact .section-no {
  color: var(--bamboo-deep);
}

.contact .section-no {
  color: var(--bamboo-light);
}

.about .section-heading h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.8vw, 60px);
}

.about-layout {
  max-width: 900px;
}

.about-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: #535d62;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(23px, 1.9vw, 32px);
  line-height: 1.62;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-facts {
  margin-top: clamp(75px, 8.5vw, 128px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #aeb7ba;
  border-bottom: 1px solid #aeb7ba;
}

.about-facts article {
  min-height: clamp(180px, 17vw, 244px);
  padding: clamp(30px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: center;
  border-right: 1px solid #aeb7ba;
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about-facts article:first-child strong {
  letter-spacing: 0.06em;
}

.about-facts span {
  color: #596469;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.values {
  margin-top: clamp(53px, 6vw, 82px);
  padding-top: 26px;
  display: grid;
  grid-template-columns: minmax(150px, 0.26fr) 1fr;
  gap: clamp(28px, 6vw, 90px);
  border-top: 1px solid #aeb7ba;
}

.values > p {
  margin: 4px 0 0;
  color: var(--bamboo-deep);
  font: 700 11px/1 monospace;
  letter-spacing: 0.16em;
}

.values > div {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.values span {
  padding: 0 clamp(8px, 1vw, 16px);
  border-right: 1px solid #aeb7ba;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
}

.values span:first-child {
  padding-left: clamp(8px, 1vw, 16px);
}

.values span:last-child {
  border-right: 0;
}

.fields {
  color: var(--ink);
  background: #f3f6f2;
  overflow: hidden;
}

.about .section-no,
.fields .section-no,
.works .section-no,
.ip-section .section-no {
  color: var(--bamboo-deep);
}

.fields-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 143, 69, 0.15), transparent 28%),
    radial-gradient(circle at 80% 85%, rgba(221, 232, 207, 0.48), transparent 28%),
    linear-gradient(135deg, transparent 0 48%, rgba(22, 55, 46, 0.05) 48% 49%, transparent 49% 100%);
}

.section-heading-light {
  position: relative;
}

.section-heading-light h2 {
  color: var(--ink);
}

.fields .section-heading > p:last-child:not(.section-no) {
  color: #5d6864;
}

.field-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid #d4dcd7;
  border-top: 1px solid #d4dcd7;
}

.field-card {
  --card-accent: var(--bamboo);
  position: relative;
  min-height: clamp(260px, 27vw, 390px);
  padding: clamp(26px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid #d4dcd7;
  border-bottom: 1px solid #d4dcd7;
  background: rgba(255, 255, 255, 0.7);
  isolation: isolate;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.35s var(--ease);
}

.field-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--card-accent);
  transform: scaleX(0.14);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.field-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--card-accent);
  transform: translateY(102%);
  transition: transform 0.48s var(--ease);
}

.field-card:hover {
  color: var(--ink);
  transform: translateY(-6px);
}

.field-card:hover::before,
.field-card:hover::after {
  transform: translateY(0) scaleX(1);
}

.field-card[data-accent="lime"] { --card-accent: var(--bamboo-light); }
.field-card[data-accent="pink"] { --card-accent: var(--pink); }
.field-card[data-accent="orange"] { --card-accent: var(--orange); }

.field-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.field-card p {
  margin: 10px 0 0;
  color: rgba(11, 16, 20, 0.5);
  font: 12px/1 monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-card:hover p {
  color: var(--ink);
}

.field-index {
  position: absolute;
  top: 28px;
  left: 34px;
  font: 12px/1 monospace;
  color: rgba(11, 16, 20, 0.46);
}

.about-combined {
  padding-block: clamp(78px, 7.2vw, 108px);
}

.about-combined .section-heading {
  margin-bottom: clamp(38px, 4.5vw, 60px);
}

.about-overview {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 5.5vw, 82px);
  align-items: end;
}

.about-combined .about-layout {
  max-width: none;
}

.about-combined .about-copy .lead-copy {
  max-width: 560px;
  margin: 0;
  font-size: clamp(22px, 1.6vw, 27px);
  line-height: 1.62;
}

.about-combined .about-facts {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-combined .about-facts article {
  min-height: clamp(128px, 11vw, 154px);
  padding: clamp(18px, 1.8vw, 26px) clamp(8px, 1.2vw, 16px);
  gap: 14px;
}

.about-combined .about-facts strong {
  font-size: clamp(32px, 3.2vw, 48px);
}

.about-combined .about-facts span {
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.45;
}

.about-fields-lite {
  margin-top: clamp(34px, 4vw, 48px);
  padding-top: clamp(20px, 2vw, 26px);
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  border-top: 1px solid #aeb7ba;
}

.about-fields-lite > p {
  margin: 0;
  color: var(--bamboo-deep);
  font: 700 11px/1 monospace;
  letter-spacing: 0.14em;
}

.about-fields-lite > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
}

.about-fields-lite span {
  color: #36413d;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.4;
  white-space: nowrap;
}

.about-fields-lite span + span::before {
  content: "·";
  margin: 0 clamp(12px, 1.6vw, 24px);
  color: var(--bamboo);
}

.works {
  padding-block: clamp(72px, 6.5vw, 96px);
  background:
    radial-gradient(circle at 7% 10%, rgba(111, 143, 69, 0.07), transparent 27%),
    linear-gradient(180deg, #fbfcf9 0%, #f3f6ef 100%);
}

.works .section-heading {
  margin-bottom: clamp(36px, 4vw, 56px);
}

/* PRODUCTS: one native horizontal scroll-snap track for touch, trackpad and mouse. */
.products-carousel {
  position: relative;
  isolation: isolate;
}

.products-carousel-viewport {
  position: relative;
  overflow: hidden;
  will-change: transform, clip-path, opacity;
}

.products-showcase {
  --product-card-width: min(82%, 1080px);
  --product-side-pad: max(6%, calc((100% - 1080px) / 2));
  width: 100%;
  margin: 0;
  padding: 24px 0 30px;
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--product-side-pad);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.products-showcase::-webkit-scrollbar {
  display: none;
}

.products-showcase.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.products-showcase .featured-work,
.products-showcase .product-card--lead,
.products-showcase .product-card--wudao {
  position: relative;
  flex: 0 0 var(--product-card-width);
  width: var(--product-card-width);
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: clamp(8px, 0.8vw, 12px);
  background: #111a18;
  box-shadow: 0 10px 32px rgba(21, 36, 27, 0.08);
  opacity: 0.4;
  filter: saturate(0.64) brightness(0.62);
  transform: scale(0.84);
  transform-origin: center;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  cursor: grab;
  transition:
    transform 0.38s var(--ease),
    opacity 0.32s ease,
    filter 0.38s ease,
    box-shadow 0.38s ease;
}

.products-showcase .featured-work:first-child {
  margin-left: var(--product-side-pad);
}

.products-showcase .featured-work:last-child {
  margin-right: var(--product-side-pad);
}

.products-showcase.is-dragging .featured-work {
  cursor: grabbing;
}

.products-showcase .featured-work.is-adjacent {
  opacity: 0.62;
  filter: saturate(0.76) brightness(0.72);
  transform: scale(0.9);
}

.products-showcase .featured-work.is-adjacent.is-after {
  transform-origin: left center;
}

.products-showcase .featured-work.is-adjacent.is-before {
  transform-origin: right center;
}

.products-showcase .featured-work.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.035);
  box-shadow: 0 18px 48px rgba(21, 36, 27, 0.13);
}

.products-carousel .work-image,
.products-carousel .work-overlay {
  position: absolute;
  inset: 0;
}

.products-carousel .work-image {
  aspect-ratio: auto;
}

.products-carousel .work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform var(--motion-media) var(--ease);
}

.products-showcase .featured-work.is-active .work-image img,
.products-showcase .featured-work.is-active .work-meta,
.products-showcase .featured-work.is-active .work-link {
  will-change: transform, opacity;
}

.products-carousel .work-overlay {
  display: block;
  background: linear-gradient(180deg, rgba(5, 8, 10, 0) 54%, rgba(5, 8, 10, 0.62) 100%);
}

.products-carousel .work-meta {
  position: absolute;
  inset: auto auto clamp(18px, 1.8vw, 26px) clamp(18px, 2vw, 30px);
  padding: 0;
  color: var(--white);
  transition: opacity 0.28s ease, transform 0.36s var(--ease);
}

.products-carousel .work-meta p {
  margin: 0;
  color: rgba(235, 247, 220, 0.92);
  font: 700 clamp(10px, 0.76vw, 11px)/1.2 monospace;
  letter-spacing: 0.16em;
}

.products-carousel .work-title {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 34px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 16px rgba(4, 9, 12, 0.26);
}

.products-carousel .work-meta--announcement {
  max-width: min(58%, 560px);
}

.products-carousel .work-meta--announcement p {
  color: var(--white);
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.products-carousel .work-meta--announcement span {
  margin-top: 6px;
  display: block;
  color: rgba(235, 247, 220, 0.82);
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.products-carousel .work-link {
  position: absolute;
  inset: auto clamp(18px, 2vw, 30px) clamp(16px, 1.6vw, 24px) auto;
  width: auto;
  min-width: clamp(126px, 11vw, 160px);
  height: auto;
  margin: 0;
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  transition: opacity 0.28s ease, transform 0.36s var(--ease);
}

.products-carousel .work-link b {
  color: var(--white);
  transition: transform var(--motion-fast) var(--ease);
}

.products-showcase .featured-work:not(.is-active) .work-meta,
.products-showcase .featured-work:not(.is-active) .work-link,
.products-showcase .featured-work:not(.is-active) .image-watermark {
  opacity: 0;
  transform: translateY(8px);
}

.products-showcase .featured-work.is-active:hover .work-image img {
  transform: scale(1.018);
}

.products-showcase .featured-work.is-active:hover .work-link b {
  transform: translate(3px, -3px);
}

.products-carousel-controls {
  width: min(82%, 1080px);
  margin: 10px auto 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.products-carousel-control {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  color: rgba(24, 42, 32, 0.72);
  border: 0;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.products-carousel-control:hover:not(:disabled) {
  color: var(--bamboo-deep);
}

.products-carousel-control.is-prev:hover:not(:disabled) {
  transform: translateX(-2px);
}

.products-carousel-control.is-next:hover:not(:disabled) {
  transform: translateX(2px);
}

.products-carousel-control:disabled {
  opacity: 0.26;
  cursor: default;
}

.products-carousel-control.is-next {
  width: auto;
  min-width: 88px;
  padding: 0 13px;
  display: inline-flex;
  gap: 10px;
  border: 1px solid rgba(46, 90, 60, 0.28);
  border-radius: 999px;
  background: rgba(237, 243, 232, 0.72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.products-carousel-control.is-next b {
  font-size: 17px;
  font-weight: 500;
}

.products-carousel[data-active-product="0"] .products-carousel-control.is-next:not(:disabled) {
  animation: products-next-invite 1.8s var(--ease) 0.35s 2;
}

@keyframes products-next-invite {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(111, 143, 69, 0);
    transform: translateX(0);
  }

  45% {
    box-shadow: 0 0 0 7px rgba(111, 143, 69, 0.09);
    transform: translateX(4px);
  }
}

.products-carousel-count {
  min-width: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(24, 42, 32, 0.42);
  font: 500 9px/1 monospace;
  letter-spacing: 0.08em;
}

.products-carousel-count strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.products-carousel-count i {
  width: 38px;
  height: 1px;
  background: rgba(46, 90, 60, 0.2);
}

.products-carousel-dots {
  display: flex;
  gap: 0;
}

.products-carousel-dots button {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.products-carousel-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(46, 90, 60, 0.26);
  transform: translate(-50%, -50%);
  transition: width 0.26s ease, background 0.26s ease;
}

.products-carousel-dots button.is-active::before {
  width: 14px;
  background: rgba(46, 90, 60, 0.72);
}

.products-carousel-control:focus-visible,
.products-carousel-dots button:focus-visible,
.products-showcase:focus-visible,
.products-showcase .featured-work:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 4px;
}

.products-future {
  width: min(82%, 1080px);
  margin: clamp(16px, 2vw, 26px) auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(46, 90, 60, 0.13);
}

.products-future p,
.products-future span {
  margin: 0;
}

.products-future span {
  color: rgba(24, 42, 32, 0.62);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .products-showcase {
    --product-card-width: 84%;
    --product-side-pad: 6%;
  }

  .products-showcase .featured-work,
  .products-showcase .product-card--lead,
  .products-showcase .product-card--wudao {
    aspect-ratio: 16 / 10;
  }

  .products-carousel-controls,
  .products-future {
    width: 84%;
  }
}

@media (max-width: 760px) {
  .works {
    padding-block: 66px;
  }

  .works .section-heading {
    margin-bottom: 20px;
  }

  .products-showcase {
    --product-card-width: 84%;
    --product-side-pad: 5%;
    gap: 12px;
    padding-block: 16px 22px;
  }

  .products-showcase .featured-work,
  .products-showcase .product-card--lead,
  .products-showcase .product-card--wudao {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .products-carousel .work-meta {
    inset: auto auto 18px 16px;
  }

  .products-carousel .work-title {
    margin-bottom: 7px;
    font-size: 22px;
  }

  .products-carousel .work-meta--announcement {
    max-width: calc(100% - 32px);
  }

  .products-carousel .work-meta--announcement p {
    font-size: 15px;
  }

  .products-carousel .work-meta--announcement span {
    max-width: 25em;
    font-size: 10px;
  }

  .products-carousel .work-link {
    inset: 14px 14px auto auto;
    min-width: 0;
    padding: 8px 0;
    gap: 14px;
  }

  .products-carousel-controls,
  .products-future {
    width: 90%;
  }

  .products-carousel-controls {
    margin-top: 6px;
    justify-content: center;
  }

  .products-carousel-control {
    width: 32px;
    height: 32px;
  }

  .products-carousel-control.is-next {
    min-width: 82px;
    padding-inline: 11px;
  }

  .products-carousel-count strong {
    font-size: 17px;
  }

  .products-showcase .featured-work,
  .products-showcase .product-card--lead,
  .products-showcase .product-card--wudao {
    transform: scale(0.86);
  }

  .products-showcase .featured-work.is-adjacent {
    transform: scale(0.91);
  }

  .products-showcase .featured-work.is-active {
    transform: scale(1.02);
  }

  .products-future {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-showcase .featured-work,
  .products-carousel .work-image img,
  .products-carousel .work-meta,
  .products-carousel .work-link,
  .products-carousel-control.is-next {
    transition: none !important;
    animation: none !important;
  }
}

/* Keep the familiar system arrow and add a restrained blue pointer glow. */
.pointer-glow {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .pointer-glow {
    --cursor-x: -100px;
    --cursor-y: -100px;
    --glow-scale: 0.86;
    position: fixed;
    z-index: 1199;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    display: block;
    pointer-events: none;
    opacity: 0;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(119, 212, 255, 0.58) 0%,
      rgba(91, 183, 255, 0.34) 38%,
      rgba(88, 174, 255, 0.12) 62%,
      transparent 76%
    );
    box-shadow: 0 0 11px rgba(77, 174, 255, 0.36);
    transform:
      translate3d(var(--cursor-x), var(--cursor-y), 0)
      translate(-50%, -50%)
      scale(var(--glow-scale));
    transition: opacity 0.12s ease, box-shadow 0.18s ease;
    will-change: transform, opacity;
  }

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

  .pointer-glow.is-interactive {
    --glow-scale: 1.12;
    box-shadow: 0 0 14px rgba(77, 174, 255, 0.46);
  }

  .pointer-glow.is-pressed {
    --glow-scale: 0.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pointer-glow {
    transition: none !important;
  }
}

.work-notes {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.work-notes > p {
  max-width: 690px;
  margin: 0;
  color: #616a6e;
  line-height: 1.8;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.work-tags span {
  padding: 10px 14px;
  border: 1px solid #abb3b5;
  font-size: 12px;
}

/* Product presence: a compact editorial spread rather than a presentation slide. */
.network-section {
  position: relative;
  min-height: min(900px, 94svh);
  padding-block: clamp(78px, 7.4vw, 116px);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 44%, rgba(111, 143, 69, 0.13), transparent 31%),
    linear-gradient(145deg, #f3f7ef 0%, #fbfcf9 52%, #eef4e9 100%);
  overflow: hidden;
}

.network-section::before {
  content: "NETWORK";
  position: absolute;
  right: -0.05em;
  bottom: -0.08em;
  color: rgba(46, 90, 60, 0.036);
  font-size: clamp(112px, 17vw, 270px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;
  pointer-events: none;
}

.network-shell {
  position: relative;
  z-index: 1;
}

.network-heading {
  margin-bottom: clamp(20px, 2vw, 32px);
}

.network-heading h2 {
  max-width: none;
  font-size: clamp(48px, 6vw, 88px);
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(560px, 1.52fr);
  gap: clamp(42px, 6.6vw, 104px);
  align-items: center;
  min-height: clamp(470px, 44vw, 610px);
}

.network-copy {
  position: relative;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: center;
}

.network-overseas {
  width: 100%;
  margin: 0;
  padding: 0;
}

.network-overseas article {
  min-height: 88px;
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(24, 42, 32, 0.18);
}

.network-overseas article:last-child {
  border-bottom: 1px solid rgba(24, 42, 32, 0.18);
}

.network-overseas article > span {
  color: var(--bamboo-deep);
  font: 700 11px/1 monospace;
  letter-spacing: 0.08em;
}

.network-overseas article div {
  min-width: 0;
}

.network-overseas strong,
.network-overseas small {
  display: block;
}

.network-overseas strong {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 650;
  letter-spacing: 0.03em;
}

.network-overseas small {
  margin-top: 5px;
  color: rgba(24, 42, 32, 0.48);
  font: 700 9px/1.3 monospace;
  letter-spacing: 0.14em;
}

.network-map {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 500px;
  margin: 0;
  padding: clamp(6px, 1vw, 14px);
  display: grid;
  align-items: center;
  background: transparent;
  overflow: visible;
  will-change: transform, opacity, clip-path;
}

.network-map::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% 5% 7% 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 56% 48%, rgba(60, 119, 78, 0.16), rgba(98, 147, 113, 0.06) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0.72;
  pointer-events: none;
  animation: network-map-aura 8s ease-in-out infinite;
}

.network-map__media {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
}

.network-map__plane {
  width: 100%;
  display: grid;
  place-items: center;
  transform: perspective(1100px)
    rotateX(var(--map-tilt-x, 0deg))
    rotateY(var(--map-tilt-y, 0deg))
    translate3d(var(--map-shift-x, 0px), var(--map-shift-y, 0px), 0)
    scale(var(--map-scale, 1));
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .network-map:hover {
    --map-shift-y: -2px;
    --map-scale: 1.008;
  }
}

.network-map__media :is(img, object, svg) {
  width: 100%;
  max-width: 820px;
  height: auto;
  filter: saturate(0.82) contrast(1.025) drop-shadow(0 24px 40px rgba(36, 69, 48, 0.08));
}

.network-map__object {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1000 / 760;
  border: 0;
}

.network-map__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  aspect-ratio: 1000 / 760;
  overflow: visible;
  pointer-events: none;
}

.network-map__overlay .network-link {
  fill: none;
  stroke: #09b86b;
  stroke-width: 1.55;
  stroke-linecap: round;
  opacity: 0.32;
  vector-effect: non-scaling-stroke;
}

.network-map__overlay .city-marker text {
  font: 650 17px "PingFang SC", "Microsoft YaHei", sans-serif;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.network-map__overlay .city-marker .pin {
  filter: drop-shadow(0 4px 5px rgba(10, 18, 13, 0.16));
}

.network-map__overlay .city-marker .hq-caption {
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.72;
  stroke-width: 4px;
}

.network-map__overlay .city-pulse,
.network-map__overlay .hq-ring {
  fill: none;
  transform-box: fill-box;
  transform-origin: center;
}

.network-map__overlay .city-pulse {
  stroke: #568363;
  stroke-width: 1.4;
  opacity: 0;
}

.network-map__overlay .city-marker.is-hq .city-pulse,
.network-map__overlay .hq-ring {
  stroke: #09b86b;
}

.network-map__overlay .hq-ring {
  stroke-width: 1.8;
  opacity: 0;
}

.network-map__overlay.is-core-active .hq-ring {
  animation: network-core-pulse 3.8s ease-out infinite;
}

.network-map__overlay.is-core-active .hq-ring--secondary {
  animation-delay: 1.9s;
}

@keyframes network-core-pulse {
  0%,
  10% {
    opacity: 0;
    transform: scale(0.58);
  }

  22% {
    opacity: 0.62;
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

@keyframes network-map-aura {
  0%,
  100% {
    opacity: 0.56;
    transform: translate3d(-1.5%, 1%, 0) scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(2%, -1.5%, 0) scale(1.045);
  }
}

@media (max-width: 1100px) {
  .network-section {
    min-height: 0;
  }

  .network-layout {
    grid-template-columns: minmax(210px, 0.5fr) minmax(460px, 1.5fr);
    gap: 38px;
  }

  .network-map {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .network-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .network-copy {
    max-width: 680px;
  }

  .network-overseas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .network-overseas article,
  .network-overseas article:last-child {
    border-bottom: 1px solid rgba(24, 42, 32, 0.18);
  }

  .network-map {
    min-height: 0;
  }

}

@media (max-width: 640px) {
  .network-section {
    padding-block: 72px;
  }

  .network-section::before {
    font-size: 108px;
  }

  .network-heading {
    margin-bottom: 26px;
  }

  .network-heading h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .network-layout {
    gap: 18px;
  }

  .network-copy {
    padding-top: 0;
  }

  .network-overseas {
    gap: 14px;
  }

  .network-overseas article {
    min-height: 76px;
    padding: 14px 0;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
  }

  .network-overseas strong {
    font-size: 14px;
  }

  .network-overseas small {
    letter-spacing: 0.08em;
  }

  .network-map {
    min-height: 0;
    padding: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .network-map::before {
    animation: none;
  }

  .network-map__plane {
    transform: none;
    transition: none;
  }

  .network-map__overlay.is-core-active .hq-ring {
    animation: none;
    opacity: 0.18;
  }
}

@media (max-width: 767px) {
  .network-map__overlay .city-marker text {
    font-size: 21px;
    stroke-width: 6px;
  }

  .network-map__overlay .city-marker .hq-caption {
    font-size: 13px;
  }

}

.ip-section {
  padding-block: clamp(80px, 7vw, 108px);
  color: var(--ink);
  background: var(--bamboo-mist);
  overflow: hidden;
}

.ip-section .content-shell {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  column-gap: clamp(24px, 5vw, 90px);
}

.ip-section .section-heading {
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  margin-bottom: 30px;
}

.ip-intro {
  grid-column: 2;
  max-width: 670px;
  margin: 0 0 36px;
  color: #5a6662;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: 0.025em;
}

.ip-feature,
.ip-art-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #151b20;
}

.ip-feature,
.ip-art-grid {
  grid-column: 1 / -1;
}

.ip-feature {
  aspect-ratio: 16 / 9;
}

.ip-feature img,
.ip-art-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.6s ease;
}

.ip-feature:hover img,
.ip-art-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.ip-feature::after,
.ip-art-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 8, 11, 0.66));
  pointer-events: none;
}

.ip-feature figcaption,
.ip-art-grid figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3.5vw, 54px);
  bottom: clamp(22px, 3.2vw, 48px);
  display: grid;
  gap: 10px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.ip-feature figcaption span,
.ip-art-grid figcaption span {
  color: var(--bamboo-light);
  font: 700 10px/1 monospace;
  letter-spacing: 0.18em;
}

.ip-feature figcaption strong,
.ip-art-grid figcaption strong {
  font-size: clamp(26px, 3vw, 46px);
  letter-spacing: -0.015em;
}

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

.ip-art-grid figure {
  aspect-ratio: 16 / 9;
}

.ip-roles {
  grid-column: 2;
  margin-top: 44px;
  margin-left: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #c8d2cd;
}

.ip-roles article {
  min-height: 160px;
  padding: 22px 28px 18px 0;
}

.ip-roles article + article {
  padding-left: 34px;
  border-left: 1px solid #c8d2cd;
}

.ip-roles span {
  color: var(--bamboo-deep);
  font: 700 14px/1.2 monospace;
  letter-spacing: 0.12em;
}

.ip-roles h3 {
  margin: 14px 0 10px;
  font-size: 23px;
}

.ip-roles p {
  margin: 0;
  color: #63706b;
  font-size: 14px;
  line-height: 1.7;
}

.ip-carousel {
  position: relative;
  grid-column: 1 / -1;
  min-width: 0;
}

.ip-signature {
  position: relative;
  grid-column: 1 / -1;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151b20;
}

.ip-signature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-watermark {
  position: absolute;
  z-index: 6;
  width: clamp(62px, 5.4vw, 86px);
  aspect-ratio: 1;
  display: block;
  background: url("./assets/brand-logo.png") center / contain no-repeat;
  filter: invert(1) brightness(1.9);
  opacity: 0.34;
  pointer-events: none;
  user-select: none;
}

.hero-carousel-slide > .image-watermark {
  top: calc(var(--header-h) + 22px);
  right: clamp(22px, 3.2vw, 54px);
}

.work-image .image-watermark,
.ip-signature > .image-watermark,
.ip-slide > .image-watermark {
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
}

.ip-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ip-carousel-track::-webkit-scrollbar {
  display: none;
}

.ip-slide {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #151b20;
}

.ip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-slide--zoomable {
  cursor: zoom-in;
}

.ip-slide--zoomable:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: -4px;
}

.ip-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--bamboo-light);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(11, 16, 20, 0.64);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.ip-carousel-control:hover {
  color: var(--ink);
  background: var(--bamboo-light);
  transform: translateY(-50%) scale(1.05);
}

.ip-carousel-control.is-prev {
  left: 20px;
}

.ip-carousel-control.is-next {
  right: 20px;
}

.ip-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.ip-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(46, 90, 60, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ip-carousel-dots button.is-active {
  width: 24px;
  background: var(--bamboo-deep);
}

.ip-carousel-dots button:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 4px;
}

.life-section {
  min-height: 0;
  padding-block: clamp(76px, 6.5vw, 96px);
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(111, 143, 69, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f0 100%);
  overflow: hidden;
}

.life-heading-row {
  margin-bottom: clamp(28px, 3vw, 42px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.life-section .section-heading {
  margin-bottom: 0;
}

.life-section .section-no {
  color: var(--bamboo-deep);
}

.life-section .section-heading h2 {
  max-width: none;
  font-size: clamp(44px, 5vw, 76px);
}

.life-section .heading-secondary {
  font-size: 0.36em;
}

.life-location {
  margin: 0 0 0.55em;
  color: rgba(46, 90, 60, 0.72);
  font: 700 11px/1.4 monospace;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.life-gallery {
  height: clamp(500px, 54svh, 620px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  min-width: 0;
  outline: 0;
}

.life-gallery:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 6px;
}

.life-photo {
  --life-curtain: 0;
  --life-curtain-origin: left;
  --life-entry-scale: 1;
  --life-hover-scale: 1;
  --life-parallax-scale: 1.06;
  --life-parallax-y: 0%;
  position: relative;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #dfe7dc;
  transition: opacity 0.42s ease, transform 0.68s var(--ease), box-shadow 0.52s ease;
}

.life-photo::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background: linear-gradient(135deg, #edf2e9 0%, #d8e4d5 100%);
  transform: scaleX(var(--life-curtain));
  transform-origin: var(--life-curtain-origin) center;
  pointer-events: none;
}

.life-photo--lead {
  grid-column: 1 / span 2;
  grid-row: 1 / -1;
}

.life-photo--view {
  grid-column: 3;
  grid-row: 1;
}

.life-photo--sunset {
  grid-column: 4 / span 2;
  grid-row: 1;
}

.life-photo--frontdesk {
  grid-column: 3;
  grid-row: 2;
}

.life-photo--basketball {
  grid-column: 4;
  grid-row: 2;
}

.life-photo--table {
  grid-column: 5;
  grid-row: 2;
}

.life-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--life-parallax-y), 0) scale(var(--life-parallax-scale)) scale(var(--life-entry-scale)) scale(var(--life-hover-scale));
  transition: transform 0.9s var(--ease), filter 0.55s ease;
}

.life-photo--lead img {
  object-position: center 58%;
}

.life-photo--view img {
  object-position: center 52%;
}

.life-photo--frontdesk img {
  object-position: center 58%;
}

.life-photo--sunset img {
  object-position: center 58%;
}

.life-photo--basketball img {
  object-position: center 54%;
}

.life-photo--table img {
  object-position: center 54%;
}

.life-photo::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 -80px 90px rgba(5, 10, 12, 0.08);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .life-photo:hover {
    z-index: 3;
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(35, 60, 42, 0.18);
  }

  .life-photo:hover img {
    --life-hover-scale: 1.045;
    filter: saturate(1.08) contrast(1.025);
  }

  @supports selector(.life-gallery:has(.life-photo:hover)) {
    .life-gallery:has(.life-photo:hover) .life-photo:not(:hover) {
      opacity: 0.7;
      transform: scale(0.982);
    }
  }
}

.life-gallery-dots {
  display: none;
}

.closing-page {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  background: #f7f9f4;
}

.join {
  position: relative;
  min-height: 75svh;
  padding-block: clamp(110px, 12.75vw, 187px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 22%, rgba(111, 143, 69, 0.14), transparent 25%),
    #f7f9f4;
  overflow: hidden;
  border-top: 1px solid #dfe6df;
  isolation: isolate;
}

.join::before {
  content: "JOIN US";
  position: absolute;
  z-index: 0;
  right: -0.04em;
  top: -0.14em;
  color: rgba(46, 90, 60, 0.045);
  font-size: clamp(112px, 20vw, 320px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;
  white-space: nowrap;
  pointer-events: none;
}

.join-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  mask-image: none;
  background-image:
    linear-gradient(rgba(8, 14, 18, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 14, 18, 0.07) 1px, transparent 1px);
}

.join-content {
  position: relative;
  z-index: 2;
}

.join .section-no {
  margin-bottom: 18px;
  color: var(--bamboo-deep);
}

.join h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(50px, 6.3vw, 94px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
  will-change: transform, opacity, clip-path, letter-spacing;
}

.join-content > p:not(.section-no) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(11, 16, 20, 0.66);
  font-size: 19px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.join .join-actions {
  margin-top: 28px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--bamboo-deep);
}

.text-link {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(11, 16, 20, 0.48);
  font-size: 14px;
}

.contact {
  padding-block: 90px;
  color: var(--white);
  background: var(--ink-soft);
}

.closing-page .join {
  min-height: 72svh;
  padding-block: clamp(96px, 8vw, 132px);
}

.closing-page .join h2 {
  max-width: 900px;
  font-size: clamp(58px, 7vw, 108px);
}

.closing-page .join-content > p:not(.section-no) {
  max-width: 800px;
  margin-top: 24px;
  font-size: clamp(19px, 1.45vw, 22px);
}

.closing-page .join .join-actions {
  margin-top: 34px;
}

.closing-page .join .button-dark {
  min-width: 176px;
  min-height: 58px;
  padding-inline: 28px;
}

.closing-page .contact {
  padding-block: clamp(48px, 4vw, 64px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 4vw, 56px);
}

.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.01em;
  will-change: transform, opacity, clip-path;
}

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

.contact-links > * {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-links a {
  transition: color 0.25s ease, padding 0.3s var(--ease);
}

.contact-links a:hover {
  padding-inline: 12px;
  color: var(--bamboo-light);
}

.contact-links span {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-links small {
  color: rgba(255, 255, 255, 0.42);
}

.contact-panel {
  display: grid;
  gap: 20px;
}

.contact-qr {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-qr img {
  width: 112px;
  height: 112px;
  padding: 7px;
  background: var(--white);
}

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

.contact-qr small {
  color: var(--bamboo-light);
  font: 700 10px/1.2 monospace;
  letter-spacing: 0.13em;
}

.contact-qr strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.contact-qr span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  padding-block: 36px 24px;
  color: rgba(255, 255, 255, 0.56);
  background: #080d10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .content-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.site-footer .motion-logo {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: invert(1) brightness(1.7);
}

.footer-logo-trigger {
  justify-self: start;
  width: 82px;
  height: 82px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  line-height: 1.8;
}

.footer-legal {
  grid-column: 2;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  border-top: 0;
  font-size: 12px;
  letter-spacing: 0.035em;
}

.footer-company,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
}

.footer-meta {
  text-align: right;
  white-space: nowrap;
}

.footer-company a,
.footer-meta a {
  transition: color var(--motion-fast) ease;
}

.footer-company a:hover,
.footer-meta a:hover {
  color: var(--bamboo-light);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

/* Immersive homepage: full-bleed sliding artwork with restrained brand copy. */
.home-bright {
  background: var(--paper);
}

.home-bright .site-header:not(.is-scrolled) {
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 10, 14, 0.46), rgba(5, 10, 14, 0));
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.home-bright .site-header:not(.is-scrolled) .brand .motion-logo {
  filter: invert(1) brightness(1.9);
}

.home-bright .site-header:not(.is-scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.home-bright .site-header:not(.is-scrolled) .site-nav a:hover,
.home-bright .site-header:not(.is-scrolled) .site-nav a.is-active {
  color: var(--white);
}

.home-bright .site-header:not(.is-scrolled) .header-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(7, 13, 17, 0.18);
}

.home-bright .site-header:not(.is-scrolled) .header-cta:hover {
  color: var(--ink);
  border-color: var(--bamboo-light);
  background: var(--bamboo-light);
}

.home-bright .hero,
.home-bright .hero-content {
  min-height: 100svh;
}

.home-bright .hero {
  color: var(--white);
  background: #071015;
}

.home-bright .hero-media {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  background: #071015;
  box-shadow: none;
  transform: none;
  animation: none;
  transform-origin: center center;
  will-change: transform, clip-path, opacity;
}

.home-bright .hero-media img {
  object-position: 50% center;
  filter: saturate(0.92) brightness(0.88);
}

.home-bright .hero-carousel-slide {
  transform-origin: center center;
  will-change: transform, opacity;
}

.home-bright .hero-scrim {
  display: block;
  z-index: 1;
  pointer-events: none;
}

.home-bright .hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 9, 13, 0.9) 0%, rgba(4, 9, 13, 0.73) 30%, rgba(4, 9, 13, 0.34) 58%, rgba(4, 9, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 9, 13, 0.34), rgba(4, 9, 13, 0.04) 45%, rgba(4, 9, 13, 0.48));
}

.home-bright .orb {
  display: none;
}

.home-bright .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding: calc(var(--header-h) + 18vh) clamp(44px, 11vw, 210px) 8vh;
  justify-content: center;
  pointer-events: none;
}

.home-bright .hero-content :is(a, button) {
  pointer-events: auto;
}

.home-bright .hero .eyebrow {
  max-width: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b9ef72;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
  will-change: transform, opacity, clip-path, letter-spacing;
}

.home-bright .hero .eyebrow::before {
  width: 34px;
  height: 2px;
  margin: 0;
  display: block;
  flex: 0 0 auto;
  background: #b9ef72;
  transform: scaleX(var(--hero-rule-scale, 1));
  transform-origin: left center;
}

.home-bright .hero-lede {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.9;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.4);
  will-change: transform, opacity, clip-path;
}

.home-bright .hero-fields-lite {
  max-width: 650px;
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.home-bright .hero-actions {
  margin-top: 28px;
}

.home-bright .hero-fields-lite > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}

.home-bright .hero-fields-lite span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.4;
  white-space: nowrap;
}

.home-bright .hero-fields-lite span + span::before {
  content: "·";
  margin: 0 10px;
  color: #b9ef72;
}

.home-bright .button-primary {
  color: var(--ink);
  background: #b9ef72;
}

.home-bright .button-primary:hover {
  color: var(--ink);
  background: var(--white);
}

.home-bright .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(7, 13, 17, 0.28);
  backdrop-filter: blur(8px);
}

.home-bright .button-ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

/* Hero「加入我们」绕边旋转光效 */
.home-bright .button-orbit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(185, 239, 114, 0.28);
  background: transparent;
  backdrop-filter: none;
}

.home-bright .button-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  translate: -50% -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 58%,
    rgba(185, 239, 114, 0.05) 68%,
    rgba(185, 239, 114, 0.45) 82%,
    #eaffc4 90%,
    #b9ef72 96%,
    transparent 100%
  );
  animation: button-orbit-spin 2.6s linear infinite;
  z-index: -2;
  pointer-events: none;
}

.home-bright .button-orbit::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: rgba(7, 13, 17, 0.78);
  z-index: -1;
  pointer-events: none;
  transition: background 0.3s ease;
}

.home-bright .button-orbit:hover {
  border-color: rgba(185, 239, 114, 0.7);
  background: transparent;
  color: var(--ink);
}

.home-bright .button-orbit:hover::after {
  background: var(--white);
}

.home-bright .button-orbit:hover::before {
  animation-duration: 1.6s;
  background: conic-gradient(
    from 0deg,
    transparent 0 48%,
    rgba(185, 239, 114, 0.12) 62%,
    rgba(185, 239, 114, 0.7) 78%,
    #fff 90%,
    #b9ef72 96%,
    transparent 100%
  );
}

@keyframes button-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-bright .hero-index,
.home-bright .scroll-cue {
  color: rgba(255, 255, 255, 0.48);
}

.home-bright .scroll-cue {
  display: none;
}

.home-bright .hero-index i {
  background: rgba(255, 255, 255, 0.3);
}

.home-bright .hero-index {
  z-index: 2;
  bottom: clamp(96px, 12vh, 136px);
  pointer-events: none;
}

.home-bright .hero-carousel-control {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(5, 10, 14, 0.34);
}

.home-bright .hero-carousel-dots {
  left: clamp(32px, 11vw, 210px);
  bottom: clamp(20px, 3.6vh, 44px);
}

@media (max-width: 1040px) {
  :root {
    --header-h: 80px;
  }

  .site-header {
    grid-template-columns: 100px 1fr auto;
  }

  .brand .motion-logo {
    width: 72px;
    height: 72px;
  }

  .site-header.is-scrolled .brand .motion-logo {
    width: 64px;
    height: 64px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
  }

  .values > div {
    justify-content: space-between;
  }

  .values span {
    padding-inline: clamp(7px, 1vw, 12px);
    font-size: clamp(11px, 1.35vw, 14px);
  }

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

  .ip-intro,
  .ip-roles {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-h);
    grid-template-columns: 1fr auto;
    padding-block: 8px;
    background: rgba(9, 14, 18, 0.84);
    backdrop-filter: blur(8px);
  }

  .site-header.is-scrolled,
  .menu-open .site-header {
    color: var(--ink);
    background: rgba(250, 252, 248, 0.94);
    border-color: rgba(11, 16, 20, 0.1);
  }

  .brand .motion-logo,
  .site-header.is-scrolled .brand .motion-logo {
    width: 58px;
    height: 58px;
  }

  .brand {
    position: relative;
    z-index: 4;
  }

  .site-header.is-scrolled .brand .motion-logo {
    filter: none;
  }

  .menu-open .brand .motion-logo {
    filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    align-content: center;
    gap: 8px;
  }

  .menu-toggle span {
    width: 26px;
    height: 2px;
    justify-self: end;
    background: var(--white);
    transition: transform 0.3s ease;
  }

  .site-header.is-scrolled .menu-toggle span,
  .menu-open .menu-toggle span {
    background: var(--ink);
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 3;
    width: 100vw;
    height: 100svh;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    padding: 96px var(--page-pad) 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: rgba(250, 252, 248, 0.99);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    color: var(--ink);
    border-bottom: 1px solid rgba(11, 16, 20, 0.12);
    font-size: 24px;
    letter-spacing: -0.02em;
  }

  .site-header .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--ink);
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a.is-active,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a.is-active {
    color: var(--bamboo-deep);
  }

  .home-bright .site-header:not(.is-scrolled) {
    color: var(--white);
    background: linear-gradient(180deg, rgba(5, 10, 14, 0.5), rgba(5, 10, 14, 0));
    border-color: transparent;
  }

  .home-bright .site-header.is-scrolled,
  .home-bright .menu-open .site-header {
    color: var(--ink);
    background: rgba(246, 247, 243, 0.94);
  }

  .home-bright .site-header:not(.is-scrolled) .menu-toggle span {
    background: var(--white);
  }

  .home-bright .site-header.is-scrolled .menu-toggle span,
  .home-bright .menu-open .menu-toggle span {
    background: var(--ink);
  }

  .home-bright .menu-open .site-header:not(.is-scrolled) .brand .motion-logo {
    filter: none;
  }

  .home-bright .menu-open .site-header:not(.is-scrolled) .menu-toggle span {
    background: var(--ink);
  }

  .home-bright .menu-open .site-header:not(.is-scrolled) .site-nav a {
    color: var(--ink);
  }

  .home-bright .menu-open .site-header:not(.is-scrolled) .site-nav a:hover,
  .home-bright .menu-open .site-header:not(.is-scrolled) .site-nav a.is-active {
    color: var(--bamboo-deep);
  }

  .home-bright .hero,
  .home-bright .hero-content {
    min-height: 100svh;
  }

  .home-bright .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    box-shadow: none;
  }

  .home-bright .hero-media img {
    object-position: 50% center;
  }

  .home-bright .hero-content {
    justify-content: center;
    padding: calc(var(--header-h) + 8vh) clamp(32px, 8vw, 70px) 12vh;
  }

  .home-bright .hero .eyebrow {
    max-width: none;
    font-size: clamp(20px, 2.5vw, 25px);
  }

  .home-bright .hero-lede {
    max-width: 520px;
  }

}

@media (max-width: 760px) {
  :root {
    --page-pad: 22px;
    --header-h: 76px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 10, 14, 0.86), rgba(5, 10, 14, 0.2)),
      linear-gradient(180deg, rgba(5, 10, 14, 0.12), rgba(5, 10, 14, 0.68));
  }

  .hero-content {
    padding-top: 102px;
    padding-bottom: 102px;
    justify-content: flex-end;
  }

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

  .hero .eyebrow {
    font-size: 22px;
  }

  .hero-title .accent-line::after {
    left: calc(100% + 12px);
    width: 60px;
    height: 7px;
  }

  .hero-lede br {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .ip-section .section-heading h2 {
    font-size: clamp(42px, 12.4vw, 50px);
    line-height: 1.02;
  }

  .ip-section .heading-secondary {
    display: block;
    margin: 0.3em 0 0;
    font-size: 0.42em;
    line-height: 1.15;
    vertical-align: 0;
  }

  .section-heading > p:last-child:not(.section-no) {
    margin: 24px 0 0;
  }

  .about-copy .lead-copy {
    font-size: 22px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts article {
    min-height: 148px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #aeb7ba;
  }

  .about-facts article:last-child {
    border-bottom: 0;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .values span {
    min-height: 52px;
    padding: 14px 10px;
    display: grid;
    place-items: center;
    border-right: 1px solid #aeb7ba;
    border-bottom: 1px solid #aeb7ba;
    font-size: 15px;
  }

  .values span:nth-child(2n) {
    border-right: 0;
  }

  .values span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

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

  .field-card {
    min-height: 170px;
    padding: 20px 16px;
  }

  .field-card h3 {
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .field-card p {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.06em;
  }

  .field-index {
    top: 18px;
    left: 16px;
  }

  .work-notes {
    display: block;
  }

  .work-tags {
    margin-top: 26px;
    justify-content: flex-start;
  }

  .ip-section {
    padding-block: 84px;
  }

  .ip-section .content-shell {
    display: block;
  }

  .ip-signature {
    aspect-ratio: 16 / 9;
  }

  .ip-carousel-track {
    gap: 10px;
  }

  .ip-carousel-control {
    width: 42px;
    height: 42px;
  }

  .ip-carousel-control.is-prev {
    left: 8px;
  }

  .ip-carousel-control.is-next {
    right: 8px;
  }

  .ip-intro {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .ip-feature {
    aspect-ratio: 4 / 5;
  }

  .ip-feature img {
    object-position: 48% center;
  }

  .ip-art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ip-art-grid figure {
    aspect-ratio: 4 / 3;
  }

  .ip-art-grid figure:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .ip-art-grid figcaption {
    left: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .ip-feature figcaption strong {
    font-size: 28px;
  }

  .ip-art-grid figcaption strong {
    font-size: 18px;
  }

  .ip-art-grid figure:nth-child(3) figcaption strong {
    font-size: 24px;
  }

  .ip-roles {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .ip-roles article {
    padding: 24px 0;
  }

  .ip-roles article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #c8d2cd;
  }

  .ip-roles span {
    font-size: 13px;
    letter-spacing: 0.11em;
  }

  .join {
    min-height: 650px;
    padding-block: 84px 130px;
    align-items: flex-start;
  }

  .closing-page .join {
    min-height: 68svh;
    padding-block: 86px 100px;
    align-items: center;
  }

  .closing-page .contact {
    padding-block: 58px;
  }

  .join h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .closing-page .join h2 {
    font-size: clamp(42px, 10.8vw, 58px);
  }

  .hero-carousel-control {
    display: none;
  }

  .hero-carousel-dots {
    left: 4px;
    bottom: 2px;
  }

  .hero-carousel-dots button,
  .hero-carousel-dots button.is-active {
    width: 44px;
    height: 44px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact {
    padding-block: 76px;
  }

  .site-footer .content-shell {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-block: 46px 24px;
  }

  .footer-legal {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta {
    text-align: left;
    white-space: normal;
  }

  .footer-company {
    overflow-wrap: anywhere;
  }

  .contact-qr {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-qr img {
    width: 96px;
    height: 96px;
  }

  .image-watermark {
    width: 56px;
  }

  .hero-carousel-slide > .image-watermark {
    top: calc(var(--header-h) + 14px);
    right: 14px;
  }

  .work-image .image-watermark,
  .ip-signature > .image-watermark,
  .ip-slide > .image-watermark {
    right: 12px;
    bottom: 12px;
  }

  .home-bright .hero,
  .home-bright .hero-content {
    min-height: 100svh;
  }

  .home-bright .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    box-shadow: none;
  }

  .home-bright .hero-carousel-slide {
    position: relative;
    isolation: isolate;
    background: #071015;
  }

  .home-bright .hero-carousel-slide:nth-child(1) {
    --mobile-hero-art: url("./assets/tori-daylight-960.jpg");
  }

  .home-bright .hero-carousel-slide:nth-child(2) {
    --mobile-hero-art: url("./assets/lvmeng-yusanjia-960.jpg");
  }

  .home-bright .hero-carousel-slide:nth-child(3) {
    --mobile-hero-art: url("./assets/ved-kv-liqifeng-960.jpg");
  }

  .home-bright .hero-carousel-slide::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: var(--mobile-hero-art) center / cover no-repeat;
    filter: saturate(0.72) brightness(0.42);
    opacity: 0.72;
    transform: scale(1.04);
  }

  .home-bright .hero-carousel-slide img {
    position: absolute;
    z-index: 1;
    top: calc(var(--header-h) + 8px);
    left: 50%;
    width: 138%;
    max-width: none;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) brightness(1.04);
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  }

  .home-bright .button-ghost {
    backdrop-filter: none;
  }

  .home-bright .hero-content {
    justify-content: flex-end;
    padding: calc(var(--header-h) + 56px) var(--page-pad) 126px;
  }

  .home-bright .hero .eyebrow {
    max-width: none;
    gap: 10px;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 0.06em;
  }

  .home-bright .hero .eyebrow::before {
    width: 26px;
  }

  .home-bright .hero-lede {
    max-width: 520px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .home-bright .hero-fields-lite {
    margin-top: 14px;
    padding-top: 0;
  }

  .home-bright .hero-fields-lite span {
    font-size: 14px;
  }

  .home-bright .hero-actions {
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .home-bright .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 9, 13, 0.32), rgba(4, 9, 13, 0.12) 32%, rgba(4, 9, 13, 0.76) 72%, rgba(4, 9, 13, 0.94)),
      linear-gradient(90deg, rgba(4, 9, 13, 0.46), rgba(4, 9, 13, 0.04));
  }

  .home-bright .hero-carousel-dots {
    left: 6px;
    bottom: 4px;
  }
}

@media (max-width: 900px) {
  .about-overview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-combined .about-copy .lead-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .about-combined {
    padding-block: 76px;
  }

  .about-combined .section-heading {
    margin-bottom: 38px;
  }

  .about-combined .about-copy .lead-copy {
    font-size: 20px;
  }

  .about-combined .about-facts {
    margin-top: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-combined .about-facts article {
    min-height: 112px;
    padding: 18px 6px;
    gap: 12px;
    border-right: 1px solid #aeb7ba;
    border-bottom: 0;
  }

  .about-combined .about-facts article:last-child {
    border-right: 0;
  }

  .about-combined .about-facts strong {
    font-size: clamp(26px, 8vw, 34px);
  }

  .about-combined .about-facts article:first-child strong {
    letter-spacing: 0.03em;
  }

  .about-combined .about-facts span {
    font-size: 10px;
    line-height: 1.35;
  }

  .about-fields-lite {
    margin-top: 30px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-fields-lite span {
    font-size: 15px;
  }

}

@media (max-width: 900px) {
  .life-section {
    min-height: 0;
    padding-block: 72px;
  }

  .life-heading-row {
    margin-bottom: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .life-location {
    margin: 0;
  }

  .life-gallery {
    height: auto;
    margin-right: calc(var(--page-pad) * -1);
    padding-right: var(--page-pad);
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 560px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 var(--page-pad);
    scrollbar-width: none;
  }

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

  .life-photo,
  .life-photo--view,
  .life-photo--lead {
    --life-parallax-scale: 1;
    --life-parallax-y: 0%;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 0.68;
    transform: scale(0.945);
    transform-origin: center center;
  }

  .life-photo.is-neighbor {
    opacity: 0.82;
    transform: scale(0.97);
  }

  .life-photo.is-active {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
  }

  .life-gallery-dots {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .life-gallery-dots button {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .life-gallery-dots button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(46, 90, 60, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, background 0.25s ease;
  }

  .life-gallery-dots button.is-active::before {
    width: 24px;
    background: var(--bamboo-deep);
  }

  .life-gallery-dots button:focus-visible {
    outline: 2px solid var(--bamboo);
    outline-offset: 4px;
  }
}

@media (max-width: 760px) {
  .works,
  .ip-section,
  .life-section {
    padding-block: 72px;
  }

  .works .section-heading,
  .ip-section .section-heading {
    margin-bottom: 34px;
  }

  .ip-intro {
    margin-bottom: 28px;
  }

  .ip-roles {
    margin-top: 34px;
  }

  .ip-roles article {
    padding-block: 20px;
  }

  .closing-page .join {
    min-height: 64svh;
    padding-block: 82px 88px;
  }

  .closing-page .join h2 {
    font-size: clamp(42px, 11.5vw, 52px);
  }

  .closing-page .join-content > p:not(.section-no) {
    margin-top: 20px;
    font-size: 18px;
  }

  .closing-page .join .join-actions {
    margin-top: 28px;
  }

  .closing-page .join .button-dark {
    min-width: 168px;
    min-height: 54px;
  }

  .closing-page .contact {
    padding-block: 48px;
  }

  .contact-grid {
    gap: 30px;
  }

  .site-footer {
    padding-block: 32px 20px;
  }

  .site-footer .content-shell {
    gap: 24px;
  }

  .life-section .section-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.04;
  }

  .life-section .heading-secondary {
    display: block;
    margin: 0.42em 0 0;
    font-size: 0.42em;
    vertical-align: 0;
  }

  .life-gallery {
    grid-auto-columns: min(84vw, 420px);
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media,
  .hero-carousel-slide,
  .hero-carousel-slide img,
  .section-heading > *,
  .site-rail,
  .work-image img,
  .work-meta > *,
  .work-link,
  .ip-signature img,
  .ip-slide img,
  .life-photo,
  .life-photo img,
  .life-location,
  .life-gallery-dots,
  .ip-roles article,
  .join-content > *,
  .contact-grid > *,
  .footer-legal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* IP and LIFE image lightboxes */
body.ip-lightbox-open,
body.life-lightbox-open {
  overflow: hidden;
}

.life-photo--zoomable {
  cursor: zoom-in;
}

.life-photo--zoomable:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 5px;
}

.life-lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: clamp(18px, 3vw, 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  color: #fff;
  background: rgba(5, 9, 7, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.life-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.life-lightbox__topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.life-lightbox__stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.life-lightbox__media {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
}

.life-lightbox__image {
  width: auto;
  height: auto;
  max-width: min(88vw, 1680px);
  max-height: calc(100vh - 150px);
  max-height: calc(100dvh - 100px);
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.56s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}

.life-lightbox__watermark {
  right: clamp(18px, 2.4vw, 36px);
  bottom: clamp(18px, 2.4vw, 36px);
  width: clamp(58px, 6vw, 92px);
  opacity: 0.5;
  filter: invert(1) brightness(2) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.32));
  transition: opacity 0.24s ease, transform 0.34s var(--ease);
}

.life-lightbox:not(.is-open) .life-lightbox__watermark,
.life-lightbox.is-switching .life-lightbox__watermark {
  opacity: 0;
  transform: translateY(6px);
}

.ip-lightbox__media {
  position: relative;
  max-width: min(88vw, 1680px);
  max-height: calc(100vh - 150px);
  max-height: calc(100dvh - 100px);
  display: inline-block;
  line-height: 0;
}

.ip-lightbox__image {
  display: block;
  max-width: 100%;
}

.ip-lightbox__watermark {
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  width: clamp(64px, 6vw, 96px);
  opacity: 0.46;
  transition: opacity 0.22s ease, transform 0.4s var(--ease);
}

.ip-lightbox:not(.is-open) .ip-lightbox__watermark,
.ip-lightbox.is-switching .ip-lightbox__watermark {
  opacity: 0;
  transform: translateY(6px);
}

.life-lightbox:not(.is-open) .life-lightbox__image {
  opacity: 0;
  transform: scale(0.9);
}

.life-lightbox.is-switching .life-lightbox__image {
  opacity: 0;
  transform: scale(0.96);
}

.life-lightbox__button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 22, 17, 0.7);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(12px);
}

.life-lightbox__button:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(47, 82, 57, 0.9);
  transform: scale(1.04);
}

.life-lightbox__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.life-lightbox__button--close {
  font-size: 25px;
  line-height: 1;
}

.life-lightbox__button--prev,
.life-lightbox__button--next {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  font-size: 27px;
  line-height: 1;
}

.life-lightbox__button--prev:hover,
.life-lightbox__button--next:hover {
  transform: translateY(-50%) scale(1.04);
}

.life-lightbox__button--prev {
  left: 0;
}

.life-lightbox__button--next {
  right: 0;
}

@media (max-width: 760px) {
  .life-lightbox {
    padding: 14px;
  }

  .life-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 130px);
    max-height: calc(100dvh - 90px);
  }

  .ip-lightbox__media {
    max-width: 100%;
    max-height: calc(100vh - 130px);
    max-height: calc(100dvh - 90px);
  }

  .ip-lightbox__watermark {
    right: 14px;
    bottom: 14px;
    width: 52px;
  }

  .life-lightbox__watermark {
    right: 14px;
    bottom: 14px;
    width: 54px;
  }

  .life-lightbox__button {
    width: 42px;
    height: 42px;
  }

  .life-lightbox__button--prev {
    left: 4px;
  }

  .life-lightbox__button--next {
    right: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .life-lightbox,
  .life-lightbox__image,
  .life-lightbox__button,
  .life-lightbox__watermark,
  .ip-lightbox__watermark {
    transition: none !important;
  }
}

/* 仙宗独立游戏与商城页 */
.xianzong-page {
  color: var(--paper);
  background: #07100d;
}

.xianzong-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(4, 10, 8, 0.94), rgba(4, 10, 8, 0));
}

.xianzong-main {
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(18px, 2.4vw, 36px)) var(--page-pad) clamp(30px, 4vw, 62px);
  background:
    radial-gradient(circle at 16% 5%, rgba(111, 143, 69, 0.25), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(79, 122, 82, 0.18), transparent 32%),
    #07100d;
}

.xianzong-workspace {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(340px, 1fr);
  gap: clamp(16px, 2.4vw, 36px);
  align-items: start;
}

.xianzong-game {
  position: sticky;
  top: calc(var(--header-h) + clamp(18px, 2.4vw, 36px));
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(221, 232, 207, 0.2);
  background: #030806;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
  animation: xianzong-rise 0.88s var(--ease) both;
}

.xianzong-game::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.7;
  background:
    linear-gradient(110deg, rgba(221, 232, 207, 0.12), transparent 20%),
    radial-gradient(circle at 75% 5%, rgba(111, 143, 69, 0.22), transparent 28%);
}

.xianzong-game__bar {
  min-height: 58px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 232, 207, 0.16);
  background: rgba(4, 12, 8, 0.88);
}

.xianzong-game__bar h1,
.xianzong-game__bar p {
  margin: 0;
}

.xianzong-game__bar h1 {
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.xianzong-game__bar p {
  color: var(--bamboo-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.xianzong-game__frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  flex: 0 0 auto;
  display: block;
  border: 0;
  background: #030806;
}

.xianzong-store {
  min-height: min(100%, 760px);
  padding: clamp(24px, 3vw, 42px);
  border-top: 1px solid rgba(221, 232, 207, 0.4);
  background: rgba(15, 30, 22, 0.8);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  animation: xianzong-rise 0.88s 0.1s var(--ease) both;
}

.xianzong-store__eyebrow,
.xianzong-store__label {
  margin: 0;
  color: var(--bamboo-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.xianzong-store h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.xianzong-store__intro {
  max-width: 28em;
  margin: 18px 0 0;
  color: rgba(237, 243, 232, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.xianzong-products {
  margin: clamp(26px, 3.2vw, 42px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(221, 232, 207, 0.2);
}

.xianzong-product {
  min-height: 112px;
  padding: 16px 0;
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  color: inherit;
  border-bottom: 1px solid rgba(221, 232, 207, 0.16);
  border-inline: 0;
  border-top: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: padding 0.34s var(--ease), background 0.34s ease;
}

.xianzong-product__sigil {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--bamboo-light);
  border: 1px solid rgba(221, 232, 207, 0.35);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at 35% 30%, rgba(221, 232, 207, 0.18), rgba(111, 143, 69, 0.04));
  transition: color 0.34s ease, border-color 0.34s ease, transform 0.34s var(--ease), background 0.34s ease;
}

.xianzong-product__name {
  min-width: 0;
}

.xianzong-product__title,
.xianzong-product__description {
  display: block;
}

.xianzong-product__title {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.xianzong-product__description {
  margin-top: 5px;
  color: rgba(237, 243, 232, 0.48);
  font-size: 12px;
  line-height: 1.45;
}

.xianzong-product__meta {
  min-width: 76px;
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.xianzong-product__price {
  color: var(--bamboo-light);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.xianzong-product__status {
  color: rgba(237, 243, 232, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.xianzong-product:focus-visible {
  outline: 2px solid var(--bamboo-light);
  outline-offset: -2px;
}

.xianzong-store__footnote {
  margin: 24px 0 0;
  padding-top: 18px;
  color: rgba(237, 243, 232, 0.42);
  border-top: 1px solid rgba(221, 232, 207, 0.14);
  font-size: 11px;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .xianzong-product:hover {
    padding-inline: 10px;
    background: rgba(221, 232, 207, 0.055);
  }

  .xianzong-product:hover .xianzong-product__sigil {
    color: #fff;
    border-color: var(--bamboo-light);
    background: rgba(111, 143, 69, 0.34);
    transform: rotate(-8deg) scale(1.06);
  }
}

@keyframes xianzong-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .xianzong-main {
    padding-top: calc(var(--header-h) + 14px);
    padding-inline: 0;
    padding-bottom: 0;
  }

  .xianzong-workspace {
    display: block;
  }

  .xianzong-game {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    border-inline: 0;
    box-shadow: none;
  }

  .xianzong-store {
    min-height: 0;
    padding: clamp(30px, 8vw, 48px) var(--page-pad) clamp(36px, 10vw, 56px);
  }
}

@media (max-width: 520px) {
  .xianzong-game {
    height: auto;
    min-height: 0;
  }

  .xianzong-game__bar {
    min-height: 52px;
    padding-inline: 16px;
  }

  .xianzong-game__bar h1 {
    font-size: 16px;
  }

  .xianzong-store h2 {
    font-size: 42px;
  }

  .xianzong-product {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .xianzong-product__sigil {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .xianzong-product__title {
    font-size: 15px;
  }

  .xianzong-product__meta {
    min-width: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xianzong-game,
  .xianzong-store,
  .xianzong-product,
  .xianzong-product__sigil {
    animation: none !important;
    transition: none !important;
  }
}

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

.xianzong-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.xianzong-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.xianzong-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 5, 0.72);
  backdrop-filter: blur(10px);
}

.xianzong-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  color: var(--white);
  background: #0b1b13;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.45);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.42s var(--ease);
}

.xianzong-modal.is-open .xianzong-modal__dialog {
  transform: translateY(0) scale(1);
}

.xianzong-modal__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 232, 207, 0.3);
  border-radius: 50%;
  background: rgba(4, 12, 8, 0.52);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.xianzong-modal__close:hover {
  color: var(--ink);
  border-color: var(--bamboo-light);
  background: var(--bamboo-light);
  transform: rotate(90deg);
}

.xianzong-modal__close:focus-visible,
.xianzong-modal__wechat:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.xianzong-modal__detail {
  min-height: 310px;
  padding: clamp(32px, 6vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(circle at 12% 16%, rgba(111, 143, 69, 0.36), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%);
}

.xianzong-modal__eyebrow,
.xianzong-modal__payment > p:first-child {
  margin: 0;
  color: var(--bamboo-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.xianzong-modal__sigil {
  width: 64px;
  height: 64px;
  margin-top: 30px;
  display: grid;
  place-items: center;
  color: var(--bamboo-light);
  border: 1px solid rgba(221, 232, 207, 0.52);
  border-radius: 50%;
  background: rgba(221, 232, 207, 0.08);
  font-size: 27px;
  letter-spacing: 0.08em;
}

.xianzong-modal__detail h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.xianzong-modal__detail > [data-xianzong-modal-description] {
  margin: 12px 0 0;
  color: rgba(237, 243, 232, 0.62);
  font-size: 15px;
}

.xianzong-modal__copy {
  max-width: 31em;
  margin: 18px 0 0;
  color: rgba(237, 243, 232, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.xianzong-modal__price-row {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: rgba(237, 243, 232, 0.54);
  border-top: 1px solid rgba(221, 232, 207, 0.2);
  font-size: 13px;
}

.xianzong-modal__price-row strong {
  color: var(--bamboo-light);
  font-size: 25px;
  line-height: 1;
}

.xianzong-modal__payment {
  padding: clamp(28px, 5vw, 40px) clamp(32px, 6vw, 54px) 30px;
  border-top: 1px solid rgba(221, 232, 207, 0.2);
  background: rgba(3, 10, 7, 0.38);
}

.xianzong-modal__wechat {
  width: 100%;
  min-height: 62px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border: 0;
  background: #07c160;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.xianzong-modal__wechat:hover {
  background: #08ae59;
  transform: translateY(-2px);
}

.xianzong-modal__wechat-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
  border-radius: 5px;
  object-fit: contain;
}

.xianzong-modal__notice {
  min-height: 1.6em;
  margin: 12px 0 0;
  color: var(--bamboo-light);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 520px) {
  .xianzong-modal {
    padding: 14px;
  }

  .xianzong-modal__dialog {
    max-height: calc(100svh - 28px);
  }

  .xianzong-modal__detail {
    min-height: 290px;
    padding: 32px 28px;
  }

  .xianzong-modal__payment {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xianzong-modal,
  .xianzong-modal__dialog,
  .xianzong-modal__close,
  .xianzong-modal__wechat {
    transition: none !important;
  }
}
