:root {
  --ink: #111817;
  --graphite: #1b2724;
  --deep: #0f1715;
  --moss: #17231f;
  --line: #ddd6c8;
  --paper: #f7f3eb;
  --paper-strong: #efe8db;
  --white: #ffffff;
  --gold: #b89656;
  --teal: #2f9a91;
  --muted: #6e766f;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 74px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.solid-header {
  background: rgba(17, 24, 23, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.brand img {
  width: 168px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  padding: 128px clamp(20px, 6vw, 84px) 104px;
}

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

.hero-slider {
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.8s ease,
    transform 6s ease;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 16, 15, 0.9) 0%, rgba(8, 16, 15, 0.62) 48%, rgba(8, 16, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 16, 15, 0.84) 0%, rgba(8, 16, 15, 0.1) 56%);
}

.hero-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.8vw, 21px);
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}

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

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

.hero-dots button {
  width: 38px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  width: min(560px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 24, 23, 0.58);
  backdrop-filter: blur(10px);
}

.hero-panel span {
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 23px;
}

.metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 128px clamp(20px, 6vw, 84px) 104px;
  overflow: hidden;
}

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

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(28px, 6.2vw, 86px);
  line-height: 0.96;
}

.page-hero .hero-content {
  width: min(1080px, 100%);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-deep,
.page-hero-dark,
.page-hero-light {
  background: var(--ink);
}

.footprint-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    var(--paper);
  border-top: 1px solid rgba(17, 24, 23, 0.08);
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.footprint-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.footprint-main-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 22px 54px rgba(17, 24, 23, 0.14);
}

.footprint-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition:
    opacity 0.25s ease,
    transform 0.45s ease;
}

.footprint-main-card:hover img {
  opacity: 0.62;
  transform: scale(1.035);
}

.footprint-main-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 28px 26px;
  background: linear-gradient(0deg, rgba(8, 16, 15, 0.9), rgba(8, 16, 15, 0));
}

.footprint-main-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.footprint-main-card h3 {
  max-width: 620px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
}

.footprint-main-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footprint-insight-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 360px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 23, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(17, 24, 23, 0.08);
}

body:has(.hero) .split,
body:has(.hero) .light-feature-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.footprint-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footprint-stat-row div,
.footprint-plan-card {
  border: 1px solid rgba(17, 24, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.footprint-stat-row div {
  min-height: 132px;
  padding: 22px;
}

.footprint-stat-row strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.12;
}

.footprint-stat-row span,
.footprint-plan-card span {
  color: var(--muted);
  font-size: 14px;
}

.footprint-plan-card {
  padding: 24px;
}

.footprint-plan-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 850;
}

.footprint-plan-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.14;
}

.footprint-plan-card p {
  max-width: 420px;
  margin-bottom: 20px;
  color: var(--muted);
}

.footprint-market-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.footprint-market-list div {
  min-height: 96px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(45, 141, 138, 0.08);
}

.footprint-market-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.footprint-market-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footprint-detail-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.footprint-detail-link:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 18, 20, 0.1);
}

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

.muted {
  background: #ece6da;
}

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

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.partner-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(16, 18, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.service-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 800;
}

.service-card p,
.partner-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.endorsement-section {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 150, 86, 0.12), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(47, 154, 145, 0.1), transparent 34%),
    linear-gradient(180deg, #17231f 0%, #111817 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.endorsement-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.endorsement-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.014);
}

.brand-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--teal);
  font-weight: 850;
}

.brand-card h3 {
  color: var(--white);
  font-size: 25px;
}

.brand-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.operations-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 150, 86, 0.12), transparent 28%),
    linear-gradient(180deg, #111817 0%, #0d1211 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.operations-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
}

.operations-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.operations-metrics div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.operations-metrics div:last-child {
  border-right: 0;
}

.operations-metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}

.operations-metrics span {
  color: rgba(255, 255, 255, 0.66);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.operations-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.operations-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 850;
}

.operations-grid h3 {
  color: var(--white);
}

.operations-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.map {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    var(--paper);
}

.province-map-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.province-map-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 141, 138, 0.24);
  background:
    linear-gradient(rgba(45, 141, 138, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 141, 138, 0.08) 1px, transparent 1px),
    rgba(16, 18, 20, 0.96);
  background-size: 46px 46px;
}

.province-map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.map-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(45, 141, 138, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 72px rgba(45, 141, 138, 0.18),
    inset 0 0 54px rgba(176, 138, 69, 0.08);
  pointer-events: none;
}

.echarts-china-map {
  position: absolute;
  inset: 18px 18px 58px;
  background: transparent;
}

.map-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(8, 16, 15, 0.72);
  backdrop-filter: blur(10px);
}

.map-controls button {
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.map-controls button:last-child {
  border-right: 0;
}

.map-controls button:hover {
  background: rgba(45, 141, 138, 0.42);
  color: #ffffff;
}

.map-legend {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.map-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.map-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 16px currentColor;
}

.legend-active {
  color: var(--gold);
  background: var(--gold);
}

.legend-plan {
  color: var(--teal);
  background: var(--teal);
}

.legend-none {
  color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.32);
}

.province-info-panel {
  min-height: 650px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 18, 20, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
}

.province-info-panel p {
  color: var(--muted);
}

.province-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.province-stats div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.province-stats dt {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 850;
}

.province-stats dd {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.province-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: var(--graphite);
}

.province-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.province-note span {
  font-size: 14px;
}

.province-info-panel.is-changing {
  animation: contentLift 0.45s ease;
}

.map-error {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 80%);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-stage {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 150, 86, 0.12), transparent 30%),
    linear-gradient(180deg, var(--moss) 0%, var(--deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section .section-head p:not(.eyebrow),
.dark-section p {
  color: rgba(255, 255, 255, 0.64);
}

.light-capability-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    var(--paper);
  border-top: 1px solid rgba(17, 24, 23, 0.08);
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.light-capability-section .section-head p:not(.eyebrow) {
  color: var(--muted);
}

.light-capability-section .capability-grid {
  border-color: rgba(17, 24, 23, 0.12);
}

.light-capability-section .capability-grid article {
  border-color: rgba(17, 24, 23, 0.1);
  background: rgba(255, 255, 255, 0.54);
  min-height: 250px;
  padding: clamp(24px, 3.2vw, 46px);
}

.light-capability-section .capability-grid h3 {
  color: var(--ink);
}

.light-capability-section .capability-grid p {
  color: var(--muted);
}

.wide-head {
  max-width: 900px;
}

.footprint-head {
  max-width: 1180px;
}

.footprint-head .single-line-copy {
  max-width: min(100%, 1180px);
  white-space: nowrap;
}

.line-eyebrow {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: var(--teal);
  letter-spacing: 0.18em;
}

.line-eyebrow::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 2px;
  background: var(--teal);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-grid article {
  min-height: 300px;
  padding: clamp(26px, 4vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.capability-grid article:nth-child(3n) {
  border-right: 0;
}

.capability-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.capability-grid span,
.model-grid span,
.why-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 800;
}

.capability-grid h3,
.model-grid h3,
.why-grid h3 {
  color: var(--white);
  font-size: 25px;
}

.capability-grid p {
  max-width: 420px;
  margin-bottom: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.model-grid article {
  min-height: 460px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.model-grid dl {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.model-grid dt {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

.model-grid dd {
  color: rgba(255, 255, 255, 0.8);
}

.model-grid a,
.section-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 800;
}

.model-grid a::after,
.section-link::after {
  content: " ->";
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.case-grid article {
  min-width: 0;
}

.case-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-grid article > p {
  margin: 24px 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-grid h3 {
  color: var(--white);
  font-size: 24px;
}

.case-grid span {
  color: rgba(255, 255, 255, 0.58);
}

.case-grid ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.case-grid li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: rgba(255, 255, 255, 0.72);
}

.case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.light-feature-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--paper);
  border-top: 1px solid rgba(16, 18, 20, 0.08);
}

.light-feature-section .section-head p:not(.eyebrow) {
  color: var(--muted);
}

.light-feature-section .section-link {
  color: var(--teal);
}

.light-feature-section .case-grid img {
  border-color: rgba(16, 18, 20, 0.1);
  box-shadow: 0 18px 42px rgba(16, 18, 20, 0.1);
}

.light-feature-section .case-grid h3 {
  color: var(--ink);
}

.light-feature-section .case-grid span,
.light-feature-section .case-grid li {
  color: var(--muted);
}

.gallery-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(221, 214, 200, 0.45), rgba(255, 255, 255, 0)),
    var(--paper-strong);
  border-top: 1px solid rgba(17, 24, 23, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(17, 24, 23, 0.08);
}

.gallery-grid .is-wide {
  grid-column: span 2;
}

.gallery-grid .is-tall {
  grid-row: span 2;
  min-height: 514px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition:
    opacity 0.25s ease,
    transform 0.45s ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 18px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(0deg, rgba(8, 16, 15, 0.84), rgba(8, 16, 15, 0));
}

.gallery-grid figure:hover img {
  opacity: 0.82;
  transform: scale(1.045);
}

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

.gallery-category-grid figure,
.gallery-category-grid .is-wide,
.gallery-category-grid .is-tall {
  grid-column: auto;
  grid-row: auto;
  min-height: 380px;
}

.gallery-category-grid figcaption {
  display: grid;
  gap: 8px;
  padding: 82px 24px 22px;
}

.gallery-category-grid figcaption strong {
  font-size: 22px;
  line-height: 1.2;
}

.gallery-category-grid figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
  margin: 78px 0 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-line div {
  position: relative;
  padding-top: 46px;
}

.process-line span {
  position: absolute;
  left: 0;
  top: -27px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(45, 141, 138, 0.72);
  border-radius: 50%;
  color: var(--teal);
  background: var(--ink);
  font-weight: 800;
}

.process-line strong {
  color: rgba(255, 255, 255, 0.86);
}

.why-block {
  padding-top: 0;
  border-top: 0;
}

.why-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--paper);
  border-top: 1px solid rgba(17, 24, 23, 0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17, 24, 23, 0.12);
}

.why-grid article {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid rgba(17, 24, 23, 0.1);
  border-bottom: 1px solid rgba(17, 24, 23, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

.why-grid article:nth-child(3n) {
  border-right: 0;
}

.why-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.why-grid span {
  margin-bottom: 22px;
}

.why-grid p {
  margin-bottom: 0;
}

.why-section .why-grid h3 {
  color: var(--ink);
}

.why-section .why-grid p {
  color: var(--muted);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.map-main {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.map-main img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  opacity: 0.78;
}

.map-main div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  background: linear-gradient(0deg, rgba(16, 18, 20, 0.88), rgba(16, 18, 20, 0));
}

.map-main p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.map-cards article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(16, 18, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.map-cards span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.map-cards p {
  color: var(--muted);
  font-size: 15px;
}

.platform {
  background: var(--graphite);
  color: var(--white);
}

.platform .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline strong {
  display: block;
  margin-bottom: 74px;
  color: var(--gold);
  font-size: 25px;
}

.timeline span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.spaces {
  background: #f7f4ee;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 320px;
  gap: 16px;
}

.space-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.space-grid .space-large {
  grid-row: span 2;
}

.space-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

.space-grid figure:hover img {
  opacity: 0.74;
  transform: scale(1.035);
}

.space-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(16, 18, 20, 0.9), rgba(16, 18, 20, 0));
}

.space-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 18px;
}

.space-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.image-collage img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 18, 20, 0.1);
}

.image-collage img:nth-child(2) {
  min-height: 310px;
  align-self: end;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--ink);
  align-items: stretch;
}

.dark-contact {
  background:
    radial-gradient(circle at 84% 16%, rgba(47, 154, 145, 0.14), transparent 30%),
    linear-gradient(180deg, #111817 0%, #0d1211 100%);
}

.light-contact {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(236, 230, 218, 0.66)),
    var(--paper);
  border-top: 1px solid rgba(16, 18, 20, 0.08);
}

.light-contact p {
  color: var(--muted);
}

.contact-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.contact-lead {
  max-width: 520px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
  align-content: start;
}

.contact-methods div {
  min-height: 76px;
  padding: 14px 0 14px 24px;
  border-left: 2px solid rgba(45, 141, 138, 0.58);
}

.contact-methods span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.contact-methods strong {
  color: var(--white);
  font-size: 21px;
}

.light-contact .contact-methods span {
  color: var(--muted);
}

.light-contact .contact-methods strong {
  color: var(--ink);
}

.wechat-contact {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.wechat-contact span {
  grid-column: 1 / -1;
}

.wechat-contact strong {
  align-self: end;
}

.wechat-qr {
  width: 108px;
  height: 108px;
  margin-top: 8px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  object-fit: cover;
}

.qr-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(rgba(255, 255, 255, 0.06) 10px, transparent 10px) 0 0 / 22px 22px,
    rgba(255, 255, 255, 0.04);
}

.qr-placeholder i {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid var(--white);
}

.qr-placeholder i:nth-child(1) {
  left: 13px;
  top: 13px;
}

.qr-placeholder i:nth-child(2) {
  right: 13px;
  top: 13px;
}

.qr-placeholder i:nth-child(3) {
  left: 13px;
  bottom: 13px;
}

.qr-placeholder i:nth-child(4) {
  right: 20px;
  bottom: 20px;
  width: 16px;
  height: 16px;
  border-width: 4px;
}

.qr-placeholder em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 18px;
  height: 100%;
  align-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.light-contact .lead-form {
  border-color: rgba(16, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(16, 18, 20, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.light-contact .lead-form label {
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  padding: 0 18px;
  outline: none;
}

.light-contact .lead-form input,
.light-contact .lead-form select,
.light-contact .lead-form textarea {
  color: var(--ink);
  border-color: rgba(16, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.lead-form textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 141, 138, 0.14);
}

.lead-form button {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--teal);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}

.light-contact .lead-form button {
  background: var(--gold);
}

.form-hint {
  margin: 0;
  font-size: 13px;
}

.light-contact .form-hint {
  color: var(--muted);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.light-contact p {
  color: var(--muted);
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

dl {
  margin: 0;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--gold);
  font-weight: 800;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 84px);
  background: #0b0c0d;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer img {
  width: 148px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    opacity: 0.76;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes pathFlash {
  0% {
    opacity: 0.15;
    filter: blur(2px);
  }
  100% {
    opacity: 0.8;
    filter: blur(0);
  }
}

@keyframes contentLift {
  0% {
    opacity: 0.72;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(16, 18, 20, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .metrics,
  .service-grid,
  .partner-grid,
  .page-hero,
  .footprint-summary-grid,
  .timeline,
  .endorsement-layout,
  .operations-metrics,
  .province-map-shell,
  .capability-grid,
  .operations-grid,
  .model-grid,
  .case-grid,
  .gallery-grid,
  .why-grid,
  .map-layout,
  .split,
  .split.reverse,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(3n),
  .capability-grid article:nth-child(n + 4),
  .why-grid article,
  .why-grid article:nth-child(3n),
  .why-grid article:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .capability-grid article:last-child,
  .why-grid article:last-child {
    border-bottom: 0;
  }

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

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

  .process-line {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 58px;
  }

  .province-map-visual,
  .province-info-panel {
    min-height: 560px;
  }

  .footprint-summary-grid {
    gap: 14px;
  }

  .footprint-main-card,
  .footprint-insight-panel {
    min-height: 220px;
  }

  .space-grid .space-large {
    grid-row: span 1;
  }

  .timeline div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timeline strong {
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand img {
    width: 146px;
  }

  .site-nav {
    top: 66px;
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: 92vh;
    padding: 112px 20px 122px;
  }

  h1 {
    font-size: clamp(38px, 11.6vw, 46px);
    line-height: 1.02;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 22px;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
  }

  .hero-panel span:nth-child(2) {
    border-right: 0;
  }

  .hero-panel span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metrics div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .contact {
    padding: 66px 20px;
  }

  .page-hero {
    padding: 112px 20px 122px;
  }

  .page-hero h1 {
    font-size: clamp(22px, 6.2vw, 40px);
  }

  .footprint-insight-panel {
    min-height: 190px;
    padding: 24px;
  }

  .footprint-main-card {
    min-height: 300px;
  }

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

  .footprint-market-list {
    grid-template-columns: 1fr;
  }

  .footprint-head .single-line-copy {
    white-space: normal;
  }

  .footprint-plan-card span {
    margin-bottom: 26px;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }

  .map-main,
  .map-main img {
    min-height: 430px;
  }

  .province-map-shell {
    gap: 14px;
  }

  .province-map-visual,
  .province-info-panel {
    min-height: 430px;
  }

  .province-info-panel {
    padding: 24px;
  }

  .echarts-china-map {
    inset: 12px 8px 58px;
  }

  .map-main div {
    padding: 24px;
  }

  .map-cards,
  .space-grid,
  .model-grid,
  .operations-grid,
  .gallery-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid .is-wide,
  .gallery-grid .is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 270px;
  }

  .brand-card,
  .brand-card:nth-child(3) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .operations-metrics div {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .operations-metrics div:last-child {
    border-bottom: 0;
  }

  .section-head-row {
    display: block;
  }

  .section-link {
    margin-top: 0;
  }

  .capability-grid article,
  .model-grid article {
    min-height: 250px;
    padding: 26px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 58px 0 86px;
    margin-left: 24px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-line div {
    min-height: 78px;
    padding: 0 0 34px 42px;
  }

  .process-line span {
    left: -24px;
    top: 0;
    width: 48px;
    height: 48px;
  }

  .why-block {
    padding-top: 58px;
  }

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

  .why-grid article {
    min-height: 180px;
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 22px;
  }

  .map-cards article {
    min-height: 220px;
  }

  .map-cards span {
    margin-bottom: 28px;
  }

  .space-grid {
    grid-auto-rows: 290px;
  }

  .image-collage img,
  .image-collage img:nth-child(2) {
    min-height: 260px;
  }

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 42px;
  }
}

@media (max-width: 980px) {
  .light-capability-section .capability-grid article,
  .light-capability-section .capability-grid article:nth-child(3n),
  .light-capability-section .capability-grid article:nth-child(n + 4),
  .why-section .why-grid article,
  .why-section .why-grid article:nth-child(3n),
  .why-section .why-grid article:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 23, 0.1);
  }

  .light-capability-section .capability-grid article:last-child,
  .why-section .why-grid article:last-child {
    border-bottom: 0;
  }
}
