:root {
  --ls-ink: #171717;
  --ls-muted: #62656b;
  --ls-line: rgba(23, 23, 23, .12);
  --ls-paper: #ffffff;
  --ls-mist: #f4f6f8;
  --ls-red: #f3b300;
  --ls-red-deep: #b77620;
  --ls-blue: #5b3a26;
  --ls-green: #5f7546;
  --ls-gold: #f6c21d;
  --ls-shadow: 0 18px 50px rgba(25, 30, 38, .12);
  --ls-soft-shadow: 0 10px 26px rgba(25, 30, 38, .08);
  --ls-radius: 8px;
  --ls-ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ls-ink);
  background: #f7f8fa;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(1240px, calc(100vw - 24px));
  transform: translateX(-50%);
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 0 0 var(--ls-radius) var(--ls-radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--ls-soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
}

.brand img {
  width: 150px;
  height: auto;
}

.brand-mark {
  width: 8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ls-red), var(--ls-red-deep));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #24272b;
  line-height: 1.12;
  white-space: nowrap;
  transition: color .24s var(--ls-ease), background .24s var(--ls-ease), transform .24s var(--ls-ease);
}

.nav-en {
  color: rgba(36, 39, 43, .52);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-label {
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #2a1a10;
  background: linear-gradient(135deg, var(--ls-red), var(--ls-red-deep));
  transform: translateY(-1px);
}

.nav-links a:hover .nav-en,
.nav-links a.is-active .nav-en {
  color: rgba(42, 26, 16, .72);
}

.nav-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  padding: 5px 16px;
  border-radius: 999px;
  color: #2a1a10;
  background: var(--ls-red);
  line-height: 1.12;
  white-space: nowrap;
}

.nav-cta .nav-en {
  color: rgba(42, 26, 16, .72);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--ls-line);
  border-radius: 999px;
  color: var(--ls-muted);
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-link {
  color: inherit;
  transition: color .2s var(--ls-ease);
}

.language-link:hover,
.language-link.is-active {
  color: #2a1a10;
}

html[lang="en"] .site-header {
  width: min(1480px, calc(100vw - 24px));
}

html[lang="en"] .nav-bar {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  padding-right: 10px;
  padding-left: 14px;
}

html[lang="en"] .brand {
  gap: 8px;
  min-width: 138px;
}

html[lang="en"] .brand img {
  width: 134px;
}

html[lang="en"] .brand-mark {
  width: 6px;
}

html[lang="en"] .nav-links {
  min-width: 0;
  gap: 0;
}

html[lang="en"] .nav-links a {
  min-width: 0;
  padding-right: 7px;
  padding-left: 7px;
}

html[lang="en"] .nav-label {
  font-size: 12.5px;
  line-height: 1.08;
}

html[lang="en"] .nav-en {
  font-size: 7.5px;
  letter-spacing: 0;
}

html[lang="en"] .nav-cta {
  padding-right: 11px;
  padding-left: 11px;
}

html[lang="en"] .language-switcher {
  gap: 6px;
  padding-right: 8px;
  padding-left: 8px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ls-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ls-ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 168px 0 72px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .35) 42%, rgba(0, 0, 0, .08) 100%),
    var(--hero-image);
  background-position: center top;
  background-size: cover;
}

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

.hero-slides {
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .35) 42%, rgba(0, 0, 0, .08) 100%),
    var(--slide-image);
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero.has-hero-carousel .hero-inner {
  position: relative;
  z-index: 1;
}

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

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: width .2s var(--ls-ease), background .2s var(--ls-ease), border-color .2s var(--ls-ease);
}

.hero-carousel-dot.is-active {
  width: 28px;
  background: var(--ls-red);
  border-color: var(--ls-red);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero-copy {
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

html[lang="en"] .hero {
  min-height: 820px;
  padding-top: 150px;
}

html[lang="en"] .hero-copy {
  width: min(760px, 100%);
}

html[lang="en"] .hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.05;
  text-wrap: balance;
}

html[lang="en"] .hero p {
  max-width: 650px;
  margin-top: 18px;
}

html[lang="en"] .hero-metrics {
  margin-top: 54px;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .24s var(--ls-ease), box-shadow .24s var(--ls-ease), background .24s var(--ls-ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--ls-soft-shadow);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ls-red), var(--ls-red-deep));
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(640px, 100%);
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--ls-radius);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.metric {
  min-height: 112px;
  padding: 20px;
  background: rgba(0, 0, 0, .12);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
  background: #fff;
}

.section.alt {
  background: var(--ls-mist);
}

.section.dark {
  color: #fff;
  background: #171717;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--ls-red);
  font-size: 13px;
  font-weight: 900;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

html[lang="en"] .page-hero h1 {
  max-width: 980px;
  font-size: clamp(30px, 3vw, 44px);
  text-wrap: balance;
}

.section-lead,
.page-hero p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 16px;
  line-height: 1.85;
}

.dark .section-lead,
.dark .section-kicker {
  color: rgba(255, 255, 255, .72);
}

.product-grid,
.story-grid,
.news-grid,
.report-grid,
.channel-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.news-card,
.report-card,
.channel-card,
.contact-card,
.principle-card {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.product-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 330px;
  overflow: hidden;
}

.product-card-link,
.news-card-link,
.report-card-link,
.channel-card-link,
.mini-card {
  color: inherit;
  text-decoration: none;
}

.product-card-link,
.news-card-link,
.report-card-link,
.channel-card-link {
  transition: transform .24s var(--ls-ease), box-shadow .24s var(--ls-ease), border-color .24s var(--ls-ease);
}

.product-card-link:hover,
.news-card-link:hover,
.report-card-link:hover,
.channel-card-link:hover {
  border-color: rgba(205, 44, 36, .34);
  box-shadow: 0 18px 42px rgba(91, 58, 38, .14);
  transform: translateY(-3px);
}

.product-media {
  display: grid;
  place-items: end center;
  padding: 26px 26px 0;
  background: linear-gradient(145deg, #fff3d5, #ffffff);
}

.product-media img {
  width: min(230px, 100%);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(91, 58, 38, .2));
}

.product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.tagline {
  margin: 0 0 12px;
  color: var(--ls-red);
  font-size: 13px;
  font-weight: 900;
}

.product-body h3,
.news-card h3,
.report-card h3,
.channel-card h3,
.contact-card h3,
.principle-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.product-body p,
.news-card p,
.report-card p,
.channel-card p,
.contact-card p,
.principle-card p {
  margin: 14px 0 0;
  color: var(--ls-muted);
  font-size: 15px;
  line-height: 1.75;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(243, 179, 0, .16);
  color: #6a3f18;
  font-size: 12px;
  font-weight: 800;
}

.card-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--ls-red);
  font-size: 14px;
  font-weight: 900;
}

.card-more::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 9px;
  background: currentColor;
}

.story-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}

.story-image {
  min-height: 520px;
  border-radius: var(--ls-radius);
  background-image: var(--story-image);
  background-position: center;
  background-size: cover;
}

.principles {
  display: grid;
  gap: 16px;
}

.about-section-head {
  margin-bottom: 32px;
}

.principle-card {
  padding: 28px;
}

.channel-sections {
  display: grid;
  gap: 44px;
}

.channel-section {
  display: grid;
  gap: 22px;
}

.channel-section + .channel-section {
  padding-top: 38px;
  border-top: 1px solid rgba(91, 58, 38, .12);
}

.channel-section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .58fr);
  gap: 24px;
  align-items: end;
}

.channel-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.channel-section-head .section-lead {
  margin: 0;
}

.channel-text-panel,
.channel-service-panel {
  padding: 30px;
  border: 1px solid rgba(91, 58, 38, .12);
  border-radius: 8px;
  background: #fff;
}

.channel-text-panel p,
.channel-service-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--ls-muted);
  font-size: 17px;
  line-height: 1.9;
}

.channel-service-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  gap: 32px;
  align-items: center;
}

.channel-service-qrs {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
}

.channel-service-qr {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 247, 225, .72);
  text-align: center;
}

.channel-service-qr .channel-image {
  width: 220px;
  min-height: 220px;
}

.channel-service-qr h3 {
  margin: 0;
  font-size: 18px;
}

.channel-service-qr p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 14px;
}

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

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

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

.news-card,
.report-card,
.channel-card,
.contact-card,
.faq-item {
  padding: 30px;
}

.report-card {
  display: flex;
  min-height: 190px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}

.report-category {
  color: var(--ls-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card h3 {
  margin-top: 28px;
}

.trace-file-link {
  margin-top: 28px;
}

.report-image {
  aspect-ratio: 16 / 8.2;
  background: #f6f8fb;
  overflow: hidden;
}

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

.report-content {
  padding: 28px 30px 30px;
}

.report-body {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ls-line);
}

.report-body .detail-richtext {
  margin: 0;
}

.report-body .detail-richtext p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 14px;
  line-height: 1.8;
}

.report-body .detail-richtext p + p {
  margin-top: 10px;
}

.report-body .detail-richtext img {
  width: 100%;
  height: auto;
  margin-top: 12px;
  border-radius: 6px;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(91, 58, 38, .16);
  border-radius: 999px;
  background: #fff;
  color: #4d3b2d;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s var(--ls-ease), border-color .2s var(--ls-ease), transform .2s var(--ls-ease);
}

.faq-category-nav a:hover {
  border-color: rgba(243, 179, 0, .58);
  background: rgba(243, 179, 0, .14);
  transform: translateY(-1px);
}

.faq-category-section {
  scroll-margin-top: 110px;
}

.faq-category-section + .faq-category-section {
  margin-top: 38px;
}

.faq-category-heading {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

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

.faq-category-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: transform .2s var(--ls-ease), box-shadow .2s var(--ls-ease), border-color .2s var(--ls-ease);
}

.faq-category-card:hover {
  border-color: rgba(243, 179, 0, .58);
  box-shadow: 0 8px 24px rgba(91, 58, 38, .08);
  transform: translateY(-3px);
}

.faq-category-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  color: #3d2b1f;
}

.faq-category-card p {
  margin: 12px 0 0;
  color: var(--ls-muted);
  font-size: 15px;
  line-height: 1.7;
  flex: 1 1 auto;
}

.faq-category-count {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #8c7a6a;
}

.faq-category-card .card-more {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ls-accent);
}

.faq-category-detail-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ls-line);
}

.faq-category-detail-head h2 {
  margin: 14px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.faq-category-detail-head p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ls-accent);
  text-decoration: none;
}

.faq-back-link::before {
  content: '←';
}

.faq-item {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.faq-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--ls-muted);
  font-size: 16px;
  line-height: 1.85;
}

.channel-card {
  display: grid;
  grid-template-columns: minmax(112px, 140px) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 184px;
}

.channel-entry-card {
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
  min-height: 130px;
}

.channel-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 247, 225, .92), #fff);
}

.channel-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.channel-image.is-empty {
  border: 1px dashed rgba(205, 44, 36, .28);
}

.channel-image.is-empty span {
  max-width: 82px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.channel-body {
  min-width: 0;
}

.channel-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--ls-red);
  font-size: 14px;
  font-weight: 900;
}

.channel-action::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 9px;
  background: currentColor;
}

.news-media {
  height: 180px;
  margin: -30px -30px 24px;
  overflow: hidden;
  border-radius: var(--ls-radius) var(--ls-radius) 0 0;
  background: var(--ls-mist);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-card-link {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
  transition: transform .24s var(--ls-ease), box-shadow .24s var(--ls-ease), border-color .24s var(--ls-ease);
}

.channel-card-link:hover {
  border-color: rgba(243, 179, 0, .38);
  box-shadow: 0 18px 42px rgba(91, 58, 38, .14);
  transform: translateY(-3px);
}

.channel-entry-card.channel-card-link {
  display: block;
}

.channel-image {
  min-height: 138px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(145deg, #fff3d5, #ffffff);
}

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

.channel-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.channel-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--ls-red);
  font-size: 14px;
  font-weight: 900;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
}

.card-index {
  color: var(--ls-red);
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 23, .1);
  border-radius: var(--ls-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 249, 232, .88));
  box-shadow: 0 12px 32px rgba(25, 30, 38, .06);
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 999px;
  color: #2a1a10;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: transform .24s var(--ls-ease), border-color .24s var(--ls-ease), background .24s var(--ls-ease), box-shadow .24s var(--ls-ease);
}

.pagination-link:hover,
.pagination-link.is-active {
  border-color: rgba(243, 179, 0, .48);
  background: linear-gradient(135deg, var(--ls-red), var(--ls-red-deep));
  box-shadow: 0 10px 22px rgba(183, 118, 32, .18);
  transform: translateY(-1px);
}

.pagination-link.is-disabled {
  color: rgba(23, 23, 23, .42);
  background: rgba(255, 255, 255, .64);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.pagination-status {
  color: var(--ls-muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.page-hero {
  padding: 164px 0 72px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .24)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
}

.detail-hero {
  padding: 144px 0 76px;
  background:
    radial-gradient(circle at 85% 15%, rgba(243, 179, 0, .18), transparent 34%),
    linear-gradient(135deg, #fff7e4 0%, #ffffff 56%, #fff1ef 100%);
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 44px;
  align-items: center;
}

.detail-hero-copy h1,
.detail-news-head h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ls-ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.detail-hero-copy > p,
.detail-news-head > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ls-muted);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
}

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

.breadcrumb strong {
  color: var(--ls-red);
}

.detail-hero-media {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid rgba(91, 58, 38, .1);
  border-radius: var(--ls-radius);
  background: linear-gradient(145deg, #fff, #ffeec6);
  box-shadow: var(--ls-soft-shadow);
}

.detail-hero-media img {
  width: min(320px, 80%);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(91, 58, 38, .24));
}

.news-detail-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  padding: 138px 0 70px;
  background-image:
    linear-gradient(90deg, rgba(17, 13, 10, .84) 0%, rgba(17, 13, 10, .56) 45%, rgba(17, 13, 10, .24) 100%),
    var(--hero-image);
  background-position: center 46%;
  background-size: cover;
}

.news-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.detail-news-head {
  position: relative;
  z-index: 1;
}

.news-detail-hero .breadcrumb,
.news-detail-hero .detail-news-head > p {
  color: rgba(255, 255, 255, .78);
}

.news-detail-hero .detail-news-head h1 {
  max-width: 1020px;
  color: #fff;
  font-size: clamp(34px, 4.3vw, 52px);
  text-wrap: balance;
  word-break: keep-all;
}

.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.detail-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.detail-title-keep {
  white-space: nowrap;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.detail-reading-section {
  padding-top: 68px;
  background: linear-gradient(180deg, #fff 0%, #fff 62%, #f7f8fa 100%);
}

.news-detail-layout {
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  gap: 40px;
}

.detail-article,
.detail-action-panel,
.mini-card {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-paper);
}

.detail-article {
  padding: clamp(28px, 5vw, 54px);
}

.detail-article-shell {
  border-color: rgba(23, 23, 23, .08);
  box-shadow: 0 18px 46px rgba(25, 30, 38, .07);
}

.detail-article h2 {
  margin: 0 0 22px;
  font-size: clamp(26px, 4vw, 42px);
}

.detail-summary-card {
  margin: 0 0 30px;
  padding: 20px 22px;
  border-left: 4px solid var(--ls-red);
  border-radius: var(--ls-radius);
  background: linear-gradient(135deg, rgba(243, 179, 0, .12), rgba(255, 255, 255, .96));
}

.detail-summary-card span,
.detail-aside-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ls-red-deep);
  font-size: 12px;
  font-weight: 900;
}

.detail-summary-card p {
  margin: 0;
  color: #3f444a;
  font-size: 16px;
  line-height: 1.85;
}

.detail-article-shell .section-kicker {
  margin-bottom: 18px;
}

.detail-richtext {
  color: #50545b;
  font-size: 18px;
  line-height: 2.05;
}

.detail-richtext p {
  margin: 0 0 22px;
}

.detail-richtext p:last-child {
  margin-bottom: 0;
}

.detail-inline-media {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 30, 38, .08);
}

.detail-inline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.detail-inline-media figcaption {
  padding: 12px 16px;
  color: var(--ls-muted);
  font-size: 13px;
  line-height: 1.5;
  background: rgba(245, 246, 241, .72);
}

.detail-action-panel {
  position: sticky;
  top: 116px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(91, 58, 38, .1);
}

.detail-side-note {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.detail-aside-card {
  padding: 26px;
  border: 1px solid rgba(23, 23, 23, .1);
  border-radius: var(--ls-radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(25, 30, 38, .08);
}

.detail-action-panel h3 {
  margin: 0;
  font-size: 22px;
}

.detail-action-panel p {
  margin: 14px 0 22px;
  color: var(--ls-muted);
  line-height: 1.8;
}

.detail-action-panel .button {
  width: 100%;
  margin-top: 10px;
}

.detail-action-panel .button.secondary {
  color: #2a1a10;
  border-color: rgba(183, 118, 32, .24);
  background: #fff;
}

.detail-next-links {
  display: grid;
  gap: 10px;
}

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

.mini-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  transition: transform .24s var(--ls-ease), box-shadow .24s var(--ls-ease);
}

.mini-card:hover {
  box-shadow: 0 14px 30px rgba(91, 58, 38, .12);
  transform: translateY(-2px);
}

.mini-card span {
  color: var(--ls-red);
  font-size: 13px;
  font-weight: 900;
}

.mini-card strong {
  color: var(--ls-ink);
  font-size: 20px;
  line-height: 1.35;
}

.page-body {
  padding: 80px 0;
  background: #fff;
}

.split-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-top: 34px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ls-muted);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--ls-red);
}

.cta-band {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(135deg, #171717, #5b3a26);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.cta-inner p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.site-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, .72);
  background: #121418;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.footer-inner > div:first-child {
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.footer-beian {
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
}

.footer-beian:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner > div:first-child {
    white-space: normal;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ls-ease), transform .7s var(--ls-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.backtop {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ls-red);
  box-shadow: var(--ls-soft-shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .24s var(--ls-ease), transform .24s var(--ls-ease);
}

.backtop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.not-found-main {
  min-height: 100vh;
}

.not-found-page {
  display: grid;
  min-height: 760px;
  padding: 180px 0 100px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(247, 244, 237, .96)),
    var(--ls-paper);
}

.not-found-inner {
  position: relative;
  max-width: 780px;
  text-align: center;
}

.not-found-code {
  margin: 0 0 20px;
  color: var(--ls-gold);
  font-size: clamp(96px, 18vw, 210px);
  font-weight: 900;
  line-height: .72;
}

.not-found-page .section-kicker {
  justify-content: center;
  margin-bottom: 18px;
}

.not-found-page h1 {
  margin: 0;
  color: var(--ls-ink);
  font-size: 46px;
  line-height: 1.15;
}

.not-found-message {
  margin: 22px auto 0;
  color: var(--ls-muted);
  font-size: 17px;
  line-height: 1.8;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.not-found-actions .button.secondary {
  border-color: var(--ls-line);
  color: var(--ls-ink);
  background: #fff;
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta,
  .nav-bar > .language-switcher {
    display: none;
  }

  .nav-bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    display: grid;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    gap: 8px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--ls-line);
    border-radius: var(--ls-radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--ls-soft-shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ls-ease), transform .24s var(--ls-ease);
  }

  .mobile-panel.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-panel a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 13px 12px;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.16;
  }

  .mobile-panel a.is-active {
    color: #fff;
    background: var(--ls-red);
  }

  .mobile-panel a.is-active .nav-en {
    color: rgba(255, 255, 255, .78);
  }

  .mobile-panel .language-switcher {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    margin-top: 4px;
    padding: 0 12px;
    border-radius: 6px;
    background: #fff;
  }

  .mobile-panel .language-switcher a {
    padding: 0;
    border-radius: 0;
    font-weight: 900;
  }

  .mobile-panel .language-switcher a.is-active {
    color: #2a1a10;
    background: transparent;
  }

  .hero {
    min-height: 700px;
  }

  .hero,
  .page-hero {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .56) 46%, rgba(0, 0, 0, .2) 100%),
      var(--hero-image);
    background-position: 68% center;
  }

  .hero-slide {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .56) 46%, rgba(0, 0, 0, .2) 100%),
      var(--slide-image);
    background-position: 68% center;
  }

  .page-hero {
    min-height: 390px;
  }

  .section-head,
  .channel-section-head,
  .story-grid,
  .split-band,
  .detail-hero-inner,
  .detail-layout,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .detail-action-panel {
    position: static;
  }

  .news-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .product-grid,
  .news-grid,
  .report-grid,
  .channel-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-category-grid {
    grid-template-columns: 1fr;
  }

  .channel-card-link {
    grid-template-columns: 1fr;
  }

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

  .channel-service-qrs {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .channel-service-qr .channel-image {
    width: min(220px, 100%);
    min-height: min(220px, 100vw - 88px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .channel-service-qrs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0;
    width: calc(100vw - 20px);
  }

  .nav-bar {
    min-height: 62px;
    padding: 9px 10px 9px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 150px;
  }

  .page-hero {
    padding-top: 128px;
    background-position: 72% center;
  }

  .hero {
    width: 100%;
    min-height: 0;
    margin-top: 62px;
    padding: 0;
    aspect-ratio: 1000 / 563;
    background-color: #f4f1ea;
    background-image: var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  html[lang="en"] .hero {
    min-height: 0;
    padding-top: 0;
  }

  .hero-slide {
    background-color: #f4f1ea;
    background-image: var(--slide-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .hero .hero-inner {
    display: none;
  }

  .hero-carousel-dots {
    bottom: 12px;
  }

  .page-hero {
    min-height: 340px;
    padding-bottom: 58px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .not-found-page {
    min-height: 640px;
    padding: 132px 0 72px;
  }

  .not-found-page h1 {
    font-size: 34px;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section,
  .page-body {
    padding: 58px 0;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .channel-card {
    grid-template-columns: 1fr;
  }

  .channel-image {
    width: min(180px, 100%);
  }

  .pagination-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .pagination-pages {
    width: 100%;
  }

  .pagination-link {
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
  }

  .pagination-status {
    white-space: normal;
  }

  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    padding-top: 124px;
  }

  .news-detail-hero {
    min-height: auto;
    padding: 124px 0 58px;
    background-position: 66% center;
  }

  .news-detail-hero .detail-news-head h1 {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.12;
    word-break: normal;
  }

  .news-detail-hero .breadcrumb strong,
  .news-detail-hero .breadcrumb span:last-of-type {
    display: none;
  }

  .detail-reading-section {
    padding-top: 46px;
  }

  .detail-article {
    padding: 24px 18px;
  }

  .detail-summary-card {
    padding: 18px;
  }

  .detail-richtext {
    font-size: 16px;
    line-height: 1.95;
  }

  .detail-inline-media img {
    aspect-ratio: 4 / 3;
  }

  .product-media {
    min-height: 270px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

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