:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.58);
  --link: rgba(255, 255, 255, 0.64);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.34);
  --shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

body.hide-upcoming [data-upcoming-section] {
  display: none;
}

a {
  color: var(--link);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

a:hover,
a:focus-visible {
  color: var(--text);
}

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

img.image-missing {
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 5vw, 68px);
  background: rgba(5, 5, 5, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  color: var(--text);
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-text {
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  position: relative;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-decoration: none;
}

.main-nav a::after,
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: #fff;
}

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

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  padding: clamp(96px, 16vh, 170px) clamp(20px, 7vw, 96px) clamp(46px, 8vh, 74px);
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background: linear-gradient(135deg, #101010, #242424);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 5000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-subtitle,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.4vw, 18px);
}

.section-heading {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 20px;
}

main > section:not(.hero):not(.page-hero) {
  position: relative;
}

main > section:not(.hero):not(.page-hero)::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 0;
  height: clamp(44px, 8vw, 92px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0));
  pointer-events: none;
}

main > section:not(.hero):not(.page-hero) > * {
  position: relative;
  z-index: 1;
}

/* 所有 section 的通用 padding */
.upcoming-section,
.about-section,
.artists-section,
.contact-section {
  padding: clamp(20px, 3vw, 40px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 20px;
}

.contact-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.contact-footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 auto;
}

.contact-item {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 10px 6px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-decoration: none;
  border: none;
  background: transparent;
  min-height: auto;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-item:hover {
  color: #fff;
  transform: translateY(-2px);
  background: transparent;
}

.contact-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.contact-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 220ms ease;
}

.contact-item:hover span {
  color: rgba(255, 255, 255, 0.7);
}

.market-section {
  padding: clamp(48px, 7vw, 84px) 0;
  background-image: url('../images/market-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}

.market-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

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

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.market-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.market-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.market-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.market-grid p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.about-section {
  background-image: url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 4vw, 52px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.about-copy p,
.market-grid p,
.case-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.stat-item {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.stat-item strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.stat-item span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
}

.service-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.service-strip span:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.show-banner {
  position: relative;
  display: block;
  width: min(1120px, calc(100% - 40px));
  min-height: clamp(180px, 29vw, 360px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.show-banner img,
.image-gate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);                    /* ✅ 背景模糊 */
  transform: scale(1.05);               /* ✅ 放大消除边缘白边 */
  transition: filter 400ms ease;
}

.artist-card img,
.project-cover img,
.crew-card img,
.tech-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #141414, #2b2b2b);
}

.show-banner::after,
.image-gate::after,
.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 58%);
  pointer-events: none;
}

.show-banner-text {
  position: absolute;
  left: clamp(20px, 4vw, 50px);
  right: clamp(20px, 4vw, 50px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 1;
  display: grid;
  gap: 6px;
}

.show-banner-text strong {
  color: #fff;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.05;
}

.show-banner-text small,
.image-gate small {
  color: rgba(255, 255, 255, 0.62);
}

.show-banner,
.image-gate,
.artist-card,
.contact-item,
.project-card,
.crew-card {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, opacity 260ms ease;
}

.show-banner:hover,
.image-gate:hover,
.artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.review-gate {
  display: grid;
  gap: 0;
  padding: clamp(34px, 5vw, 68px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.03)),
    var(--bg);
}

.image-gate {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  min-height: clamp(260px, 32vw, 420px);
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: none;
}

.image-gate:nth-of-type(even) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-gate + .image-gate {
  margin-top: 0;
  border-top: 0;
}

.image-gate::after {
  display: none;
}

.image-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.82) 27%, rgba(5, 5, 5, 0.54) 46%, rgba(5, 5, 5, 0.18) 64%, rgba(5, 5, 5, 0) 82%);
  box-shadow: none;
  pointer-events: none;
}

.image-gate:nth-of-type(even)::before {
  background:
    linear-gradient(270deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.82) 27%, rgba(5, 5, 5, 0.54) 46%, rgba(5, 5, 5, 0.18) 64%, rgba(5, 5, 5, 0) 82%);
}

.image-gate span {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 10px;
  width: auto;
  padding: clamp(30px, 6vw, 86px);
  text-align: left;
  transform: none;
  background: transparent;
}

.image-gate:nth-of-type(even) span {
  grid-column: 2;
  background: transparent;
}

.image-gate .review-image {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: none;
  transition: transform 500ms ease, filter 500ms ease;
}

.image-gate:hover .review-image {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.image-gate:hover {
  transform: none;
}

.image-gate strong {
  color: #fff;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
}

.image-gate small {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .review-gate {
    padding: clamp(28px, 8vw, 46px) 0;
  }

  .image-gate,
  .image-gate:nth-of-type(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .image-gate::before {
    display: none;
  }

  .image-gate span,
  .image-gate:nth-of-type(even) span {
    grid-column: 1;
    grid-row: 1;
    padding: 24px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(16, 16, 16, 0.78));
  }

  .image-gate img,
  .image-gate:nth-of-type(even) img {
    grid-column: 1;
    grid-row: 2;
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }

  .image-gate .review-image {
    filter: saturate(1.02) contrast(1.02);
  }

  .image-gate strong {
    font-size: clamp(28px, 10vw, 40px);
  }

  .image-gate small br {
    display: none;
  }
}

.artist-carousel {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.artist-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.artist-track::-webkit-scrollbar {
  display: none;
}

.artist-card {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: var(--panel);
}

.artist-card span {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 13px;
  z-index: 1;
  color: #fff;
  font-size: 17px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.68);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}

.carousel-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.case-panel {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-item {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  text-decoration: none;
  background: var(--panel);
}

.contact-item:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  border-color: var(--line-strong);
}

.contact-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: transparent;
  opacity: 0.92;
  transition: transform 220ms ease, opacity 220ms ease;
}

.contact-item:hover img {
  opacity: 1;
  transform: scale(1.16);
}

.contact-item span {
  font-size: 12px;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal img {
  width: min(360px, 82vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.qr-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  background: #111;
  font-size: 26px;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
}

.qr-close:hover {
  color: #fff;
  border-color: var(--line-strong);
}

.back-row {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 28px;
}

.back-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-decoration: none;
}

.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 0 clamp(30px, 5vw, 50px);
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(12px, 1vw, 14px);
    font-weight: 300; 
  line-height: 1.8;
  margin: 8px 0 0;
  max-width: 620px;
}

.project-list {
  display: grid;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 90px;
}

.project-card {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}

.project-cover {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
  display: block;
}

.project-content {
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-content h2 {
  margin-bottom: 2px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.project-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.project-tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
}

.tour-tag {
  background: rgba(255, 200, 50, 0.2);
  color: #ffd866;
  border: 1px solid rgba(255, 200, 50, 0.25);
}

.project-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.flat-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px;
}

.flat-info span {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
}

.photo-slider-wrapper {
  margin: 6px 0 4px;
}

.photo-slider-label,
.highlights-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.photo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 200ms ease, color 200ms ease;
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.slider-btn.prev {
  left: 6px;
}

.slider-btn.next {
  right: 6px;
}

.highlights-block {
  margin-top: 2px;
}

.highlights-block blockquote {
  margin: 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(255, 200, 50, 0.3);
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.6;
  font-size: 13px;
}

.andmore-section {
  padding: clamp(10px, 2vw, 20px) 0 clamp(20px, 3vw, 40px) 0;  /* ✅ 上内边距改小 */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;                                                /* ✅ 去掉上外边距 */
}

.andmore-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 16px;
}

.andmore-header h2 {
  margin-bottom: 0;
}

.andmore-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.andmore-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid var(--line);
}

.andmore-carousel {
  width: 100%;
  overflow: hidden;
}

.andmore-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 12px;
}

.andmore-track::-webkit-scrollbar {
  display: none;
}

.andmore-slide {
  flex: 0 0 calc(40% - 8px);
  min-width: 180px;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  transition: transform 300ms ease, border-color 300ms ease;
}

.andmore-slide:hover {
  transform: scale(1.02);
  border-color: var(--line-strong);
}

.andmore-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.andmore-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 250ms ease, color 250ms ease;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.andmore-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.andmore-btn.prev {
  left: 4px;
}

.andmore-btn.next {
  right: 4px;
}

.andmore-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.andmore-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 300ms ease, transform 300ms ease;
  cursor: pointer;
}

.andmore-dots span.active {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

@media (max-width: 860px) {
  .andmore-slide {
    flex: 0 0 calc(50% - 6px);
    min-width: 140px;
  }

  .andmore-track {
    gap: 8px;
  }

  .andmore-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .andmore-slide {
    flex: 0 0 calc(75% - 6px);
    min-width: 120px;
  }
}

.poster-section {
  padding: clamp(10px, 2vw, 20px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0px;
}

.poster-slider-wrapper {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.poster-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.poster-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.poster-track::-webkit-scrollbar {
  display: none;
}

.poster-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  scroll-snap-align: start;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: #0a0a0a;
  border: 1px solid var(--line);
  transition: transform 300ms ease, border-color 300ms ease;
  cursor: pointer;
}

.poster-card:hover {
  transform: scale(1.03);
  border-color: var(--line-strong);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.poster-card:hover img {
  transform: scale(1.05);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 350ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 20px;
  text-align: center;
}

.poster-card:hover .poster-overlay {
  opacity: 1;
}

.poster-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(12px);
  transition: transform 350ms ease;
}

.poster-card:hover .poster-info {
  transform: translateY(0);
}

.poster-info strong {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.poster-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.04em;
}

.poster-info small {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.poster-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 250ms ease, color 250ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-slider-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.poster-slider-btn.prev {
  left: 6px;
}

.poster-slider-btn.next {
  right: 6px;
}

.poster-scroll-hint {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 300ms ease, transform 300ms ease;
}

.hint-dot.active {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

@media (max-width: 860px) {
  .poster-card {
    flex: 0 0 calc(50% - 8px);
    aspect-ratio: 2 / 3;
  }

  .poster-track {
    gap: 12px;
  }

  .poster-slider-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .poster-info strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .poster-card {
    flex: 0 0 calc(80% - 8px);
    aspect-ratio: 2 / 3;
  }

  .poster-track {
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .project-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .project-cover {
    height: 320px;
    border-bottom: 1px solid var(--line);
  }

  .project-content {
    padding: 20px;
  }

  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

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

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .main-nav {
    width: 100%;
  }

  .hero {
    min-height: 74vh;
  }

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

  .about-layout,
  .market-grid,
  .crew-grid,
  .project-card,
  .tech-hero {
    grid-template-columns: 1fr;
  }

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

  .project-cover {
    min-height: 260px;
  }

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

@media (max-width: 560px) {
  .contact-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-item img {
      width: 24px;
      height: 24px;
    }

    .contact-item span {
      font-size: 10px;
    }
  .brand-logo {
    width: 28px;
    height: 28px;
  }

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

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

  .stat-item {
    min-height: 88px;
    padding: 10px 4px;
  }

  .stat-item strong {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .stat-item span {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .artist-track {
    grid-auto-columns: minmax(180px, 76vw);
  }

  .carousel-btn.prev {
    left: 4px;
  }

  .carousel-btn.next {
    right: 4px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== Technology 页面专用样式 ===== */

.tech-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1120px, calc(100% - 40px));
  margin: 16px auto 20px;
}

.tech-services span {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: background 260ms ease, border-color 260ms ease;
}

.tech-services span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.tech-process-band {
  padding: clamp(10px, 2vw, 22px) 0 clamp(28px, 4vw, 46px);
}

.tech-process-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tech-process-copy,
.tech-process-steps {
  position: relative;
  z-index: 1;
}

.tech-process-copy {
  display: grid;
  align-content: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 120, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tech-process-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
}

.tech-process-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.02;
}

.tech-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tech-process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 42px;
  right: 42px;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 214, 120, 0), rgba(255, 214, 120, 0.46), rgba(255, 214, 120, 0));
  pointer-events: none;
}

.tech-process-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.tech-process-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 214, 120, 0.36);
  border-radius: 50%;
  color: #ffd878;
  background: rgba(255, 214, 120, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.tech-process-steps strong {
  color: #fff;
  font-size: 17px;
}

.tech-process-steps small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.crew-grid {
  display: flex;
  justify-content: space-between;          /* 左右分散排列 */
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  gap: 20px;
}

.crew-card {
  flex: 0 1 calc(50% - 10px);              /* 每个卡片占一半宽度 */
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}

.crew-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.crew-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #141414, #2b2b2b);
}

.crew-card h3 {
  padding: 16px 20px 4px;
  margin: 0;
  font-size: 18px;
}

.crew-card p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.tech-stats-section {
  padding: clamp(10px, 2vw, 24px) 0 clamp(40px, 5vw, 60px) 0;
}

.tech-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 20px;
}

.tech-stats-grid .tech-stat-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.tech-stats-grid .tech-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.tech-stats-grid .tech-stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tech-stats-grid .tech-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
}

.tech-stats-detail {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tech-stats-detail p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.tech-gallery-section {
  padding: clamp(20px, 3vw, 40px) 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 10px;
}

.tech-gallery-wrapper {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.tech-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.tech-gallery-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
}

.tech-gallery-track::-webkit-scrollbar {
  display: none;
}

.tech-gallery-item {
  flex: 0 0 calc(40% - 3px);
  min-width: 160px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  background: #0a0a0a;
  border: 1px solid var(--line);
  transition: transform 300ms ease, border-color 300ms ease;
}

.tech-gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--line-strong);
}

.tech-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 250ms ease, color 250ms ease;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-btn.prev {
  left: 6px;
}

.gallery-btn.next {
  right: 6px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 300ms ease, transform 300ms ease;
  cursor: pointer;
}

.gallery-dots span.active {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

@media (max-width: 860px) {
  .tech-process-inner {
    grid-template-columns: 1fr;
  }

  .tech-process-steps::before {
    top: 28px;
    bottom: 28px;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 214, 120, 0.42), rgba(255, 255, 255, 0));
  }

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

  .tech-process-steps article {
    min-height: 0;
    padding: 16px 16px 16px 54px;
  }

  .tech-process-steps span {
    position: absolute;
    top: 16px;
    left: 14px;
  }

  .crew-grid {
    flex-direction: column;
    gap: 16px;
  }

  .crew-card {
    flex: 1 1 auto;
    width: 100%;
  }

  .tech-stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

  .tech-stats-grid .tech-stat-card {
    min-height: 130px;
    padding: 20px 12px;
  }

  .tech-stats-grid .tech-stat-card strong {
    font-size: 28px;
  }

  .tech-gallery-item {
    flex: 0 0 calc(50% - 2px);
    min-width: 120px;
  }

  .gallery-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .tech-services {
    gap: 6px;
  }

  .tech-services span {
    font-size: 11px;
    padding: 4px 10px;
  }

  .tech-stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .tech-stats-grid .tech-stat-card {
    min-height: 108px;
    padding: 16px 10px;
  }

  .tech-stats-grid .tech-stat-card strong {
    font-size: 22px;
  }

  .tech-stats-grid .tech-stat-card span {
    font-size: 12px;
  }

  .tech-gallery-item {
    flex: 0 0 calc(70% - 2px);
    min-width: 100px;
  }
}

.crew-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
}

.crew-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #141414;
}

.crew-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-content {
  padding: 16px 20px 24px;
}

.crew-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.crew-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}

/* tech界面合作艺人和场地列表，每一行 */
.scroll-row {
  margin-top: 1.5rem;
}

/* 行标签 */
.scroll-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* 滑动容器 - 隐藏滚动条但可滑动 */
.scroll-wrapper {
  width: 100%;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;              /* Chrome/Safari */
}
.scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* 内部项目容器 */
.scroll-items {
  display: flex;
  flex-wrap: wrap;   /* 允许换行 */
  gap: 0.8rem;
}

/* 每个小方块 - 字大一点 */
.badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);              /* 毛玻璃模糊 */
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ===== Technology 页面 - 左右布局 ===== */
.tech-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;           /* 左右各占一半 */
  gap: 40px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;                      /* 垂直居中 */
}

.tech-hero-text {
  max-width: 580px;
}

.tech-hero-text .page-hero-desc {
  margin: 0;                                /* 去掉多余边距 */
}

/* 移动端适配：变成上下排列 */
@media (max-width: 860px) {
  .tech-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-hero-text {
    max-width: 100%;
  }
}
