:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0c0d0f;
  --ink: #f5f5f2;
  --muted: #a7a7a0;
  --subtle: #6f726e;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --panel: rgba(255, 255, 255, 0.06);
  --silver: #d7d9d4;
  --accent: #89d8ff;
  --green: #b8f05c;
  --hot: #ff3da1;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.shiny-text {
  display: inline-block;
  background-image: linear-gradient(120deg, #b5b5b5 0%, #d2d4d1 34%, #ffffff 50%, #d2d4d1 66%, #b5b5b5 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyText 3.8s linear infinite;
}

@keyframes shinyText {
  from {
    background-position: 160% center;
  }
  to {
    background-position: -60% center;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 38px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.72), rgba(5, 5, 6, 0));
  transition:
    background 240ms var(--ease),
    border-color 240ms var(--ease),
    padding 240ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 3px;
  min-width: 180px;
}

.brand span {
  font-size: 0.95rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 128px max(38px, calc((100vw - var(--max)) / 2)) 54px;
}

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

.hero-media {
  z-index: -2;
  background: #111;
}

.galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.12) brightness(0.32) blur(0.2px);
  transform: scale(1.03);
  animation: heroDrift 16s var(--ease) infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 68% 36%, rgba(137, 216, 255, 0.13), rgba(5, 5, 6, 0.02) 32%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.64) 46%, rgba(5, 5, 6, 0.42) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.22) 48%, rgba(5, 5, 6, 0.78) 100%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 8px, 0);
  }
}

.hero-content {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
}

.hero-interface {
  position: relative;
  width: min(980px, calc(100vw - 76px));
  min-height: clamp(360px, 38vw, 520px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  padding: clamp(42px, 5vw, 74px) 48px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.32);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px) saturate(1.15);
}

.hero-interface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 100% 33.333%, 33.333% 100%;
  opacity: 0.36;
  pointer-events: none;
}

.hero-interface::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.hero-frame-bar,
.hero-frame-footer {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-frame-bar {
  top: 14px;
}

.hero-frame-footer {
  bottom: 14px;
}

.hero-label,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-weight: 740;
  text-wrap: balance;
}

.hero-name {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.hero-name-cn {
  display: block;
  font-size: clamp(4.6rem, 7.2vw, 7.6rem);
  line-height: 0.88;
  font-weight: 860;
}

.hero-name-en {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(137, 216, 255, 0.08);
  font-size: clamp(1rem, 1.42vw, 1.46rem);
  line-height: 1;
  font-weight: 760;
}

.hero-line {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.24vw, 1.28rem);
  line-height: 1.6;
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.82rem, 0.82vw, 0.96rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-location {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--ink);
  font-weight: 700;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0.34);
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link.muted {
  color: var(--muted);
}

.hero-stage {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0 9px, transparent 9px 18px, #111 18px 27px, transparent 27px),
    linear-gradient(#fff 0 9px, transparent 9px 18px, #111 18px 27px, transparent 27px);
  opacity: 0.54;
  mix-blend-mode: screen;
}

.hero-stage::before {
  top: 0;
  left: 0;
}

.hero-stage::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.stage-top,
.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stage-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #08090a;
}

.stage-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36)),
    linear-gradient(90deg, rgba(255, 61, 161, 0.18), transparent 18%, transparent 80%, rgba(137, 216, 255, 0.18));
  pointer-events: none;
}

.stage-screen img,
.stage-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05) brightness(0.86);
}

.stage-caption {
  padding: 12px 2px 0;
  text-transform: none;
}

.stage-caption strong {
  color: #fff;
  font-size: 0.92rem;
}

.stage-caption span {
  color: var(--accent);
  white-space: nowrap;
}

.section {
  width: min(var(--max), calc(100vw - 76px));
  margin: 0 auto;
  padding: 112px 0;
}

.intro-band {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 84px max(38px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(137, 216, 255, 0.12), rgba(255, 255, 255, 0.02) 34%, rgba(184, 240, 92, 0.06)),
    #08090a;
  overflow: hidden;
  cursor: default;
}

.intro-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 900ms var(--ease);
  pointer-events: none;
}

.intro-band:hover::after {
  transform: translateX(100%);
}

.intro-band p {
  width: min(1180px, 100%);
  max-width: none;
  margin: 0;
  color: #f4f4ef;
  font-size: clamp(1.05rem, 1.28vw, 1.34rem);
  line-height: 1.62;
  font-weight: 680;
  white-space: normal;
  text-wrap: balance;
  transition:
    color 260ms var(--ease),
    transform 420ms var(--ease);
}

.intro-band:hover p {
  color: #fff;
  transform: translateX(12px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.about-copy h2,
.contact-section h2,
.detail-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 2.7rem;
  line-height: 1.12;
}

.section-head p {
  width: min(420px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.channels-section .section-head {
  gap: 46px;
}

.channels-section .section-head p {
  width: min(780px, 52vw);
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.85;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.filter:hover,
.filter.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(420px, 1.02fr);
  align-items: stretch;
  min-height: 292px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-align: left;
  background: #121315;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.32);
  background: #16181b;
}

.project-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 100%;
  overflow: hidden;
  background: #090a0c;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.78);
  transition:
    transform 420ms var(--ease),
    filter 420ms var(--ease);
}

.project-card:hover .project-cover img {
  transform: scale(1.05);
  filter: saturate(0.96) contrast(1.08) brightness(0.9);
}

.project-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 19, 21, 0.42), rgba(18, 19, 21, 0));
  pointer-events: none;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 42px;
}

.project-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-copy strong {
  display: block;
  margin-top: 26px;
  color: #fff;
  font-size: clamp(1.7rem, 2.55vw, 3rem);
  line-height: 1.08;
  font-weight: 760;
  word-break: keep-all;
}

.project-copy em {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-weight: 700;
}

.view-case {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.project-card:hover .view-case {
  color: #050506;
  border-color: #fff;
  background: #fff;
}

.feature-detail {
  padding: 112px max(38px, calc((100vw - var(--max)) / 2));
  background: #f2f2ee;
  color: #090a0c;
}

.detail-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.detail-copy h2,
.detail-copy .section-kicker {
  color: #070809;
}

.detail-copy > p {
  margin: 16px 0 0;
  color: #424540;
  line-height: 1.86;
}

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

.highlight-list li {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: 13px;
  color: #171819;
  line-height: 1.7;
}

.detail-media {
  display: grid;
  gap: 12px;
}

.detail-media img,
.detail-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}

.about-section {
  padding-bottom: 86px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: center;
}

.about-portrait {
  border-radius: 8px;
  overflow: hidden;
  background: #101113;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.9) contrast(1.04);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.about-stats > div,
.about-stats > article {
  padding-top: 18px;
}

.about-stats strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.45;
}

.about-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.about-stats a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.experience-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-stats .experience-time {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.interest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.interest-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.company-panel {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 42px;
  margin-top: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(137, 216, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #08090a;
}

.company-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 1.54rem;
}

.company-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.service-grid article {
  min-height: 240px;
  padding: 24px;
  background: #08090a;
}

.service-grid span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-grid h3 {
  margin: 38px 0 12px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.34;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.channels-section {
  padding: 112px max(38px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #0a0b0d;
}

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

.channel-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #101113;
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease);
}

.channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.channel-card small {
  color: var(--accent);
  font-weight: 700;
}

.channel-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.65rem;
}

.channel-card p {
  width: min(480px, 100%);
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.channel-video {
  position: relative;
  display: block;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050607;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.channel-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.channel-video span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
}

.channel-video:hover img {
  transform: scale(1.04);
}

.channel-video:hover {
  border-color: rgba(137, 216, 255, 0.62);
  box-shadow: 0 0 30px rgba(137, 216, 255, 0.12);
}

.channel-video:hover span {
  color: #050506;
  background: var(--accent);
}

.channel-action {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.channel-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px 6px 6px;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.channel-action:hover {
  color: #050506;
  background: var(--accent);
}

.bili-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(137, 216, 255, 0.42);
  border-radius: 8px;
  padding: 4px;
  background: rgba(137, 216, 255, 0.14);
  object-fit: contain;
}

.contact-section {
  padding: 120px max(38px, calc((100vw - var(--max)) / 2));
  background: #f6f6f2;
  color: #070809;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 60px;
  align-items: start;
}

.contact-section .section-kicker,
.contact-section h2 {
  color: #070809;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list > a,
.contact-list > span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  color: #171819;
  font-size: 1.05rem;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    padding-left 180ms var(--ease);
}

.contact-list > a:hover {
  color: #008ad8;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.contact-link {
  gap: 12px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.contact-link:hover .brand-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 138, 216, 0.18);
}

.contact-label {
  display: inline-block;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.project-modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-panel {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: auto;
  background: #090a0c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.icon-button {
  position: sticky;
  top: 18px;
  left: calc(100% - 58px);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 10, 0.78);
  cursor: pointer;
}

.icon-button span {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.icon-button span:first-child {
  transform: rotate(45deg);
}

.icon-button span:last-child {
  transform: rotate(-45deg);
}

.modal-content {
  padding: 0 38px 56px;
}

.modal-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: end;
  margin-top: -14px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.modal-hero h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.modal-hero p {
  color: var(--muted);
  line-height: 1.86;
}

.modal-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.modal-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.modal-body {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  padding-top: 42px;
}

.modal-body h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
}

.modal-body ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-body li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack video,
.media-stack img {
  width: 100%;
  border-radius: 8px;
  background: #111;
}

.media-stack video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-stack img {
  height: auto;
  object-fit: contain;
}

.sticker-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f4f0;
}

.media-stack .sticker-image {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 6px;
  background: #f4f4f0;
}

.bilibili-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(137, 216, 255, 0.34);
  border-radius: 8px;
  padding: 16px;
  background: rgba(137, 216, 255, 0.08);
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.bilibili-link:hover {
  transform: translateY(-2px);
  border-color: rgba(137, 216, 255, 0.62);
  background: rgba(137, 216, 255, 0.13);
}

.bilibili-mark {
  min-width: 82px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: #00aeec;
  font-size: 0.9rem;
  font-weight: 800;
}

.bilibili-link strong {
  display: block;
  color: #fff;
  line-height: 1.45;
}

.bilibili-link small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.project-modal {
  background: #000;
}

.modal-backdrop {
  display: none;
}

.modal-panel {
  inset: 0;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.icon-button {
  position: fixed;
  top: 22px;
  right: 22px;
  left: auto;
  z-index: 8;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(137, 216, 255, 0.68);
  background: rgba(137, 216, 255, 0.2);
}

.modal-content {
  padding: 0;
}

.detail-hero-full {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.detail-hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 50% 45%, transparent 0, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

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

.detail-hero-media video,
.detail-hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.88) contrast(1.08);
}

.detail-hero-video {
  cursor: pointer;
}

.detail-fullscreen-button {
  position: absolute;
  top: 22px;
  right: 78px;
  z-index: 7;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.detail-fullscreen-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.74);
}

.detail-fullscreen-button span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-color: #fff;
  border-style: solid;
}

.detail-fullscreen-button span:nth-child(1) {
  top: 11px;
  left: 11px;
  border-width: 2px 0 0 2px;
}

.detail-fullscreen-button span:nth-child(2) {
  top: 11px;
  right: 11px;
  border-width: 2px 2px 0 0;
}

.detail-fullscreen-button span:nth-child(3) {
  right: 11px;
  bottom: 11px;
  border-width: 0 2px 2px 0;
}

.detail-fullscreen-button span:nth-child(4) {
  bottom: 11px;
  left: 11px;
  border-width: 0 0 2px 2px;
}

.detail-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 64px));
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding: 0 0 7.5vh;
  text-align: left;
  pointer-events: none;
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease),
    filter 560ms var(--ease);
}

.modal-content.is-copy-hidden .detail-hero-copy {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
}

.detail-playline {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-hero-copy .modal-meta {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.detail-hero-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 8.2vw, 9rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.detail-title-en,
.detail-title-cn {
  display: block;
}

.detail-title-en {
  max-width: min(1180px, calc(100vw - 72px));
}

.detail-title-cn {
  margin-top: 0.04em;
  font-size: 0.72em;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
}

.detail-hero-description {
  width: min(720px, 100%);
  max-height: 7.2em;
  margin: 20px 0 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.9);
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.78;
}

/* 2026 visual system: restrained tech editorial */
.site-header {
  border-bottom: 1px solid rgba(184, 240, 92, 0.12);
  background: rgba(3, 5, 4, 0.56);
  backdrop-filter: blur(18px) saturate(1.12);
}

.site-nav {
  border-color: rgba(184, 240, 92, 0.18);
  background: rgba(8, 12, 9, 0.58);
}

.site-nav a:hover {
  color: #071006;
  background: var(--green);
}

.hero {
  align-items: stretch;
  padding-top: 112px;
  background: #020403;
}

.hero-media img {
  opacity: 0.18;
  filter: saturate(0.45) contrast(1.2) brightness(0.22);
}

.galaxy-canvas {
  opacity: 0.42;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 82% 45%, rgba(184, 240, 92, 0.3), rgba(25, 54, 28, 0.1) 25%, transparent 55%),
    linear-gradient(90deg, #020403 0%, rgba(2, 4, 3, 0.96) 42%, rgba(2, 5, 3, 0.5) 100%),
    linear-gradient(0deg, #020403 0%, transparent 38%, rgba(2, 4, 3, 0.54) 100%);
}

.hero-interface {
  width: 100%;
  min-height: calc(100svh - 166px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 0;
  padding: clamp(72px, 9vw, 128px) 0 42px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.hero-interface::before {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(184, 240, 92, 0.08) 58%, transparent);
  opacity: 0.88;
}

.hero-interface::after {
  display: none;
}

.hero-frame-bar {
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  line-height: 1.3;
}

.hero-frame-bar span:nth-child(2) {
  text-align: center;
}

.hero-frame-bar span:nth-child(3) {
  text-align: right;
}

.hero-name {
  justify-items: start;
  gap: 6px;
}

.hero-name-cn {
  font-size: clamp(4.8rem, 9vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-name-en {
  min-height: 0;
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 620;
}

.hero-line {
  width: auto;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
}

.hero-location {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.platform-section {
  padding: 112px max(38px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #050605;
}

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

.platform-card {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #0a0b0a;
  transition: border-color 260ms var(--ease), transform 260ms var(--ease);
}

.platform-cover,
.platform-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.platform-cover {
  object-fit: cover;
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.platform-shade {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.84));
}

.platform-copy {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
}

.platform-logo {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  object-fit: cover;
  background: #fff;
}

.platform-copy small,
.platform-copy strong {
  display: block;
}

.platform-copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.platform-copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}

.platform-copy i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.platform-card:hover {
  border-color: rgba(184, 240, 92, 0.7);
  transform: translateY(-4px);
}

.platform-card:hover .platform-cover {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04);
}

.platform-card:hover .platform-copy i {
  color: #071006;
  background: var(--green);
}

.awards-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  margin-top: 78px;
  border-top: 1px solid var(--line-strong);
  padding-top: 40px;
}

.awards-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.95;
}

.awards-heading p {
  width: min(330px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.awards-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: awards;
}

.awards-list li {
  counter-increment: awards;
  min-height: 68px;
  display: grid;
  grid-template-columns: 2.4rem minmax(160px, 0.8fr) 1.2fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  transition: color 200ms var(--ease), background 200ms var(--ease), padding 200ms var(--ease);
}

.awards-list li::before {
  content: counter(awards, decimal-leading-zero);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
}

.award-level {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
}

.awards-list strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.awards-list li:hover {
  padding-inline: 10px;
  background: rgba(184, 240, 92, 0.055);
}

.awards-list li:hover strong {
  color: #fff;
}

.detail-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 116px max(32px, calc((100vw - var(--max)) / 2));
  background: #000;
}

.detail-story h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.42rem;
}

.detail-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.detail-highlights ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-highlights li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.detail-gallery {
  columns: 3 360px;
  column-gap: 22px;
  padding: 0 32px 96px;
  background: #000;
}

.media-tile,
.sticker-image-link {
  position: relative;
  display: block;
  margin: 0 0 22px;
  break-inside: avoid;
  overflow: hidden;
  background: #0b0c0e;
}

.media-tile img,
.sticker-image-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.media-open {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    background 220ms var(--ease);
}

.media-tile:hover .media-open,
.sticker-image-link:hover .media-open {
  opacity: 1;
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.72);
}

.detail-gallery .sticker-row {
  break-inside: avoid;
  margin: 0 0 22px;
  background: #f4f4f0;
}

.detail-gallery .sticker-image {
  max-height: 320px;
  object-fit: contain;
  background: #f4f4f0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .brand small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 128px 22px 28px;
  }

  .hero h1 {
    font-size: 4.1rem;
    white-space: normal;
  }

  .hero-interface {
    width: min(900px, calc(100vw - 44px));
    padding: 52px 28px;
  }

  .hero-name-cn {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .hero-name-en {
    min-height: 38px;
    font-size: 1.18rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-copy,
  .hero-line {
    white-space: normal;
  }

  .hero-location {
    right: auto;
    bottom: auto;
  }

  .section {
    width: calc(100vw - 44px);
    padding-block: 86px;
  }

  .intro-band,
  .feature-detail,
  .channels-section,
  .contact-section {
    padding-inline: 22px;
  }

  .intro-band p {
    font-size: 1.55rem;
  }

  .section-head,
  .about-grid,
  .detail-shell,
  .contact-inner,
  .modal-hero,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 94px;
  }

  .brand span {
    font-size: 0.82rem;
  }

  .site-nav {
    width: 100%;
    max-width: none;
    flex: 1;
    justify-content: space-between;
    overflow: visible;
    border-radius: 999px;
    padding: 4px;
  }

  .site-nav a {
    min-height: 31px;
    flex: 1;
    justify-content: center;
    padding: 0 5px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 94svh;
    padding: 110px 16px 22px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-interface {
    width: calc(100vw - 32px);
    min-height: 440px;
    padding: 58px 18px;
  }

  .hero-frame-bar,
  .hero-frame-footer {
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 4px;
    font-size: 0.58rem;
  }

  .hero-name-cn {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .hero-name-en {
    min-height: 34px;
    padding-inline: 14px;
    font-size: 1rem;
  }

  .hero-line {
    font-size: 1.03rem;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-location {
    right: auto;
    bottom: auto;
  }

  .stage-top,
  .stage-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .stage-caption span {
    white-space: normal;
  }

  .section {
    width: calc(100vw - 32px);
    padding-block: 72px;
  }

  .intro-band,
  .feature-detail,
  .channels-section,
  .contact-section {
    padding: 72px 16px;
  }

  .section-head h2,
  .about-copy h2,
  .contact-section h2,
  .detail-copy h2 {
    font-size: 2rem;
  }

  .intro-band p {
    font-size: 1.28rem;
    width: auto;
    white-space: normal;
  }

  .work-grid,
  .service-grid,
  .channel-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-copy {
    padding: 28px 24px;
  }

  .project-cover {
    min-height: 0;
  }

  .company-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-grid article {
    min-height: 190px;
  }

  .modal-panel {
    inset: 10px;
  }

  .modal-content {
    padding: 0 16px 34px;
  }

  .modal-hero h2 {
    font-size: 2rem;
  }
}

/* Continuous section transitions and calmer About spacing */
main > section:not(.hero):not(.contact-section) {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  backdrop-filter: none;
}

main > section:not(.hero):not(.contact-section)::before {
  content: "";
  position: absolute;
  top: -110px;
  bottom: -110px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 12, 0) 0%,
      rgba(2, 7, 14, 0.56) 14%,
      rgba(2, 7, 14, 0.82) 38%,
      rgba(2, 7, 14, 0.82) 68%,
      rgba(2, 6, 12, 0) 100%
    ),
    radial-gradient(ellipse at 50% 48%, rgba(7, 21, 34, 0.94), rgba(2, 7, 14, 0.4) 68%, transparent 94%);
}

.intro-band {
  border-block-color: rgba(104, 203, 255, 0.09);
}

.intro-band::before {
  opacity: 0.78;
}

.work-section,
.platform-section,
.about-section,
.channels-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-head {
  margin-bottom: 58px;
}

.about-grid {
  padding: 34px 22px 78px;
}

.about-stats {
  padding-bottom: 48px;
}

.experience-card strong {
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: nowrap;
}

.awards-panel {
  margin-top: 0;
  border-top-color: rgba(104, 203, 255, 0.16);
  border-bottom: 1px solid rgba(104, 203, 255, 0.1);
  padding: 72px 24px 64px;
  background: linear-gradient(180deg, rgba(72, 169, 255, 0.025), transparent 34%, rgba(72, 169, 255, 0.018));
}

.award-groups {
  padding-top: 8px;
}

.service-grid {
  margin-top: 52px;
}

.channels-section {
  border-top: 1px solid rgba(104, 203, 255, 0.08);
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 7, 14, 0.32), transparent);
  opacity: 0.38;
}

@media (max-width: 980px) {
  .experience-card strong {
    font-size: 0.9rem;
    white-space: normal;
  }

  .about-grid {
    padding-inline: 0;
  }

  .awards-panel {
    padding-inline: 0;
  }
}

@media (max-width: 700px) {
  .work-section,
  .platform-section,
  .about-section,
  .channels-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .about-grid {
    padding-bottom: 56px;
  }

  .awards-panel {
    padding-top: 54px;
    padding-bottom: 48px;
  }
}

/* High-end editorial opening and scroll choreography */
:root {
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-in: cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-opening {
  position: absolute;
  inset: 82px 0 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
  animation: openingLayerExit 100ms linear 2.75s forwards;
}

.hero-opening-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.1%;
  background: #02060c;
  animation-duration: 1.42s;
  animation-delay: 1.08s;
  animation-fill-mode: forwards;
  animation-timing-function: var(--motion-ease-in);
}

.hero-opening-panel-left {
  left: 0;
  animation-name: openingPanelLeft;
}

.hero-opening-panel-right {
  right: 0;
  animation-name: openingPanelRight;
}

.hero-opening-rule {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 0;
  background: rgba(112, 204, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 28px rgba(72, 169, 255, 0.72);
  animation: openingRule 1.9s var(--motion-ease) 180ms forwards;
}

.hero-opening-label {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  color: rgba(224, 245, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 760;
  text-transform: uppercase;
  transform: translate(-50%, 28px);
  opacity: 0;
  animation: openingLabel 1.12s var(--motion-ease) 320ms forwards;
}

@keyframes openingPanelLeft {
  to { transform: translateX(-101%); }
}

@keyframes openingPanelRight {
  to { transform: translateX(101%); }
}

@keyframes openingRule {
  0% { height: 0; opacity: 0; }
  35% { height: 46%; opacity: 1; }
  70% { height: 72%; opacity: 1; }
  100% { height: 92%; opacity: 0; }
}

@keyframes openingLabel {
  0% { opacity: 0; transform: translate(-50%, 28px) scaleX(0.78); }
  45%, 76% { opacity: 1; transform: translate(-50%, 0) scaleX(1); }
  100% { opacity: 0; transform: translate(-50%, -12px) scaleX(1); }
}

@keyframes openingLayerExit {
  to { visibility: hidden; }
}

.hero-media .hero-background-video {
  animation-duration: 2.8s;
}

.hero [data-text-stage] {
  clip-path: inset(0 0 55% 0);
  transform: translate3d(0, 96px, 0) scaleX(0.82);
  transform-origin: left bottom;
  filter: blur(10px);
  animation-name: heroTitleUnmask;
  animation-duration: 1.35s;
  animation-timing-function: var(--motion-ease);
}

.hero [data-text-stage="1"] { animation-delay: 1.45s; }
.hero [data-text-stage="2"] { animation-delay: 1.68s; }
.hero [data-text-stage="3"] { animation-delay: 1.86s; }
.hero [data-text-stage="4"] { animation-delay: 2.02s; }

@keyframes heroTitleUnmask {
  0% {
    opacity: 0;
    clip-path: inset(0 0 55% 0);
    transform: translate3d(0, 96px, 0) scaleX(0.82);
    filter: blur(10px);
  }
  52% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, -8px, 0) scaleX(1.025);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scaleX(1);
    filter: blur(0);
  }
}

.editorial-title {
  clip-path: inset(0 0 55% 0);
  opacity: 0;
  transform: translate3d(0, 1.15em, 0) scaleX(0.78);
  transform-origin: left bottom;
  filter: blur(12px);
  transition:
    clip-path 1.3s var(--motion-ease),
    opacity 800ms ease,
    transform 1.3s var(--motion-ease),
    filter 1.15s var(--motion-ease);
}

.editorial-title.is-editorial-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
  filter: blur(0);
}

.masonry-frame {
  clip-path: inset(0 0 55% 0);
  opacity: 0;
  transform: translate3d(0, 112px, 0) scaleX(0.94) scaleY(0.96);
  transform-origin: center bottom;
  filter: blur(12px);
  transition:
    clip-path 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    opacity 900ms ease var(--masonry-delay, 0ms),
    transform 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    filter 1s var(--motion-ease) var(--masonry-delay, 0ms),
    border-color 320ms var(--ease),
    background 320ms var(--ease);
}

.masonry-frame.is-masonry-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.image-reveal-frame {
  --parallax-y: 0px;
  position: relative;
}

.image-reveal-frame .motion-parallax-image {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, calc(var(--parallax-y) + 26px), 0) scale(1.1);
  transition:
    clip-path 1.24s var(--motion-ease),
    transform 1.4s var(--motion-ease),
    filter 420ms var(--ease);
  will-change: transform;
}

.image-reveal-frame.is-image-revealed .motion-parallax-image {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.035);
}

.image-reveal-curtain {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(135deg, #071521, #123f61 62%, #48a9ff);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.15s var(--motion-ease) 90ms;
}

.image-reveal-frame.is-image-revealed .image-reveal-curtain {
  transform: scaleY(0);
}

.project-card:hover .project-cover .motion-parallax-image {
  transform: translate3d(0, var(--parallax-y), 0) scale(1.075);
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

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

/* In-page project image lightbox */
.media-open {
  top: 50%;
  right: 50%;
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
  transform: translate(50%, -50%) scale(0.72);
  backdrop-filter: blur(14px);
}

.media-tile:hover .media-open,
.media-tile:focus-visible .media-open,
.sticker-image-link:hover .media-open,
.sticker-image-link:focus-visible .media-open {
  transform: translate(50%, -50%) scale(1);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 54px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 520ms var(--motion-ease), visibility 0s linear 520ms;
}

.media-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 3, 8, 0.92);
  backdrop-filter: blur(24px) saturate(0.72);
  cursor: zoom-out;
}

.media-lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(1520px, calc(100vw - 108px));
  max-height: calc(100svh - 108px);
  margin: 0;
  overflow: hidden;
  transform: translateY(42px) scale(0.94);
  opacity: 0;
  transition: transform 720ms var(--motion-ease), opacity 520ms ease;
}

.media-lightbox.is-open .media-lightbox-stage {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.media-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 108px);
  object-fit: contain;
}

.media-lightbox-close {
  position: fixed;
  top: 24px;
  right: 30px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.media-lightbox-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.media-lightbox-close span:first-child { transform: rotate(45deg); }
.media-lightbox-close span:last-child { transform: rotate(-45deg); }

body.lightbox-open {
  overflow: hidden;
}

/* Align project close and fullscreen controls */
.icon-button,
.detail-fullscreen-button {
  top: 24px;
  width: 42px;
  height: 42px;
}

.detail-fullscreen-button {
  position: fixed;
}

@media (hover: none) {
  .media-open {
    opacity: 1;
    transform: translate(50%, -50%) scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-opening {
    display: none;
  }

  .editorial-title,
  .masonry-frame,
  .image-reveal-frame .motion-parallax-image {
    clip-path: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .image-reveal-curtain {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-opening {
    inset: 70px 0 0;
  }

  .media-lightbox {
    padding: 18px;
  }

  .media-lightbox-stage {
    max-width: calc(100vw - 36px);
    max-height: calc(100svh - 80px);
  }

  .media-lightbox-stage img {
    max-height: calc(100svh - 80px);
  }

  .media-lightbox-close,
  .icon-button,
  .detail-fullscreen-button {
    top: 16px;
  }
}

/* Cinematic motion overrides - keep at end of file. */

/* Final cinematic motion pass */
.motion-ready .section-head.reveal,
.motion-ready .intro-band.reveal,
.motion-ready .platform-grid.reveal,
.motion-ready .about-copy.reveal,
.motion-ready .awards-panel.reveal,
.motion-ready .service-grid.reveal,
.motion-ready .contact-inner.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.editorial-title {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translate3d(-96px, 0.7em, 0) scaleX(0.62) skewX(-5deg);
  transform-origin: left bottom;
  filter: blur(14px);
  transition:
    clip-path 1.5s var(--motion-ease),
    opacity 720ms ease,
    transform 1.5s var(--motion-ease),
    filter 1.25s var(--motion-ease);
  will-change: transform, clip-path, opacity;
}

.editorial-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.08em;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #70ccff, rgba(112, 204, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s var(--motion-ease) 420ms;
}

.editorial-title.is-editorial-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1) skewX(0);
  filter: blur(0);
}

.editorial-title.is-editorial-visible::after {
  transform: scaleX(1);
}

.motion-copy {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(8px);
  transition:
    clip-path 1.05s var(--motion-ease) var(--copy-delay, 0ms),
    opacity 720ms ease var(--copy-delay, 0ms),
    transform 1.05s var(--motion-ease) var(--copy-delay, 0ms),
    filter 900ms var(--motion-ease) var(--copy-delay, 0ms);
  will-change: transform, clip-path, opacity;
}

.motion-copy.is-motion-copy-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.masonry-frame {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translate3d(var(--masonry-x, 0), 126px, 0) scaleX(0.9) scaleY(0.95) rotate(var(--masonry-tilt, 0deg));
  transform-origin: center bottom;
  filter: blur(14px) saturate(0.62);
  transition:
    clip-path 1.28s var(--motion-ease) var(--masonry-delay, 0ms),
    opacity 840ms ease var(--masonry-delay, 0ms),
    transform 1.28s var(--motion-ease) var(--masonry-delay, 0ms),
    filter 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
  will-change: transform, clip-path, opacity;
}

.masonry-frame.is-masonry-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0) saturate(1);
}

.image-reveal-frame .motion-parallax-image {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(0, calc(var(--parallax-y) + 34px), 0) scale(1.12);
  transition:
    clip-path 1.42s var(--motion-ease) 120ms,
    transform 1.6s var(--motion-ease),
    filter 420ms var(--ease);
}

.image-reveal-frame.is-image-revealed .motion-parallax-image {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.045);
}

.image-reveal-curtain {
  background: linear-gradient(90deg, #06111d, #0f3b5c 62%, #70ccff);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.34s var(--motion-ease) 70ms;
}

.image-reveal-frame.is-image-revealed .image-reveal-curtain {
  transform: scaleX(0);
}

/* Project image controls live in the top-right corner. */
.media-open {
  top: 18px;
  right: 18px;
  left: auto;
  width: 54px;
  height: 54px;
  transform: scale(0.76);
  transform-origin: center;
  opacity: 0.78;
}

.media-tile:hover .media-open,
.media-tile:focus-visible .media-open,
.sticker-image-link:hover .media-open,
.sticker-image-link:focus-visible .media-open {
  transform: scale(1);
  opacity: 1;
  background: rgba(4, 13, 22, 0.78);
  border-color: rgba(112, 204, 255, 0.74);
  color: #70ccff;
}

@media (hover: none) {
  .media-open {
    opacity: 0.94;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-title,
  .motion-copy,
  .masonry-frame,
  .image-reveal-frame .motion-parallax-image {
    clip-path: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .editorial-title::after {
    transform: scaleX(1);
  }
}

@media (max-width: 700px) {
  .media-open {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .editorial-title {
    transform: translate3d(-46px, 0.55em, 0) scaleX(0.76);
  }

  .masonry-frame {
    --masonry-x: 0px !important;
    transform: translate3d(0, 76px, 0) scale(0.96);
  }
}

/* Performance pass: keep the cinematic motion on compositor-friendly properties. */
.site-header.is-scrolled,
.hero-interface,
.contact-section {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.94);
}

.hero-interface {
  background:
    linear-gradient(180deg, rgba(19, 31, 44, 0.76), rgba(4, 10, 17, 0.7)),
    rgba(0, 0, 0, 0.52);
}

.contact-section {
  background: rgba(245, 245, 242, 0.985) !important;
}

main > section:not(.hero):not(.intro-band) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero-media .hero-background-video {
  animation-name: heroVideoRevealComposited;
  animation-duration: 1.65s;
  will-change: transform, opacity;
}

.hero [data-text-stage] {
  filter: none !important;
  animation-duration: 1.05s;
  will-change: transform, clip-path, opacity;
}

.hero [data-text-stage="1"] { animation-delay: 1.08s; }
.hero [data-text-stage="2"] { animation-delay: 1.24s; }
.hero [data-text-stage="3"] { animation-delay: 1.38s; }
.hero [data-text-stage="4"] { animation-delay: 1.5s; }

.hero-opening {
  animation-delay: 1.92s;
}

.hero-opening-panel {
  animation-duration: 1.02s;
  animation-delay: 0.72s;
}

.hero-opening-rule {
  animation-duration: 1.42s;
  animation-delay: 100ms;
}

.hero-opening-label {
  animation-duration: 900ms;
  animation-delay: 220ms;
}

@keyframes heroVideoRevealComposited {
  from {
    opacity: 0;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes heroTitleUnmask {
  0% {
    opacity: 0;
    clip-path: inset(0 0 55% 0);
    transform: translate3d(0, 82px, 0) scaleX(0.84);
  }
  58% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, -5px, 0) scaleX(1.018);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

.editorial-title {
  filter: none !important;
  transition:
    clip-path 1.18s var(--motion-ease),
    opacity 650ms ease,
    transform 1.18s var(--motion-ease);
}

.motion-copy {
  filter: none !important;
  transition:
    clip-path 900ms var(--motion-ease) var(--copy-delay, 0ms),
    opacity 620ms ease var(--copy-delay, 0ms),
    transform 900ms var(--motion-ease) var(--copy-delay, 0ms);
}

.masonry-frame {
  filter: none !important;
  transition:
    clip-path 1.02s var(--motion-ease) var(--masonry-delay, 0ms),
    opacity 720ms ease var(--masonry-delay, 0ms),
    transform 1.02s var(--motion-ease) var(--masonry-delay, 0ms),
    border-color 280ms var(--ease),
    background 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.image-reveal-frame.is-image-revealed .motion-parallax-image {
  transition:
    transform 120ms linear,
    filter 260ms var(--ease);
}

.animated-work-list:has(.is-list-selected) .project-card:not(.is-list-selected) {
  filter: none;
  opacity: 0.72;
}

@media (max-width: 700px), (pointer: coarse) {
  .border-glow::after {
    display: none;
  }

  .hero-galaxy {
    opacity: 0.34;
  }
}

@media (max-width: 700px) {
  .modal-panel {
    inset: 0;
  }

  .modal-content {
    padding: 0;
  }

  .icon-button {
    top: 14px;
    right: 14px;
  }

  .detail-hero-copy {
    width: calc(100vw - 32px);
    padding-bottom: 56px;
  }

  .detail-hero-copy h2 {
    font-size: clamp(2.35rem, 15vw, 4.8rem);
  }

  .detail-title-cn {
    font-size: 0.68em;
  }

  .detail-hero-description {
    max-height: 7.2em;
    font-size: 0.82rem;
  }

  .detail-story {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 16px;
  }

  .detail-gallery {
    columns: 1;
    padding: 0 16px 72px;
  }

  .media-open {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .platform-section {
    padding-inline: 22px;
  }

  .awards-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 92svh;
    padding: 96px 16px 20px;
  }

  .hero-interface {
    width: 100%;
    min-height: calc(92svh - 116px);
    padding: 112px 0 34px;
  }

  .hero-frame-bar {
    left: 0;
    right: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    flex-direction: initial;
    gap: 10px;
    font-size: 0.5rem;
  }

  .hero-name-cn {
    font-size: clamp(3.9rem, 21vw, 5.6rem);
  }

  .hero-name-en {
    min-height: 0;
    padding: 0;
    font-size: 1.28rem;
  }

  .hero-line {
    width: min(310px, 100%);
    margin-top: 24px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .platform-section {
    padding: 72px 16px;
  }

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

  .platform-card {
    aspect-ratio: 16 / 9;
  }

  .platform-copy {
    left: 16px;
    right: 16px;
    bottom: 15px;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .platform-logo {
    width: 42px;
    height: 42px;
  }

  .awards-panel {
    margin-top: 58px;
    padding-top: 30px;
  }

  .awards-list li {
    min-height: 78px;
    grid-template-columns: 2rem 1fr;
    gap: 6px 10px;
    padding-block: 12px;
  }

  .awards-list li::before {
    grid-row: 1 / span 2;
  }

  .award-level,
  .awards-list strong {
    grid-column: 2;
  }
}

/* Blue HAOS-inspired hero and structured detail refinements */
:root {
  --green: #48a9ff;
}

.site-header {
  border-bottom-color: rgba(72, 169, 255, 0.16);
  background: rgba(2, 5, 10, 0.64);
}

.site-nav {
  border-color: rgba(72, 169, 255, 0.22);
  background: rgba(4, 10, 20, 0.62);
}

.site-nav a:hover {
  color: #03101c;
}

.hero {
  min-height: 100svh;
  align-items: stretch;
  padding: 112px max(38px, calc((100vw - var(--max)) / 2)) 34px;
  background: #010306;
}

.hero-media img {
  opacity: 1;
  filter: none;
  object-position: center;
  animation: heroBlueDrift 18s var(--ease) infinite alternate;
}

@keyframes heroBlueDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.035) translate3d(-8px, 0, 0);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 2, 6, 0.14), transparent 47%, rgba(1, 7, 16, 0.08)),
    linear-gradient(0deg, rgba(0, 2, 6, 0.4), transparent 30%);
}

.hero-content {
  height: 100%;
}

.hero-interface {
  width: 100%;
  min-height: calc(100svh - 146px);
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-interface::before {
  inset: auto auto 0 0;
  width: 270px;
  height: 1px;
  background: linear-gradient(90deg, #48a9ff 0 62%, rgba(72, 169, 255, 0.14) 62%);
  opacity: 1;
}

.hero-frame-bar {
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.5fr;
  gap: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  line-height: 1.25;
}

.hero-frame-bar span:nth-child(2),
.hero-frame-bar span:nth-child(3) {
  text-align: left;
}

.hero-frame-bar span:nth-child(3) {
  justify-self: end;
  min-width: 240px;
}

.hero-core {
  position: absolute;
  top: 27%;
  left: 0;
  width: min(390px, 34vw);
}

.hero-name {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.hero-name-cn {
  font-size: clamp(3.2rem, 5.1vw, 5.5rem);
  line-height: 0.92;
  font-weight: 820;
}

.hero-name-en {
  min-height: 0;
  border: 0;
  padding: 0;
  color: #48a9ff;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.25rem, 1.75vw, 1.9rem);
  font-weight: 650;
}

.hero-line {
  width: min(360px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  line-height: 1.72;
  white-space: normal;
}

.hero-center-mark {
  position: absolute;
  top: 31%;
  left: 51%;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.hero-index {
  position: absolute;
  left: 0;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 34px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-index strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(72, 169, 255, 0.13), rgba(255, 255, 255, 0.018) 40%, rgba(72, 169, 255, 0.045)),
    #06090e;
}

.intro-band p {
  font-size: clamp(0.86rem, 1.03vw, 1.06rem);
  white-space: nowrap;
  text-wrap: nowrap;
}

.platform-logo {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
}

.platform-copy {
  grid-template-columns: 54px 1fr auto;
}

.platform-card:hover {
  border-color: rgba(72, 169, 255, 0.76);
}

.platform-card:hover .platform-copy i {
  color: #03101c;
}

.awards-panel {
  display: block;
  margin-top: 78px;
  border-top: 1px solid var(--line-strong);
  padding-top: 0;
}

.awards-summary {
  min-height: 164px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 34px 0;
  cursor: pointer;
  list-style: none;
}

.awards-summary::-webkit-details-marker {
  display: none;
}

.awards-heading {
  display: grid;
  justify-items: start;
}

.awards-heading .section-kicker {
  margin-bottom: 10px;
}

.awards-heading strong {
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.awards-heading > span:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.awards-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.awards-toggle i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(72, 169, 255, 0.42);
  border-radius: 999px;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.awards-toggle i::before,
.awards-toggle i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #48a9ff;
  transform: translate(-50%, -50%);
}

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

.awards-panel[open] .awards-toggle i {
  transform: rotate(45deg);
  background: rgba(72, 169, 255, 0.12);
}

.awards-panel[open] .awards-toggle-label {
  font-size: 0;
}

.awards-panel[open] .awards-toggle-label::after {
  content: "收起奖项";
  font-size: 0.8rem;
}

.awards-list {
  width: min(820px, 100%);
  margin: 0 0 28px auto;
  border-bottom: 1px solid var(--line);
}

.award-level {
  color: #48a9ff;
}

.awards-list li:hover {
  background: rgba(72, 169, 255, 0.065);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  columns: initial;
  padding: 0 32px 96px;
}

.media-tile,
.sticker-image-link {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  margin: 0;
  overflow: hidden;
  background: #06080c;
}

.media-tile img,
.sticker-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #06080c;
}

.detail-gallery .sticker-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  background: transparent;
}

.detail-gallery .sticker-image {
  max-height: none;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-core {
    width: min(360px, 48vw);
  }

  .hero-center-mark {
    display: none;
  }

  .intro-band p {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 94svh;
    padding: 94px 16px 20px;
  }

  .hero-interface {
    min-height: calc(94svh - 114px);
    padding: 0;
  }

  .hero-frame-bar {
    top: 0;
    grid-template-columns: 0.8fr 0.5fr 1.35fr;
    gap: 10px;
    font-size: 0.45rem;
  }

  .hero-frame-bar span:nth-child(3) {
    min-width: 0;
  }

  .hero-core {
    top: 30%;
    width: min(300px, 86vw);
  }

  .hero-name-cn {
    font-size: clamp(3.5rem, 17vw, 4.9rem);
  }

  .hero-name-en {
    font-size: 1.26rem;
  }

  .hero-line {
    margin-top: 20px;
    font-size: 0.78rem;
  }

  .hero-index {
    bottom: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hero-index strong {
    font-size: 0.88rem;
  }

  .hero-interface::before {
    width: 230px;
  }

  .platform-logo {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .platform-copy {
    grid-template-columns: 46px 1fr auto;
  }

  .awards-summary {
    min-height: 142px;
    gap: 16px;
    padding: 28px 0;
  }

  .awards-heading strong {
    font-size: 2.7rem;
  }

  .awards-heading > span:last-child,
  .awards-toggle-label {
    display: none;
  }

  .awards-list {
    width: 100%;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px 72px;
  }

  .detail-gallery .sticker-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Cinematic horse hero and compact award taxonomy */
.hero {
  min-height: 100svh;
  padding: 104px 54px 34px;
  background: #1b1b1b;
}

.hero-media {
  inset: 82px 38px 28px;
  overflow: hidden;
  background: #000;
}

.hero-media img {
  transform: none;
  object-fit: cover;
  object-position: center;
  animation: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 5, 10, 0.18), transparent 32%);
}

.hero-content {
  width: 100%;
  height: 100%;
  padding: 0 76px;
}

.hero-interface {
  min-height: calc(100svh - 138px);
}

.hero-interface::before {
  display: none;
}

.hero-frame-bar {
  top: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
  font-weight: 500;
  text-transform: none;
  transform: translate3d(var(--meta-shift-x, 0), 0, 0);
  transition: transform 260ms var(--ease);
}

.hero-frame-bar span {
  position: relative;
  width: fit-content;
  padding-bottom: 7px;
  cursor: default;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.hero-frame-bar span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #64c5ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.hero-frame-bar span:hover {
  color: #91d8ff;
  transform: translateY(-2px);
}

.hero-frame-bar span:hover::after {
  transform: scaleX(1);
}

.hero-frame-bar span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.hero-frame-bar span:nth-child(3) {
  min-width: 0;
  justify-self: end;
  text-align: right;
}

.hero-core {
  top: 48%;
  width: min(390px, 38vw);
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  transition: transform 240ms var(--ease);
}

.hero-name {
  gap: 7px;
}

.hero-name-cn {
  font-size: clamp(3.2rem, 4.7vw, 5rem);
  line-height: 0.96;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.72);
  transition: color 220ms var(--ease), text-shadow 220ms var(--ease);
}

.hero-name:hover .hero-name-cn {
  color: #dff5ff;
  text-shadow: 0 0 26px rgba(72, 169, 255, 0.38);
}

.hero-name-en {
  color: #70ccff;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

.hero-line {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.hero-line small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.awards-panel {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 54px;
  margin-top: 72px;
  border-top: 1px solid var(--line-strong);
  padding-top: 34px;
}

.awards-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 0.96;
}

.awards-heading p {
  margin-top: 14px;
  font-size: 0.86rem;
}

.award-groups {
  display: grid;
  gap: 22px;
}

.award-group {
  border-top: 1px solid var(--line);
  padding-top: 11px;
}

.award-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.award-group h3 span {
  color: #48a9ff;
  font-size: 0.66rem;
}

.award-group .awards-list {
  width: 100%;
  margin: 0;
  border-bottom: 0;
  counter-reset: none;
}

.award-group .awards-list li {
  min-height: 42px;
  grid-template-columns: 76px minmax(0, 1fr) 74px;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding: 5px 0;
}

.award-group .awards-list li::before {
  display: none;
  content: none;
}

.award-group .award-level {
  color: #66b9ff;
  font-size: 0.72rem;
  font-weight: 760;
}

.award-group .awards-list strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  line-height: 1.42;
}

.award-group time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-align: right;
}

.award-group .awards-list li:hover {
  padding-inline: 8px;
  background: rgba(72, 169, 255, 0.065);
}

@media (max-width: 980px) {
  .hero {
    padding-inline: 30px;
  }

  .hero-media {
    inset-inline: 20px;
  }

  .hero-content {
    padding-inline: 34px;
  }

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

@media (max-width: 700px) {
  .hero {
    min-height: 94svh;
    padding: 82px 12px 18px;
  }

  .hero-media {
    inset: 70px 10px 14px;
  }

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

  .hero-content {
    padding: 0 22px;
  }

  .hero-interface {
    min-height: calc(94svh - 100px);
  }

  .hero-frame-bar {
    top: 18px;
    gap: 8px;
    font-size: 0.52rem;
  }

  .hero-core {
    top: 54%;
    width: min(290px, 78vw);
  }

  .hero-name-cn {
    font-size: clamp(3.2rem, 16vw, 4.3rem);
  }

  .hero-line {
    margin-top: 20px;
    font-size: 0.74rem;
  }

  .hero-line small {
    font-size: 0.58rem;
  }

  .awards-panel {
    margin-top: 54px;
    padding-top: 26px;
  }

  .award-groups {
    gap: 18px;
  }

  .award-group .awards-list li {
    min-height: 58px;
    grid-template-columns: 62px minmax(0, 1fr) 58px;
    gap: 8px;
  }

  .award-group .awards-list strong {
    font-size: 0.76rem;
  }
}

/* Final spacing adjustments */
.hero {
  padding-inline: 0;
  padding-bottom: 0;
  background: #000;
}

.hero-media {
  inset: 82px 0 0;
}

.hero-content {
  padding-inline: max(112px, calc((100vw - var(--max)) / 2 + 40px));
}

.awards-panel {
  grid-template-columns: 0.38fr 1.62fr;
}

.awards-heading h2 {
  white-space: nowrap;
  font-size: clamp(2.5rem, 3.7vw, 4rem);
}

@media (max-width: 980px) {
  .hero-content {
    padding-inline: 60px;
  }

  .awards-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-inline: 0;
    padding-bottom: 0;
  }

  .hero-media {
    inset: 70px 0 0;
  }

  .hero-content {
    padding-inline: 34px;
  }

  .awards-heading h2 {
    font-size: 2.7rem;
  }
}

/* Numbered 1920 × 1080 project image set */
.media-tile,
.sticker-image-link {
  aspect-ratio: 16 / 9;
}

.media-tile img,
.sticker-image-link img {
  object-fit: cover;
}

.contact-section h2 {
  max-width: 640px;
  font-size: clamp(1.8rem, 2.25vw, 2.3rem);
  line-height: 1.24;
  font-weight: 740;
}

@media (max-width: 700px) {
  .contact-section h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
}

/* Cinematic video hero, staged type and pointer-following border glow */
.hero-media .hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  filter: saturate(0.9) contrast(1.06) brightness(0.76);
  animation: heroVideoReveal 1.8s var(--ease) both;
}

.hero-galaxy {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 5, 12, 0.64) 0%, rgba(0, 8, 18, 0.16) 47%, rgba(0, 4, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 8, 18, 0.56) 0%, transparent 38%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  z-index: 3;
}

@keyframes heroVideoReveal {
  from {
    opacity: 0;
    transform: scale(1.07);
    filter: saturate(0.45) contrast(1.18) brightness(0.28) blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
    filter: saturate(0.9) contrast(1.06) brightness(0.76) blur(0);
  }
}

.hero [data-text-stage] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  animation: heroTextStage 900ms var(--ease) forwards;
}

.hero [data-text-stage="1"] {
  animation-delay: 420ms;
}

.hero [data-text-stage="2"] {
  animation-delay: 720ms;
}

.hero [data-text-stage="3"] {
  animation-delay: 980ms;
}

.hero [data-text-stage="4"] {
  animation-delay: 1220ms;
}

@keyframes heroTextStage {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.text-type-content {
  white-space: pre-wrap;
}

.text-type-cursor {
  display: inline-block;
  margin-left: 3px;
  color: #70ccff;
  animation: textTypeCursor 620ms ease-in-out infinite alternate;
}

[data-text-type].is-typed .text-type-cursor {
  animation-duration: 900ms;
}

@keyframes textTypeCursor {
  to {
    opacity: 0.12;
  }
}

.border-glow {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  position: relative;
  isolation: isolate;
}

.border-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 4;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: radial-gradient(
    160px circle at var(--glow-x) var(--glow-y),
    rgba(160, 225, 255, 0.98) 0%,
    rgba(72, 169, 255, 0.76) 28%,
    rgba(72, 169, 255, 0.18) 54%,
    transparent 74%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glow-opacity);
  transition: opacity 420ms var(--ease);
}

.border-glow::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    110px circle at var(--glow-x) var(--glow-y),
    rgba(72, 169, 255, 0.17),
    transparent 70%
  );
  opacity: var(--glow-opacity);
  filter: blur(8px);
  transition: opacity 520ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-background-video {
    animation: none;
  }

  .hero [data-text-stage] {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .hero-galaxy {
    opacity: 0.24;
  }
}

@media (max-width: 700px) {
  .hero-media .hero-background-video {
    object-position: 58% center;
  }

  .hero-galaxy {
    opacity: 0.42;
  }
}

/* Plasma background outside Home */
.site-plasma-shell {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #02060c;
  pointer-events: none;
}

.site-plasma-canvas,
.site-plasma-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-plasma-canvas.is-fallback {
  background:
    radial-gradient(circle at 74% 28%, rgba(59, 197, 246, 0.18), transparent 38%),
    radial-gradient(circle at 22% 72%, rgba(30, 104, 210, 0.14), transparent 36%);
}

.site-plasma-vignette {
  background:
    radial-gradient(circle at center, transparent 18%, rgba(0, 3, 8, 0.36) 72%, rgba(0, 2, 6, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 3, 8, 0.12), rgba(0, 3, 8, 0.58));
}

body,
main {
  background: transparent;
}

main {
  position: relative;
  z-index: 1;
}

main > section:not(.hero) {
  position: relative;
  background: rgba(2, 6, 12, 0.76);
  backdrop-filter: blur(3px);
}

.contact-section {
  background: rgba(245, 245, 242, 0.94) !important;
  backdrop-filter: blur(18px) saturate(0.84);
}

.project-modal,
.modal-panel {
  background: rgba(0, 3, 8, 0.88);
}

.detail-story,
.detail-gallery {
  background: rgba(0, 3, 8, 0.72);
}

/* Masonry-inspired staggered frame entrance */
.masonry-frame {
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(0.975);
  filter: blur(10px);
  transition:
    opacity 680ms var(--ease) var(--masonry-delay, 0ms),
    transform 680ms var(--ease) var(--masonry-delay, 0ms),
    filter 680ms var(--ease) var(--masonry-delay, 0ms),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
  will-change: opacity, transform, filter;
}

.masonry-frame.is-masonry-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.masonry-frame.is-masonry-visible:hover {
  transform: translate3d(0, -4px, 0) scale(0.992);
}

/* AnimatedList behavior for Selected Works */
.animated-work-list {
  position: relative;
  outline: none;
}

.animated-work-list::before,
.animated-work-list::after {
  content: "";
  position: sticky;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 34px;
  pointer-events: none;
  opacity: 0.72;
}

.animated-work-list::before {
  top: 78px;
  margin-bottom: -34px;
  background: linear-gradient(180deg, rgba(2, 6, 12, 0.94), transparent);
}

.animated-work-list::after {
  bottom: 0;
  margin-top: -34px;
  background: linear-gradient(0deg, rgba(2, 6, 12, 0.94), transparent);
}

.animated-work-list .project-card {
  transform-origin: center;
  transition:
    transform 300ms var(--ease),
    opacity 300ms var(--ease),
    border-color 300ms var(--ease),
    box-shadow 300ms var(--ease),
    filter 300ms var(--ease);
}

.animated-work-list:has(.is-list-selected) .project-card:not(.is-list-selected) {
  opacity: 0.62;
  filter: saturate(0.58) brightness(0.72);
  transform: scale(0.985);
}

.animated-work-list .project-card.is-list-selected {
  z-index: 2;
  border-color: rgba(104, 203, 255, 0.78);
  box-shadow: 0 18px 70px rgba(30, 126, 210, 0.18);
  transform: translateY(-4px) scale(1.005);
}

/* Project detail controls */
.icon-button {
  top: 24px;
  right: auto;
  left: max(30px, calc((100vw - var(--max)) / 2 + 12px));
}

.detail-fullscreen-button {
  right: max(30px, calc((100vw - var(--max)) / 2 + 12px));
}

@media (prefers-reduced-motion: reduce) {
  .masonry-frame {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 700px) {
  .icon-button {
    top: 16px;
    right: auto;
    left: 18px;
  }

  .detail-fullscreen-button {
    right: 18px;
  }

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

/* Final authoritative motion and section continuity layer */
.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.hero [data-text-stage] {
  opacity: 0;
  clip-path: inset(0 0 55% 0);
  transform: translate3d(0, 96px, 0) scaleX(0.82);
  transform-origin: left bottom;
  filter: blur(10px);
  animation: heroTitleUnmask 1.35s var(--motion-ease) forwards;
}

.hero [data-text-stage="1"] { animation-delay: 1.45s; }
.hero [data-text-stage="2"] { animation-delay: 1.68s; }
.hero [data-text-stage="3"] { animation-delay: 1.86s; }
.hero [data-text-stage="4"] { animation-delay: 2.02s; }

.masonry-frame {
  clip-path: inset(0 0 55% 0);
  opacity: 0;
  transform: translate3d(0, 112px, 0) scaleX(0.94) scaleY(0.96);
  transform-origin: center bottom;
  filter: blur(12px);
  transition:
    clip-path 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    opacity 900ms ease var(--masonry-delay, 0ms),
    transform 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    filter 1s var(--motion-ease) var(--masonry-delay, 0ms),
    border-color 320ms var(--ease),
    background 320ms var(--ease);
}

.masonry-frame.is-masonry-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

main > section:not(.hero):not(.contact-section) {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  backdrop-filter: none;
}

main > section:not(.hero):not(.contact-section)::before {
  content: "";
  position: absolute;
  top: -110px;
  bottom: -110px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 12, 0) 0%,
      rgba(2, 7, 14, 0.54) 14%,
      rgba(2, 7, 14, 0.82) 38%,
      rgba(2, 7, 14, 0.82) 68%,
      rgba(2, 6, 12, 0) 100%
    ),
    radial-gradient(ellipse at 50% 48%, rgba(7, 21, 34, 0.92), rgba(2, 7, 14, 0.38) 70%, transparent 95%);
}

.intro-band {
  border-block-color: rgba(104, 203, 255, 0.09);
}

.work-section,
.platform-section,
.about-section,
.channels-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-head {
  margin-bottom: 58px;
}

.about-grid {
  padding: 34px 22px 78px;
}

.about-stats {
  padding-bottom: 48px;
}

.experience-card strong {
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: nowrap;
}

.awards-panel {
  margin-top: 0;
  border-top-color: rgba(104, 203, 255, 0.16);
  border-bottom: 1px solid rgba(104, 203, 255, 0.1);
  padding: 72px 24px 64px;
  background: linear-gradient(180deg, rgba(72, 169, 255, 0.025), transparent 34%, rgba(72, 169, 255, 0.018));
}

.award-groups {
  padding-top: 8px;
}

.service-grid {
  margin-top: 52px;
}

.channels-section {
  border-top-color: rgba(104, 203, 255, 0.08);
}

.detail-fullscreen-button {
  position: fixed;
  top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-text-stage],
  .masonry-frame {
    clip-path: none;
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

@media (max-width: 980px) {
  .experience-card strong {
    font-size: 0.9rem;
    white-space: normal;
  }

  .about-grid,
  .awards-panel {
    padding-inline: 0;
  }
}

@media (max-width: 700px) {
  .work-section,
  .platform-section,
  .about-section,
  .channels-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .about-grid {
    padding-bottom: 56px;
  }

  .awards-panel {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .detail-fullscreen-button {
    top: 16px;
  }
}

/* True end-of-file cinematic overrides. */
.editorial-title.is-editorial-visible,
.motion-copy.is-motion-copy-visible,
.masonry-frame.is-masonry-visible,
.image-reveal-frame.is-image-revealed .motion-parallax-image {
  will-change: auto !important;
}

.editorial-title::after {
  display: none !important;
}

.channels-section .section-head {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
  gap: 38px;
}

.channels-section .section-head h2 {
  font-size: 2.15rem;
  white-space: nowrap;
}

.channels-section .section-head p {
  width: 100%;
  max-width: none;
}

#work .project-card.masonry-frame:not(.is-masonry-visible) {
  clip-path: inset(0 0 0 100%);
  transform: translate3d(180px, 0, 0) scaleX(0.92) scaleY(0.98);
}

#work .project-card.masonry-frame.is-masonry-visible {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 700px) {
  .channels-section .section-head {
    display: flex;
    gap: 22px;
  }

  .channels-section .section-head h2 {
    font-size: 1.65rem;
    white-space: nowrap;
  }
}

.motion-ready .section-head.reveal,
.motion-ready .intro-band.reveal,
.motion-ready .platform-grid.reveal,
.motion-ready .about-copy.reveal,
.motion-ready .awards-panel.reveal,
.motion-ready .service-grid.reveal,
.motion-ready .contact-inner.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.editorial-title {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translate3d(-96px, 0.7em, 0) scaleX(0.62) skewX(-5deg);
  transform-origin: left bottom;
  filter: blur(14px);
  transition:
    clip-path 1.5s var(--motion-ease),
    opacity 720ms ease,
    transform 1.5s var(--motion-ease),
    filter 1.25s var(--motion-ease);
  will-change: transform, clip-path, opacity;
}

.editorial-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.08em;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #70ccff, rgba(112, 204, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s var(--motion-ease) 420ms;
}

.editorial-title.is-editorial-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1) skewX(0);
  filter: blur(0);
}

.editorial-title.is-editorial-visible::after {
  transform: scaleX(1);
}

.motion-copy {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(8px);
  transition:
    clip-path 1.05s var(--motion-ease) var(--copy-delay, 0ms),
    opacity 720ms ease var(--copy-delay, 0ms),
    transform 1.05s var(--motion-ease) var(--copy-delay, 0ms),
    filter 900ms var(--motion-ease) var(--copy-delay, 0ms);
  will-change: transform, clip-path, opacity;
}

.motion-copy.is-motion-copy-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.masonry-frame {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translate3d(var(--masonry-x, 0), 126px, 0) scaleX(0.9) scaleY(0.95) rotate(var(--masonry-tilt, 0deg));
  transform-origin: center bottom;
  filter: blur(14px) saturate(0.62);
  transition:
    clip-path 1.28s var(--motion-ease) var(--masonry-delay, 0ms),
    opacity 840ms ease var(--masonry-delay, 0ms),
    transform 1.28s var(--motion-ease) var(--masonry-delay, 0ms),
    filter 1.1s var(--motion-ease) var(--masonry-delay, 0ms),
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
  will-change: transform, clip-path, opacity;
}

.masonry-frame.is-masonry-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0) saturate(1);
}

.image-reveal-frame .motion-parallax-image {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(0, calc(var(--parallax-y) + 34px), 0) scale(1.12);
  transition:
    clip-path 1.42s var(--motion-ease) 120ms,
    transform 1.6s var(--motion-ease),
    filter 420ms var(--ease);
}

.image-reveal-frame.is-image-revealed .motion-parallax-image {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.045);
}

.image-reveal-curtain {
  background: linear-gradient(90deg, #06111d, #0f3b5c 62%, #70ccff);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.34s var(--motion-ease) 70ms;
}

.image-reveal-frame.is-image-revealed .image-reveal-curtain {
  transform: scaleX(0);
}

.media-open {
  top: 18px;
  right: 18px;
  left: auto;
  width: 54px;
  height: 54px;
  transform: scale(0.76);
  transform-origin: center;
  opacity: 0.78;
}

.media-tile:hover .media-open,
.media-tile:focus-visible .media-open,
.sticker-image-link:hover .media-open,
.sticker-image-link:focus-visible .media-open {
  transform: scale(1);
  opacity: 1;
  background: rgba(4, 13, 22, 0.78);
  border-color: rgba(112, 204, 255, 0.74);
  color: #70ccff;
}

@media (hover: none) {
  .media-open {
    opacity: 0.94;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-title,
  .motion-copy,
  .masonry-frame,
  .image-reveal-frame .motion-parallax-image {
    clip-path: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .editorial-title::after {
    transform: scaleX(1);
  }
}

@media (max-width: 700px) {
  .media-open {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .editorial-title {
    transform: translate3d(-46px, 0.55em, 0) scaleX(0.76);
  }

  .masonry-frame {
    --masonry-x: 0px !important;
    transform: translate3d(0, 76px, 0) scale(0.96);
  }
}
