:root {
  --brand-navy: #113d67;
  --brand-teal: #08796f;
  --brand-gold: #b7791f;
  --brand-red: #b42318;
  --bg: #f3f7f9;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --surface-glass: rgba(255, 255, 255, 0.82);
  --text: #172033;
  --muted: #5f6f84;
  --line: #d5e0ea;
  --primary: var(--brand-navy);
  --primary-2: var(--brand-teal);
  --accent: var(--brand-gold);
  --success: #12805c;
  --danger: var(--brand-red);
  --ink: #0f172a;
  --radius-sm: 6px;
  --radius-md: 8px;
  --focus-ring: rgba(17, 61, 103, 0.24);
  --shadow: 0 18px 46px rgba(17, 36, 64, 0.12);
  --shadow-soft: 0 8px 22px rgba(17, 36, 64, 0.07);
  --shadow-card: 0 14px 34px rgba(17, 36, 64, 0.08);
  --shadow-floating: 0 24px 54px rgba(17, 36, 64, 0.14);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 40px rgba(17, 36, 64, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5f4 44%, #f7f2e6 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 74, 124, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 124, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.container {
  width: 1240px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(213, 224, 234, 0.78);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 128px;
  text-decoration: none;
}

.brand-logo {
  width: 128px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  background: #fff;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 800;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.menu::-webkit-scrollbar {
  display: none;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: var(--radius-md);
  color: #344054;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
  background: rgba(237, 245, 252, 0.92);
  box-shadow: inset 0 0 0 1px rgba(23, 74, 124, 0.08), 0 8px 18px rgba(17, 61, 103, 0.08);
  transform: translateY(-1px);
}

.home-only-menu {
  flex: 0 0 auto;
  margin-left: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-auth-actions {
  margin-left: auto;
}

.auth-guest-actions {
  gap: 0;
  align-items: center;
}

.auth-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 1px 5px;
  color: #1d5fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.auth-nav-link:hover,
.auth-nav-link:focus-visible {
  color: #0f46d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-nav-divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  margin: 0 7px;
  background: #6b7280;
}

.site-auth-actions a[href="./register.html"].btn,
.site-auth-actions a[href="./login.html"].btn {
  position: relative;
  min-height: 24px;
  padding: 1px 5px;
  border: 0;
  border-radius: 0;
  color: #1d5fff;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transform: none;
}

.site-auth-actions a[href="./register.html"].btn:hover,
.site-auth-actions a[href="./register.html"].btn:focus-visible,
.site-auth-actions a[href="./login.html"].btn:hover,
.site-auth-actions a[href="./login.html"].btn:focus-visible {
  color: #0f46d9;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: none;
}

.site-auth-actions a[href="./register.html"].btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 1px;
  height: 20px;
  background: #6b7280;
  transform: translateY(-50%);
}

.auth-user-link {
  gap: 7px;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-role-dot {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 6px;
  border-radius: 999px;
  color: #8a5a12;
  background: #fff6df;
  font-size: 11px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 61, 103, 0.26);
  box-shadow: 0 12px 26px rgba(17, 36, 64, 0.12);
}

.btn.primary {
  border-color: var(--primary);
  color: #fff;
  background: linear-gradient(180deg, #174a7c, var(--primary));
  box-shadow: 0 12px 22px rgba(17, 61, 103, 0.18);
}

.btn.ghost {
  color: var(--primary);
  background: rgba(237, 245, 252, 0.88);
  border-color: rgba(23, 74, 124, 0.18);
}

.btn.mini {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 12px;
}

.btn.icon-action {
  gap: 8px;
  min-width: 96px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  padding: 28px 0 60px;
}

.home-map-shell {
  width: 1240px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.home-united-front-section {
  display: grid;
  gap: 10px;
  width: 1240px;
  max-width: calc(100% - 40px);
  margin: 0 auto 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(213, 224, 234, 0.9);
  border-bottom: 1px solid rgba(213, 224, 234, 0.9);
  background: rgba(255, 255, 255, 0.58);
}

.united-front-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.united-front-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.united-front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: 12px;
}

.united-front-grid article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(213, 224, 234, 0.88);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.82);
}

.united-front-lead {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-color: rgba(13, 132, 118, 0.22);
}

.united-front-lead-link {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(0, 0.72fr);
  min-height: 168px;
  color: inherit;
  text-decoration: none;
}

.united-front-lead-link:hover strong,
.united-front-lead-link:focus-visible strong {
  color: var(--primary);
}

.united-front-lead-media {
  min-height: 168px;
  overflow: hidden;
  background: #eef5f6;
}

.united-front-lead-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}

.united-front-card-body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  padding: 12px 14px;
}

.united-front-card-body strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
  transition: color 0.16s ease;
}

.united-front-card-body span:not(.united-front-label) {
  color: #53657c;
  font-size: 12px;
  line-height: 1.5;
}

.united-front-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.united-front-label {
  justify-self: start;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(13, 132, 118, 0.1);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.united-front-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.32;
  letter-spacing: 0;
}

.united-front-grid p {
  margin: 0;
  color: #53657c;
  font-size: 12px;
  line-height: 1.5;
}

.united-front-grid a {
  justify-self: start;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.united-front-grid a:hover,
.united-front-grid a:focus-visible {
  text-decoration: underline;
}

.united-front-more {
  justify-self: end;
  margin-right: 15px;
  margin-top: -2px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.united-front-more:hover,
.united-front-more:focus-visible {
  text-decoration: underline;
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.page-hero-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 0 22px;
  aspect-ratio: 1240 / 260;
  min-height: 220px;
  border: 1px solid rgba(213, 224, 234, 0.88);
  border-radius: var(--radius-md);
  background: #102a43;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.page-hero-track {
  position: absolute;
  inset: 0;
}

.page-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.page-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.page-hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 55, 0.82) 0%, rgba(11, 31, 55, 0.58) 38%, rgba(11, 31, 55, 0.08) 74%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.04));
}

.page-hero-copy {
  position: absolute;
  left: clamp(22px, 4vw, 48px);
  bottom: clamp(22px, 3vw, 36px);
  z-index: 2;
  width: min(520px, calc(100% - 120px));
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.page-hero-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 121, 111, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.page-hero-copy h2 {
  margin: 10px 0 6px;
  font-size: 28px;
  line-height: 1.18;
}

.page-hero-copy p {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.page-hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 61, 103, 0.58);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-50%);
  cursor: pointer;
}

.page-hero-control.prev {
  left: 16px;
}

.page-hero-control.next {
  right: 16px;
}

.page-hero-control:hover {
  background: rgba(8, 121, 111, 0.84);
}

.page-hero-dots {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.page-hero-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.page-hero-dots button.active {
  background: #fff;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary-2);
  font-weight: 900;
  font-size: 13px;
}

.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
}

.page-sub {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
}

.business-card-page-head .page-sub {
  white-space: pre-line;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(130px, 1fr)) auto auto;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(213, 224, 234, 0.86);
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.toolbar.compact {
  grid-template-columns: minmax(260px, 1.6fr) repeat(4, minmax(130px, 1fr));
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(213, 224, 234, 0.94);
  border-radius: var(--radius-md);
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 61, 103, 0.12);
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.panel,
.card {
  border: 1px solid rgba(213, 224, 234, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.panel {
  padding: 20px;
}

.panel:hover,
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 61, 103, 0.2);
  background: #fff;
  box-shadow: var(--shadow-floating);
}

.panel + .panel {
  margin-top: 16px;
}

.enterprise-account-profile-stack .panel[hidden] + .panel {
  margin-top: 0;
}

@media (min-width: 1101px) {
  body[data-page="home"] .layout-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.68fr);
  }

  body[data-page="home"] .chamber-map-panel {
    height: 620px;
  }

  body[data-page="home"] .chamber-detail {
    height: 620px;
    padding: 14px 16px;
    overflow: hidden;
  }

  body[data-page="home"] .chamber-profile-top {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 10px;
  }

  body[data-page="home"] .chamber-profile-main {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  body[data-page="home"] .chamber-logo-slot {
    width: 58px;
    height: 58px;
  }

  body[data-page="home"] .chamber-logo-slot strong {
    font-size: 24px;
  }

  body[data-page="home"] .chamber-profile-title h3 {
    margin: 5px 0 0;
    font-size: 18px;
    line-height: 1.18;
  }

  body[data-page="home"] .chamber-scope-row {
    gap: 5px;
  }

  body[data-page="home"] .chamber-scope-row .tag {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 11px;
  }

  body[data-page="home"] .chamber-fact-grid {
    flex: 1 1 auto;
    grid-template-rows: minmax(54px, 0.66fr) minmax(82px, 0.82fr) minmax(78px, 0.74fr) minmax(142px, 1.28fr);
    align-content: stretch;
    gap: 7px;
    margin-top: 12px;
  }

  body[data-page="home"] .chamber-fact-grid > div {
    min-height: 0;
    padding: 8px 9px;
  }

  body[data-page="home"] .chamber-fact-grid > .chamber-fact-card:not(.chamber-contact-row) {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body[data-page="home"] .chamber-fact-grid span {
    font-size: 10px;
  }

  body[data-page="home"] .chamber-fact-grid strong,
  body[data-page="home"] .chamber-address-nav {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.3;
  }

  body[data-page="home"] .chamber-contact-facts {
    gap: 7px;
    margin-top: 7px;
  }

  body[data-page="home"] .chamber-platform-row .chamber-platform-qr-group {
    height: 100%;
    align-items: stretch;
    gap: 7px;
  }

  body[data-page="home"] .chamber-fact-grid > .chamber-platform-row {
    display: grid;
    padding: 0;
  }

  body[data-page="home"] .chamber-platform-row .chamber-platform-card,
  body[data-page="home"] .chamber-platform-qr-group .chamber-platform-card {
    min-height: 110px;
    padding: 8px;
  }

  body[data-page="home"] .chamber-fact-grid > .chamber-platform-row .chamber-platform-card {
    min-height: 136px;
    height: 100%;
    align-content: center;
  }

  body[data-page="home"] .chamber-platform-qr-group .chamber-platform-qr {
    width: 64px;
    height: 64px;
  }

  body[data-page="home"] .chamber-platform-card strong {
    font-size: 12px;
  }

  body[data-page="home"] .chamber-detail > .chamber-detail-actions {
    flex: 0 0 auto;
    margin-top: 12px;
    padding-top: 0;
  }

  body[data-page="home"] .layout-grid > .panel + .panel {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .chamber-map-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 14px;
    overflow: visible;
  }

  body[data-page="home"] .home-map-title,
  body[data-page="home"] .home-chamber-dimensions,
  body[data-page="home"] .map-controls,
  body[data-page="home"] .china-map-layer,
  body[data-page="home"] .overseas-chamber-box,
  body[data-page="home"] .map-review-note {
    position: static;
    inset: auto;
  }

  body[data-page="home"] .home-map-title {
    min-height: 0;
    align-items: flex-start;
    padding-right: 0;
    font-size: 17px;
    line-height: 1.45;
    pointer-events: auto;
  }

  body[data-page="home"] .home-chamber-dimensions {
    max-width: none;
    gap: 8px;
  }

  body[data-page="home"] .home-chamber-dimension {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 13px;
  }

  body[data-page="home"] .map-controls {
    justify-self: end;
    width: max-content;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  }

  body[data-page="home"] .china-map-layer {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 760;
    transform-origin: 50% 50%;
  }

  body[data-page="home"] .prd-cluster-hotspot {
    gap: 4px;
    min-height: 28px;
    padding: 4px 7px 4px 4px;
    font-size: 11px;
  }

  body[data-page="home"] .prd-cluster-name {
    font-size: 11px;
  }

  body[data-page="home"] .prd-cluster-dot {
    width: 22px;
    height: 16px;
    border: 0;
    background:
      radial-gradient(circle at 30% 62%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px),
      radial-gradient(circle at 50% 38%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px),
      radial-gradient(circle at 70% 62%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px);
    box-shadow: none;
  }

  body[data-page="home"] .prd-cluster-hotspot strong {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
  }

  body[data-page="home"] .prd-cluster-area[data-region-cluster="yangtze-delta"] .prd-cluster-hotspot {
    left: -14px;
  }

  body[data-page="home"] .prd-city-menu {
    display: none;
  }

  body[data-page="home"] .prd-cluster-area.open .prd-city-menu {
    left: 50%;
    top: 34px;
    display: grid;
    width: min(260px, calc(100vw - 48px));
    transform: translate(-50%, 0);
  }

  body[data-page="home"] .overseas-chamber-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 8px;
    pointer-events: none;
    transform: none;
  }

  body[data-page="home"] .overseas-chamber-link {
    min-height: 38px;
    font-size: 13px;
  }

  body[data-page="home"] .map-review-note {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    font-size: 11px;
    pointer-events: auto;
  }
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.panel-title {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.3;
}

.panel-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

body[data-page="home"] .stat-row {
  display: none;
}

.stat-card {
  padding: 16px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.stat-card:nth-child(2) {
  border-left-color: var(--primary-2);
}

.stat-card:nth-child(3) {
  border-left-color: var(--accent);
}

.stat-card:nth-child(4) {
  border-left-color: var(--success);
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.stat-value {
  margin-top: 6px;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  margin-top: -24px;
  padding: 34px 0 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(23, 74, 124, 0.95), rgba(15, 118, 110, 0.86)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(183, 121, 31, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-position: center;
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.1));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 22px;
  align-items: center;
}

.hero-title {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: 42px;
  line-height: 1.16;
}

.hero-copy {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions .btn {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions .btn.primary {
  border-color: #fff;
  color: var(--primary);
  background: #fff;
}

.hero-board {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-board h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.brochure-preview {
  display: block;
  width: 100%;
  max-height: 214px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.2);
}

.hero-board .quick-item {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.hero-board .quick-item strong {
  color: #fff;
}

.section-band {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(213, 224, 234, 0.9);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.94));
  box-shadow: var(--shadow-card);
}

.section-band .panel-head {
  margin-bottom: 16px;
}

.map-hero-shell {
  margin-top: -24px;
  padding: 34px 0 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #f8fbff, #eef7f5),
    linear-gradient(90deg, rgba(23, 74, 124, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 124, 0.07) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.map-hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.map-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chamber-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.48fr);
  gap: 16px;
  align-items: stretch;
}

.chamber-map-panel,
.chamber-detail {
  min-height: 620px;
}

.chamber-map-panel {
  position: relative;
  overflow: hidden;
}

.china-map {
  position: relative;
  min-height: 0;
  aspect-ratio: 1000 / 760;
  overflow: hidden;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #fff;
}

.china-map::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: none;
}

.china-map-layer {
  position: absolute;
  inset: 8px auto 8px 58px;
  z-index: 8;
  width: calc(100% - 86px);
  height: calc(100% - 16px);
  pointer-events: none;
  transform-origin: 50% 50%;
  transition: transform 0.18s ease;
}

.chamber-map-panel:has(.prd-cluster-area.open) .china-map-layer,
.china-map:has(.prd-cluster-area.open) .china-map-layer {
  z-index: 40;
}

.china-map-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.flat-china-map-layer {
  will-change: transform;
}

.overseas-chamber-box {
  position: absolute;
  right: 14px;
  bottom: 24px;
  z-index: 12;
  display: grid;
  gap: 7px;
  width: 154px;
  min-height: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(17, 61, 103, 0.18);
  border-radius: var(--radius-md);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.overseas-chamber-box:hover,
.overseas-chamber-box:focus-within {
  color: #0d6b61;
  border-color: rgba(8, 121, 111, 0.28);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.overseas-chamber-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid rgba(17, 61, 103, 0.14);
  border-radius: 8px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.overseas-chamber-link:hover,
.overseas-chamber-link:focus-visible,
.overseas-chamber-link.active {
  color: #0d6b61;
  border-color: rgba(8, 121, 111, 0.3);
  background: rgba(232, 249, 246, 0.95);
}

.chamber-map-marker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  overflow: visible;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--marker-x, 0px)), calc(-50% + var(--marker-y, 0px)));
}

.home-heart-marker {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  overflow: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.prd-cluster-area {
  position: absolute;
  z-index: 6;
  width: 1px;
  height: 1px;
  pointer-events: none;
  transform: translate(0, 0);
}

.prd-cluster-area:hover,
.prd-cluster-area:focus-within,
.prd-cluster-area.open,
.prd-cluster-area.active {
  z-index: 30;
}

.prd-cluster-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  transform: translate(-50%, -50%);
}

.prd-cluster-leader {
  position: absolute;
  left: 1px;
  top: 4px;
  width: var(--cluster-leader-width, 38px);
  height: 1px;
  border-top: 1px solid rgba(23, 74, 124, 0.32);
  transform: rotate(var(--cluster-leader-rotate, 78deg));
  transform-origin: 0 50%;
}

.prd-hover-field {
  display: none;
}

.prd-cluster-hotspot {
  position: absolute;
  left: var(--cluster-hotspot-left, -10px);
  top: var(--cluster-hotspot-top, 24px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 9px 5px 6px;
  border: 1px solid rgba(23, 74, 124, 0.18);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.13);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  pointer-events: auto;
  white-space: nowrap;
}

.prd-cluster-name {
  color: inherit;
  font-size: 12px;
  line-height: 1;
}

.prd-cluster-dot {
  width: 22px;
  height: 16px;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 62%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px),
    radial-gradient(circle at 50% 38%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px),
    radial-gradient(circle at 70% 62%, #0f766e 0 4px, #fff 4px 6px, transparent 6.5px);
  box-shadow: none;
}

.prd-cluster-hotspot strong {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 11px;
}

.prd-city-menu {
  position: absolute;
  z-index: 31;
  left: var(--cluster-menu-left, 62px);
  top: var(--cluster-menu-top, -82px);
  display: grid;
  grid-template-columns: repeat(var(--cluster-menu-columns, 3), minmax(54px, 1fr));
  gap: 6px;
  width: var(--cluster-menu-width, 190px);
  padding: 9px;
  border: 1px solid rgba(23, 74, 124, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.prd-menu-title {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.prd-city-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  padding: 5px 8px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: #f8fbff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.cluster-menu-scope-mark {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-2);
}

.cluster-menu-scope-mark.county {
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--accent);
  clip-path: circle(100% at 0 100%);
  transform: rotate(-8deg);
}

.prd-city-button.county-cluster-member {
  color: #925b12;
  background: #fffaf0;
}

.prd-city-button:hover,
.prd-city-button:focus-visible,
.prd-city-button.active {
  border-color: rgba(180, 35, 24, 0.25);
  color: #b42318;
  background: #fff6f3;
}

.prd-cluster-area.open .prd-city-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.prd-cluster-area:hover .prd-cluster-hotspot,
.prd-cluster-area:focus-within .prd-cluster-hotspot,
.prd-cluster-area.open .prd-cluster-hotspot,
.prd-cluster-area.active .prd-cluster-hotspot {
  border-color: rgba(180, 35, 24, 0.25);
  color: #b42318;
}

.chamber-marker-leader {
  position: absolute;
  z-index: 3;
  width: var(--leader-length);
  height: 1px;
  border-top: 1px solid rgba(23, 74, 124, 0.18);
  pointer-events: none;
  transform: rotate(var(--leader-angle));
  transform-origin: 0 50%;
}

.chamber-map-marker .marker-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.chamber-map-marker .marker-label {
  position: absolute;
  left: calc(100% + 7px);
  top: 50%;
  transform: translateY(-50%);
  display: none;
  max-width: 128px;
  padding: 4px 7px;
  border: 1px solid rgba(23, 74, 124, 0.18);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.chamber-map-marker:hover,
.chamber-map-marker:focus-visible {
  z-index: 8;
}

.chamber-map-marker:hover .marker-label,
.chamber-map-marker:focus-visible .marker-label,
.chamber-map-marker.active .marker-label {
  display: inline-flex;
}

.chamber-map-marker.active .marker-dot {
  width: 12px;
  height: 12px;
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(180, 35, 24, 0.14);
}

.scope-hidden {
  display: none !important;
}

.chamber-map-marker.county-chamber-marker .marker-dot {
  width: 11px;
  height: 11px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 121, 31, 0.14);
  clip-path: circle(100% at 0 100%);
  transform: rotate(-8deg);
}

.chamber-map-marker.county-chamber-marker {
  z-index: 9;
}

.chamber-map-marker.county-chamber-marker:hover,
.chamber-map-marker.county-chamber-marker:focus-visible,
.chamber-map-marker.county-chamber-marker.active {
  z-index: 13;
}

.chamber-map-marker.county-chamber-marker.active .marker-dot {
  width: 12px;
  height: 12px;
  background: #b7791f;
  box-shadow: 0 0 0 4px rgba(183, 121, 31, 0.18);
  clip-path: circle(100% at 0 100%);
}

.chamber-map-marker.county-chamber-marker .marker-label {
  border-color: rgba(183, 121, 31, 0.28);
  color: #925b12;
  background: rgba(255, 251, 235, 0.96);
}

.chamber-map-marker.beijing-star-marker .marker-dot,
.chamber-map-marker.beijing-star-marker.active .marker-dot {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: #d92d20;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  box-shadow: 0 0 0 6px rgba(217, 45, 32, 0.13);
}

.chamber-map-marker.beijing-star-marker {
  z-index: 10;
  width: 26px;
  height: 26px;
}

.chamber-map-marker.beijing-star-marker:hover,
.chamber-map-marker.beijing-star-marker:focus-visible,
.chamber-map-marker.beijing-star-marker.active {
  z-index: 12;
}

.home-heart-marker .marker-label {
  position: absolute;
  left: calc(100% + 7px);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  max-width: 128px;
  padding: 3px 6px;
  border: 1px solid rgba(217, 45, 32, 0.22);
  border-radius: 999px;
  color: #b42318;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.home-heart-marker:hover,
.home-heart-marker:focus-visible,
.home-heart-marker.active {
  z-index: 9;
}

.home-heart-marker:hover .marker-label,
.home-heart-marker:focus-visible .marker-label,
.home-heart-marker.active .marker-label {
  border-color: rgba(180, 35, 24, 0.32);
  color: #9f1d15;
  background: #fff7f5;
}

.home-heart-marker:focus-visible {
  outline: 3px solid rgba(217, 45, 32, 0.22);
  outline-offset: 5px;
  border-radius: 999px;
}

.home-heart-marker.active .heart-shape {
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.15);
}

.heart-shape {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background: #d92d20;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 2px rgba(217, 45, 32, 0.1);
}

.heart-shape::before,
.heart-shape::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d92d20;
}

.heart-shape::before {
  top: -5px;
  left: 0;
}

.heart-shape::after {
  top: 0;
  left: 5px;
}

.placeholder-channel {
  cursor: default;
}

.local-entrepreneur-card .chair-photo-slot strong {
  background: #b42318;
}

.chamber-map-marker:focus-visible {
  outline: 3px solid rgba(23, 74, 124, 0.26);
  outline-offset: 4px;
  border-radius: 999px;
}

.home-map-title {
  position: absolute;
  left: 18px;
  top: 16px;
  right: 174px;
  z-index: 50;
  min-height: 34px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  pointer-events: none;
}

.map-controls {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 50;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-controls button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.map-controls button:last-child {
  min-width: 48px;
  border-right: 0;
  font-size: 12px;
}

.map-controls button:hover {
  background: #edf5fc;
}

.map-compass {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid #c9ddec;
  border-radius: 7px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.home-chamber-dimensions {
  position: absolute;
  left: 18px;
  top: 58px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 170px);
}

.home-chamber-dimension {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(23, 74, 124, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.home-chamber-dimension.active {
  border-color: rgba(23, 74, 124, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.home-chamber-dimension:not(.active) {
  color: #667085;
  opacity: 0.58;
}

.home-chamber-dimension:focus-visible {
  outline: 3px solid rgba(23, 74, 124, 0.2);
  outline-offset: 2px;
}

.map-review-note {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 50;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  max-width: min(440px, calc(100% - 36px));
  padding: 5px 8px;
  border: 1px solid rgba(102, 112, 133, 0.16);
  border-radius: 6px;
  color: #475467;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.35;
  pointer-events: none;
}

.dimension-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary-2);
}

.dimension-dot.county {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--accent);
  clip-path: circle(100% at 0 100%);
  transform: rotate(-8deg);
}

.globe-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2), transparent 32%),
    linear-gradient(180deg, #071527, #0c1b2d);
}

.globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.globe-label-layer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: auto;
}

.globe-label {
  position: absolute;
  display: none;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -120%);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(183, 121, 31, 0.94);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  pointer-events: auto;
}

.globe-label.active {
  display: inline-flex;
}

.globe-label.pinned {
  background: rgba(180, 35, 24, 0.94);
}

.globe-label.home-label {
  padding: 4px 7px;
  background: rgba(230, 184, 77, 0.94);
  font-size: 11px;
}

.globe-hint {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  pointer-events: none;
}

.globe-popup {
  position: absolute;
  right: 22px;
  top: 76px;
  z-index: 18;
  display: none;
  width: min(300px, calc(100% - 44px));
  padding: 14px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #eef7ff;
  background: rgba(8, 24, 42, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.globe-popup.active {
  display: grid;
  gap: 7px;
}

.globe-popup-kicker {
  padding-right: 26px;
  color: #8fd7ff;
  font-size: 12px;
  font-weight: 900;
}

.globe-popup strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.globe-popup p {
  margin: 0;
  color: rgba(238, 247, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.globe-popup-close {
  position: absolute;
  right: 8px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.globe-popup-close:hover,
.globe-popup-close:focus-visible {
  background: rgba(180, 35, 24, 0.82);
  outline: none;
}

.china-focus-map {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(7, 21, 39, 0.94), rgba(12, 27, 45, 0.96));
  opacity: 0;
  pointer-events: none;
  transform: scale(0.72);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.china-focus-map img {
  width: min(86%, 760px);
  height: min(88%, 430px);
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

.globe-stage.is-china-focused .globe-canvas {
  opacity: 0.15;
  transform: scale(1.5);
}

.globe-stage.is-china-focused .globe-label-layer {
  opacity: 0;
  pointer-events: none;
}

.globe-stage.is-china-focused .china-focus-map {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.china-focus-back {
  position: absolute;
  left: 18px;
  top: 18px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.china-focus-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  background: rgba(180, 35, 24, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-weight: 800;
}

.china-focus-marker.beijing {
  left: 61%;
  top: 31%;
}

.china-focus-marker.yichang {
  left: 56%;
  top: 55%;
  min-height: 28px;
  padding: 4px 8px;
  background: rgba(230, 184, 77, 0.96);
  font-size: 12px;
}

.chamber-dot {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #667085;
  box-shadow: 0 0 0 5px rgba(102, 112, 133, 0.12);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.chamber-dot.high {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(23, 74, 124, 0.13);
}

.chamber-dot.mid {
  background: var(--primary-2);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.13);
}

.chamber-dot.active {
  width: auto;
  min-width: 58px;
  height: 32px;
  padding: 0 10px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(183, 121, 31, 0.16);
}

.chamber-dot.overseas {
  display: none;
  left: 78px !important;
  bottom: 38px;
  top: auto !important;
  z-index: 4;
}

.chamber-dot span {
  display: none;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.chamber-dot.active span {
  display: block;
}

.chamber-category-list {
  display: grid;
  gap: 12px;
}

.chamber-category {
  display: block;
  min-height: 98px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.chamber-category p {
  margin: 10px 0 0;
  color: #475467;
  font-size: 14px;
}

.chamber-category.action:hover {
  border-color: #b9c7d8;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.chamber-profile-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.chamber-detail,
.chamber-list-card {
  display: flex;
  flex-direction: column;
}

.chamber-profile-top {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.chamber-profile-top-linked {
  display: block;
}

.chamber-profile-main {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.chamber-profile-company-link {
  color: inherit;
  text-decoration: none;
}

.chamber-profile-company-link:hover .chamber-profile-title h3,
.chamber-profile-company-link:focus-visible .chamber-profile-title h3,
.chamber-profile-title-link:hover,
.chamber-profile-title-link:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.chamber-profile-company-link:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(20, 82, 127, 0.22);
  outline-offset: 4px;
}

.chamber-profile-top.no-logo {
  grid-template-columns: 1fr;
}

.chamber-logo-slot,
.chamber-card-logo {
  width: 76px;
  height: 76px;
  border: 1px solid #c9ddec;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.chamber-logo-slot.is-placeholder,
.chamber-card-logo.is-placeholder {
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px;
  color: var(--primary);
  background: linear-gradient(180deg, #f8fbff, #eef7f5);
  text-align: center;
}

.chamber-logo-slot strong,
.chamber-card-logo strong {
  font-size: 30px;
  line-height: 1;
}

.chamber-logo-slot span,
.chamber-card-logo span,
.chair-photo-slot span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.chamber-card-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.chamber-card-logo {
  width: 76px;
  height: 76px;
}

.chamber-card-head > div {
  min-width: 0;
}

.chamber-card-head h3 {
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

.chamber-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.chamber-profile-title h3 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.chamber-scope-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.chamber-profile-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.chair-profile {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.chair-photo-slot {
  width: 92px;
  height: 112px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.chair-photo-slot.is-placeholder {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px;
  color: var(--primary);
  background: #fff;
  text-align: center;
}

.chair-photo-slot strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 22px;
}

.section-kicker {
  display: inline-flex;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
}

.chair-profile h4 {
  margin: 6px 0;
  color: var(--ink);
  font-size: 20px;
}

.chair-profile p,
.chamber-info-section p {
  margin: 6px 0 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.65;
}

.chamber-info-section,
.chamber-channel-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.chamber-intro-section {
  padding: 0;
  overflow: hidden;
}

.chamber-intro-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.chamber-intro-section summary::-webkit-details-marker {
  display: none;
}

.chamber-intro-section summary::after {
  content: "展开";
  flex: 0 0 auto;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.chamber-intro-section[open] summary {
  border-bottom: 1px solid var(--line);
}

.chamber-intro-section[open] summary::after {
  content: "收起";
}

.chamber-intro-section p {
  margin: 0;
  padding: 14px;
}

.chamber-detail-page-card {
  max-width: 920px;
}

body[data-page="chamber-detail"] .page-head {
  max-width: 920px;
}

.chamber-profile-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.chamber-profile-title-row h3 {
  margin: 0;
}

.chamber-profile-title-row .chamber-join-actions {
  justify-content: flex-start;
}

.chamber-fact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.chamber-fact-grid > div {
  grid-column: span 3;
  min-height: 62px;
  padding: 11px 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.chamber-fact-card {
  grid-column: span 3;
}

.chamber-fact-card.is-short {
  grid-column: span 2;
}

.chamber-fact-card.is-wide {
  grid-column: span 4;
}

.chamber-contact-row {
  grid-column: 1 / -1;
}

.chamber-fact-grid > .chamber-contact-row {
  grid-column: 1 / -1;
}

.chamber-contact-facts {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr 1.8fr;
  gap: 10px;
  margin-top: 10px;
}

.chamber-contact-facts .chamber-contact-item {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.chamber-fact-grid .chamber-contact-item span {
  color: var(--muted);
  font-size: 11px;
}

.chamber-fact-grid .chamber-contact-item strong {
  overflow-wrap: anywhere;
}

.chamber-fact-grid span,
.chamber-card-intro span {
  display: block;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
}

.chamber-fact-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.chamber-fact-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(23, 74, 124, 0.32);
  text-underline-offset: 3px;
}

.chamber-fact-link:hover {
  color: var(--primary);
  text-decoration-color: currentColor;
}

.chamber-fact-grid .chamber-address-line {
  display: block;
}

.chamber-address-nav {
  display: inline;
  min-width: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chamber-card-intro {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.chamber-card-intro p {
  margin: 6px 0 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.6;
}

.chamber-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.chamber-platform-grid.chamber-platform-qr-group {
  grid-template-columns: repeat(auto-fit, minmax(128px, 160px));
  justify-content: start;
}

.chamber-platform-row {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.chamber-fact-grid > .chamber-platform-row {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.chamber-platform-row .chamber-platform-qr-group {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.chamber-platform-row .chamber-platform-card {
  min-height: 150px;
}

.chamber-platform-card {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 146px;
  padding: 10px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
  text-align: center;
}

.chamber-platform-qr-group .chamber-platform-card {
  min-height: 132px;
  padding: 12px;
}

.chamber-platform-qr {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px dashed #b8c7d9;
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  font-weight: 800;
}

.chamber-platform-qr-group .chamber-platform-qr {
  width: 88px;
  height: 88px;
}

.chamber-platform-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.chamber-platform-card strong {
  color: var(--ink);
  font-size: 13px;
}

.chamber-platform-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  word-break: break-all;
}

.chamber-platform-card em:empty {
  display: none;
}

.chamber-platform-card em a {
  color: var(--primary);
  text-decoration: none;
}

.chamber-summary-qr-card.is-placeholder .chamber-platform-qr {
  color: #667085;
  background: #fbfcfd;
}

.chamber-advisor-grid,
.chamber-member-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.chamber-advisor-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.chamber-advisor-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 134px;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.chamber-advisor-card.is-empty {
  border-style: dashed;
  color: #667085;
  background: #fbfcfd;
}

.chamber-advisor-photo {
  display: grid;
  place-items: center;
  width: 68px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: var(--primary);
  background: linear-gradient(180deg, #edf5fc, #f8fbfd);
}

.chamber-advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chamber-advisor-photo strong {
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.chamber-advisor-photo span {
  margin-top: -12px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.chamber-advisor-body strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.chamber-advisor-body span {
  display: block;
  margin-top: 6px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.chamber-advisor-body p {
  margin: 8px 0 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.chamber-member-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.chamber-member-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  min-height: 118px;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.chamber-member-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.chamber-member-body {
  min-width: 0;
}

.chamber-member-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.chamber-member-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.chamber-member-head a {
  color: inherit;
  text-decoration: none;
}

.chamber-member-body > strong {
  display: block;
  margin-top: 6px;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}

.chamber-member-company-link {
  color: inherit;
  text-decoration: none;
}

.chamber-member-company-link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chamber-member-company-summary-link {
  color: inherit;
  text-decoration: none;
}

.chamber-member-company-summary-link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chamber-member-body p {
  margin: 6px 0 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.section-headline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.section-headline a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.chamber-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chamber-channel-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: inherit;
  background: #f8fbfd;
  text-decoration: none;
}

.chamber-channel-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: var(--primary);
  background: #edf5fc;
  font-weight: 800;
}

.chamber-channel-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.chamber-channel-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.chamber-channel-card:hover {
  border-color: #b9c7d8;
  background: #fff;
}

.chamber-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.chamber-detail-actions .btn,
.person-detail-actions .btn,
.chamber-list-card > .card-actions .btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 108px;
  min-height: 34px;
  padding: 5px 12px;
  justify-content: center;
  line-height: 1.2;
}

.chamber-detail > .chamber-detail-actions,
.chamber-list-card > .card-actions {
  margin-top: auto;
  padding-top: 12px;
}

.chamber-list-card > .card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.chamber-template-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.chamber-template-side {
  display: grid;
  gap: 12px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.news-source-panel {
  display: grid;
  gap: 12px;
}

.news-feed {
  columns: 3 260px;
  column-gap: 14px;
}

.news-feed-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.news-feed-card:hover {
  transform: translateY(-1px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow-soft);
}

.news-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.news-type-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.news-type-badge.wechat {
  color: #027a48;
  background: #ecfdf3;
  border-color: #abefc6;
}

.news-type-badge.video {
  color: #8a5a12;
  background: #fff6df;
  border-color: #f3d58d;
}

.news-feed-card h3 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.news-feed-card p {
  margin: 0 0 8px;
  color: #475467;
  font-size: 14px;
}

.news-card-meta {
  display: grid;
  gap: 5px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.template-module-list {
  display: grid;
  gap: 8px;
}

.template-module-list span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: #344054;
  background: #f8fbfd;
  font-size: 13px;
  font-weight: 700;
}

.node-card-grid {
  display: grid;
  gap: 12px;
}

.node-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.node-card:last-child {
  border-bottom: 0;
}

.node-card h3 {
  margin: 0;
  font-size: 16px;
}

.node-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.node-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.handoff-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-item {
  position: relative;
  min-height: 78px;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.stat-meta {
  margin-top: 6px;
  color: var(--success);
  font-size: 12px;
}

.map-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 74, 124, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 124, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: 44px 44px;
}

.origin-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.75fr);
  gap: 16px;
  align-items: start;
}

.origin-map-frame {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.origin-map-title {
  min-height: 30px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.yichang-map-panel {
  min-height: 560px;
}

.yichang-map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.yichang-map-wrap svg {
  display: block;
  width: 100%;
  height: 430px;
}

.yichang-map-wrap .yc-district {
  cursor: pointer;
  outline: none;
  transition: fill 0.16s ease, stroke 0.16s ease, stroke-width 0.16s ease;
}

.yichang-map-wrap .yc-district:focus,
.yichang-map-wrap .yc-district:focus-visible {
  outline: none;
}

.yichang-map-wrap .yc-district:hover,
.yichang-map-wrap .yc-district.is-active {
  stroke: var(--accent) !important;
  stroke-width: 3 !important;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.yichang-map-wrap .yc-label {
  font-size: 13px;
}

.origin-map-filter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
}

.origin-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  max-width: 220px;
  padding: 7px 10px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.origin-filter-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.origin-filter-toggle em {
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-style: normal;
  font-size: 11px;
}

.origin-filter-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.origin-map-filter.open .origin-filter-toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.origin-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  width: 260px;
  max-height: 260px;
  padding: 8px;
  overflow: auto;
  border: 1px solid #c9ddec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.origin-map-filter.open .origin-filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.origin-filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
}

.origin-filter-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.origin-filter-option em {
  flex: 0 0 auto;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.origin-filter-option:hover,
.origin-filter-option:focus-visible,
.origin-filter-option.active {
  border-color: rgba(15, 118, 110, 0.18);
  color: var(--primary-2);
  background: #edf8f6;
}

.yichang-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.yichang-map-legend span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 3px;
  vertical-align: -1px;
  background: #eef2f7;
}

.yichang-map-legend span:nth-child(2)::before {
  background: #d9f0ec;
}

.yichang-map-legend span:nth-child(3)::before {
  background: #85d3c5;
}

.yichang-map-legend span:nth-child(4)::before {
  background: #178f7e;
}

.drilldown-box {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.drilldown-box h3 {
  margin: 0;
  font-size: 15px;
}

.drilldown-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.drilldown-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.drilldown-steps span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid #c9ddec;
  border-radius: 7px;
  color: var(--primary);
  background: #edf5fc;
  font-size: 12px;
  font-weight: 700;
}

.home-origin-section {
  margin-top: 16px;
}

.home-journey-section {
  margin-top: 16px;
}

.home-china-section {
  margin-top: 16px;
}

.home-origin-primary {
  padding: 20px;
}

.compact-origin-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
}

.home-origin-main-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: stretch;
}

.home-yichang-map,
.home-yichang-map svg {
  min-height: 360px;
  height: 360px;
}

.home-origin-primary .home-yichang-map,
.home-origin-primary .home-yichang-map svg {
  min-height: 540px;
  height: 540px;
}

.home-origin-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.home-origin-side h3 {
  margin: 0;
  font-size: 16px;
}

.home-journey-tabs {
  display: inline-flex;
  gap: 8px;
  flex-shrink: 0;
}

.home-journey-tab {
  min-height: 34px;
  padding: 7px 16px;
  border: 1px solid #d4e1eb;
  border-radius: 0;
  color: #344054;
  background: rgba(237, 245, 252, 0.72);
  cursor: pointer;
  font-weight: 800;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.home-journey-tab:hover,
.home-journey-tab:focus-visible {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.86);
}

.home-journey-tab.active {
  color: var(--primary);
  border-color: #c6d8e5;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 61, 103, 0.1);
}

.home-journey-tabs-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.world-globe-shell {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #071527;
}

.world-globe-stage {
  border-radius: 8px;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-map-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stat {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-stat strong,
.mini-stat span {
  display: block;
}

.mini-stat strong {
  color: var(--primary);
  font-size: 26px;
  line-height: 1.1;
}

.mini-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.region {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 90px;
  height: 58px;
  padding: 0 10px;
  border-radius: 22px 18px 24px 16px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(23, 74, 124, 0.18);
}

.region small {
  display: block;
  font-weight: 600;
  opacity: 0.92;
}

.region.r2 {
  background: var(--primary-2);
}

.region.r3 {
  background: var(--accent);
}

.region.r4 {
  background: #475467;
}

.map-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.12);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.legend span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.legend span:nth-child(2)::before {
  background: var(--primary-2);
}

.legend span:nth-child(3)::before {
  background: var(--accent);
}

.legend span:nth-child(4)::before {
  background: var(--danger);
}

.bar-list {
  display: grid;
  gap: 12px;
}

.bar-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 54px;
  gap: 10px;
  align-items: center;
  padding: 4px 6px;
  border-radius: 7px;
  color: #344054;
  font-size: 14px;
}

.bar-item[data-origin-jump] {
  cursor: pointer;
}

.bar-item.active,
.bar-item[data-origin-jump]:hover {
  background: #edf5fc;
}

.bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.origin-drilldown-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 16px;
  margin-top: 16px;
}

.origin-people-panel,
.origin-person-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.origin-member-list {
  display: grid;
  gap: 8px;
  max-height: 500px;
  overflow: auto;
  padding-right: 2px;
}

.origin-member-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px;
  column-gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: inherit;
  background: #f8fbfd;
  text-align: left;
  cursor: pointer;
}

.origin-member-card > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.origin-member-card strong {
  color: var(--ink);
  font-size: 15px;
}

.origin-member-card em {
  color: #475467;
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.origin-member-card i {
  color: var(--primary-2);
  font-size: 12px;
  font-style: normal;
}

.origin-member-card:hover,
.origin-member-card.active {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(23, 74, 124, 0.08);
}

.origin-person-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.person-detail-head {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.person-detail-head h3 {
  margin: 6px 0 4px;
  color: var(--ink);
  font-size: 22px;
}

.person-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.person-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.person-facts div {
  min-height: 70px;
  padding: 10px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.person-facts span,
.person-resource-tile em {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.person-facts strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.person-company-block {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.person-company-block h4 {
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: 18px;
}

.person-company-block p {
  margin: 6px 0 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.6;
}

.person-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.person-resource-tile {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 62px;
  padding: 9px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.person-resource-qr {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  color: var(--primary);
  background: #edf5fc;
  font-size: 12px;
  font-weight: 800;
}

.person-resource-qr img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.person-resource-meta a,
.person-resource-meta strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
}

.person-profile-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.person-profile-entry {
  display: block;
  min-height: 104px;
  padding: 11px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
  color: inherit;
  text-decoration: none;
}

.person-profile-entry span {
  display: block;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
}

.person-profile-entry strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.person-profile-entry p {
  margin-top: 7px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.person-profile-entry:hover {
  border-color: var(--primary);
  background: #fff;
}

.company-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.person-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.business-card-page {
  max-width: 980px;
}

.business-card-panel {
  padding: 0;
  overflow: hidden;
}

.business-card-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.business-card-main {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.business-card-photo {
  min-width: 0;
}

.person-photo-card-share {
  width: 170px;
  height: 210px;
  border-radius: 8px;
}

.business-card-head {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.business-card-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.12;
}

.business-card-head p {
  margin: 0;
  color: #344054;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.business-card-company,
.business-card-section {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.business-card-company h3 {
  margin: 6px 0 8px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.3;
}

.business-card-company p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

.business-card-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.business-card-facts > div,
.business-card-online-entry {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.business-card-facts span,
.business-card-online-entry span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.business-card-facts strong,
.business-card-online-entry strong,
.business-card-online-entry a {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.business-card-online-entry a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.business-card-online-entry.is-ready {
  border-color: #bfe7df;
  background: #f0fbf8;
}

.business-card-online-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.business-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.business-card-actions .btn {
  min-width: 112px;
  justify-content: center;
}

.account-business-card-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-business-card-panel .panel-title {
  margin-top: 4px;
}

.account-business-card-panel[hidden] {
  display: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
}

.data-table th,
.data-table td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  color: #475467;
  background: #f8fafc;
  font-weight: 700;
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: #f4f9ff;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.muted {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: #edf5fc;
  font-size: 12px;
  white-space: nowrap;
}

.tag.teal {
  color: var(--primary-2);
  background: #e7f7f4;
  border-color: #bfe7df;
}

.tag.gold {
  color: #8a5a12;
  background: #fff6df;
  border-color: #f3d58d;
}

.membership-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.member-profile-head {
  grid-template-columns: minmax(172px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #fff;
}

.member-profile-head .person-photo-detail {
  width: 220px;
  height: 244px;
  border: 1px solid #e0e9f1;
  border-radius: 8px;
  background: #f5f9fc;
}

.member-profile-summary {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 13px;
}

.member-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.member-profile-tags .membership-tags {
  display: contents;
}

.member-profile-head .tag,
.member-profile-head .tag.teal,
.member-profile-head .tag.gold {
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid #d5e2ec;
  border-radius: 999px;
  color: #31516f;
  background: #f7fafc;
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.member-profile-head h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.15;
}

.member-profile-head .member-profile-company {
  margin: 0;
  color: #344054;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.38;
}

.more-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.more-info-actions > span {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card-actions .more-info-actions > span {
  flex-basis: auto;
  margin-right: 2px;
}

.detail-page-card {
  display: grid;
  gap: 14px;
}

.detail-facts .membership-tags,
.person-company-block .membership-tags {
  margin-top: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.company-card,
.member-card,
.news-card {
  padding: 15px;
  min-height: 100%;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.company-card:hover,
.member-card:hover,
.news-card:hover {
  transform: translateY(-2px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow);
}

.company-card h3,
.member-card h3,
.news-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-title-link {
  color: var(--ink);
  text-decoration: none;
}

.card-title-link:hover {
  color: var(--primary);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-actions .btn {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
}

.meta-list {
  display: grid;
  gap: 7px;
  margin: 11px 0 0;
  color: #475467;
  font-size: 13px;
}

.meta-list span {
  overflow-wrap: anywhere;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #475467;
  background: #f2f4f7;
  font-size: 12px;
}

.platform-matrix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.platform-tile {
  min-width: 0;
  padding: 8px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.platform-tile.is-ready {
  border-style: solid;
  border-color: #bfe7df;
  background: #f4fbf9;
}

.qr-box {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(23, 74, 124, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 124, 0.14) 1px, transparent 1px),
    #fff;
  background-size: 9px 9px;
}

.qr-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 6px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.platform-label {
  display: grid;
  gap: 4px;
  margin-top: 7px;
  min-width: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.25;
}

.platform-label a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.platform-label strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-state {
  color: var(--muted);
  font-size: 11px;
}

.platform-state.ready {
  color: var(--success);
}

.people-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
  align-items: stretch;
  margin: 18px 0;
}

.member-page-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 6px 0 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.member-page-tab {
  min-height: 40px;
  padding: 8px 18px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.member-page-tab.active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 10px rgba(23, 32, 51, 0.08);
}

.member-page-panel {
  display: none;
}

.member-page-panel.active {
  display: block;
}

.people-feature-carousel,
.people-visual-media,
.people-spotlight-panel,
.theme-visual-main,
.theme-visual-side img,
.commerce-visual-strip article,
.visual-card,
.visual-module-card,
.commerce-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.people-visual-media img,
.feature-slide img,
.theme-visual-main img,
.theme-visual-side img,
.commerce-visual-strip img,
.visual-card-media img,
.visual-module-icon img,
.commerce-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-visual-media {
  min-height: 300px;
}

.people-feature-carousel {
  position: relative;
  min-height: 340px;
  background: #061826;
}

.feature-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(280px, 1fr);
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.feature-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.feature-slide img {
  min-height: 340px;
  background: #e8eef4;
}

.feature-slide-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px 58px 34px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 24, 38, 0.94), rgba(8, 89, 82, 0.88)),
    #0b3a3d;
}

.feature-slide-copy span {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #d7f4ef;
  font-size: 12px;
  font-weight: 900;
}

.feature-slide-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
}

.feature-slide-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.feature-slide-link {
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 24, 38, 0.58);
  box-shadow: 0 10px 24px rgba(6, 24, 38, 0.24);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.feature-carousel-arrow.prev {
  left: 14px;
}

.feature-carousel-arrow.next {
  right: 14px;
}

.feature-carousel-dots {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.feature-carousel-dots button.active {
  width: 26px;
  background: #fff;
}

.people-spotlight-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.people-spotlight-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.people-spotlight-panel p {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.people-spotlight-list {
  display: grid;
  gap: 9px;
  margin-top: 6px;
}

.spotlight-person {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  color: inherit;
  background: #f8fbfd;
  text-decoration: none;
}

.spotlight-person strong,
.commerce-seller strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.spotlight-person em,
.commerce-seller em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.chairman-feature-section {
  scroll-margin-top: 94px;
}

.chairman-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
}

.chairman-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  min-height: 156px;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.chairman-card:hover {
  border-color: #b9c7d8;
  box-shadow: var(--shadow-soft);
}

.chairman-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.chairman-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.chairman-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.chairman-card h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.chairman-card strong {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.35;
}

.chairman-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.chairman-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  gap: 8px;
}

.chairman-card .card-actions .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  white-space: nowrap;
}

.people-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.person-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #edf5fc;
}

.person-photo-card {
  height: 260px;
}

.person-photo-mini,
.person-photo-seller,
.person-photo-spotlight,
.person-photo-origin,
.person-photo-chairman,
.person-photo-chamber-member,
.person-photo-detail {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.person-photo-detail {
  width: 86px;
  height: 108px;
}

.person-photo-seller {
  width: 38px;
  height: 38px;
}

.person-photo-chamber-member {
  width: 72px;
  height: 88px;
}

.person-photo-chairman {
  width: 88px;
  height: 132px;
}

.person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.person-photo.has-real-photo {
  background: linear-gradient(180deg, #f8fbff, #edf5fc);
}

.person-photo-card.has-real-photo img {
  object-fit: contain;
}

.person-photo-mini.has-real-photo img,
.person-photo-seller.has-real-photo img,
.person-photo-spotlight.has-real-photo img,
.person-photo-origin.has-real-photo img,
.person-photo-chamber-member.has-real-photo img {
  object-position: center 12%;
}

.person-photo-detail.has-real-photo img {
  object-position: center top;
}

.person-photo span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 74, 124, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.person-photo-mini span,
.person-photo-seller span,
.person-photo-spotlight span,
.person-photo-origin span,
.person-photo-chairman span,
.person-photo-chamber-member span,
.person-photo-detail span {
  display: none;
}

.people-card-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.people-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.people-card-head h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 22px;
}

.people-card-head p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.title-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.title-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid #dbe6ef;
  border-radius: 999px;
  color: #344054;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
}

.investment-map {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.investment-map > span,
.people-online-row > span {
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 900;
}

.investment-map strong {
  color: var(--ink);
  line-height: 1.35;
}

.investment-map p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.people-online-row {
  display: grid;
  gap: 7px;
}

.member-name-cell {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 9px;
  align-items: center;
}

.commerce-visual-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 14px;
  margin: 18px 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

body[data-page="product-services"] .page-head,
body[data-page="product-services"] .commerce-visual-strip,
body[data-page="product-services"] .stat-row {
  display: none !important;
}

.commerce-visual-strip article {
  position: relative;
  min-height: 170px;
  scroll-snap-align: start;
}

.commerce-visual-strip span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.commerce-feed {
  columns: 4 230px;
  column-gap: 14px;
}

.product-category-panel {
  margin-bottom: 16px;
}

.product-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.product-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid #d4e3ee;
  border-radius: 999px;
  color: #234a69;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}

.product-category-tab strong {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: 999px;
  color: #426079;
  background: #eaf3f8;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.product-category-tab:hover,
.product-category-tab.active {
  border-color: rgba(180, 35, 24, 0.22);
  color: #9f2d24;
  background: #fffaf8;
}

.product-category-tab:hover strong,
.product-category-tab.active strong {
  color: #9f2d24;
  background: #f5ddd9;
}

.product-taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-taxonomy-card {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.product-taxonomy-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.product-taxonomy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.commerce-card:hover {
  transform: translateY(-2px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow);
}

.commerce-image-link {
  display: block;
  height: 214px;
}

.commerce-card:nth-child(4n + 1) .commerce-image-link {
  height: 270px;
}

.commerce-card:nth-child(5n + 2) .commerce-image-link {
  height: 185px;
}

.commerce-card-body {
  display: grid;
  gap: 11px;
  padding: 12px;
}

.commerce-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.commerce-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.58;
}

.product-company-line {
  display: grid;
  gap: 4px;
  padding: 9px;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  background: #f8fbfd;
}

.product-company-line strong {
  color: var(--ink);
  font-size: 13px;
}

.product-company-line span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.product-service-card .card-actions {
  justify-content: center;
}

.product-service-card .card-actions .btn {
  flex: 0 0 auto;
  min-width: 86px;
}

.commerce-seller {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  align-items: center;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.product-detail-media {
  margin: 0;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.product-detail-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.product-detail-summary p {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
}

.theme-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.7fr);
  gap: 14px;
  min-height: 330px;
  margin: 18px 0;
}

.agriculture-visual-hero {
  display: none !important;
}

.theme-visual-side {
  display: grid;
  gap: 14px;
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.agriculture-segment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}

.agriculture-segment-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.agriculture-segment-tab strong {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: #6b4d12;
  background: #fff5d6;
  font-size: 12px;
}

.agriculture-segment-tab:hover,
.agriculture-segment-tab.active {
  border-color: rgba(0, 121, 107, 0.36);
  background: #effaf7;
}

.recruitment-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 16px;
}

.recruitment-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.recruitment-category-tab:hover,
.recruitment-category-tab.active {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(21, 85, 134, 0.14);
}

.agriculture-segment-list {
  display: grid;
  gap: 18px;
}

.agriculture-segment-section {
  display: grid;
  gap: 12px;
}

.agriculture-segment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbe6ef;
}

.agriculture-segment-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.agriculture-segment-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.famous-attraction-panel,
.district-tourism-panel {
  margin-bottom: 16px;
}

.famous-attraction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.famous-attraction-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.famous-attraction-card.is-top {
  grid-column: span 2;
  grid-row: span 2;
}

.famous-attraction-card:hover,
.district-tourism-card:hover,
.district-scenic-card:hover {
  transform: translateY(-2px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow);
}

.famous-attraction-card figure {
  position: relative;
  height: 170px;
  margin: 0;
}

.famous-attraction-card.is-top figure {
  height: 320px;
}

.famous-attraction-card img,
.district-tourism-card img,
.district-detail-head img,
.district-scenic-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.famous-attraction-card figure span {
  position: absolute;
  left: 12px;
  top: 12px;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(180, 35, 24, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.famous-attraction-card > div {
  display: grid;
  gap: 9px;
  padding: 13px;
}

.famous-attraction-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.famous-attraction-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.58;
}

.district-tourism-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.district-tourism-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.district-tourism-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: inherit;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.district-tourism-card.active {
  border-color: rgba(180, 35, 24, 0.32);
  background: #fff8f5;
}

.district-tourism-card img {
  height: 92px;
  border-radius: 6px;
}

.district-tourism-card span {
  color: var(--primary-2);
  font-size: 11px;
  font-weight: 900;
}

.district-tourism-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.district-tourism-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.district-tourism-detail {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.region-tourism-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.region-tourism-tab {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #c9ddec;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.region-tourism-tab:hover,
.region-tourism-tab.active {
  border-color: rgba(23, 74, 124, 0.28);
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-soft);
}

.region-tourism-detail {
  display: grid;
  gap: 14px;
}

.region-scenic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.district-detail-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.district-detail-head img {
  min-height: 220px;
  border-radius: 8px;
}

.district-detail-head div {
  display: grid;
  align-content: center;
  gap: 10px;
}

.district-detail-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.district-detail-head p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

.district-scenic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.district-scenic-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.district-scenic-card img {
  height: 180px;
}

.district-scenic-card div {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.district-scenic-card strong {
  color: var(--ink);
  line-height: 1.3;
}

.district-scenic-card span {
  color: var(--muted);
  font-size: 12px;
}

.district-scenic-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.district-policy-list {
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #fff;
}

.attraction-detail-page-card {
  display: grid;
  gap: 16px;
}

.attraction-detail-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.attraction-detail-hero figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #eef4f8;
}

.attraction-detail-hero img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.attraction-detail-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.attraction-detail-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.attraction-detail-summary p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

.attraction-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.attraction-detail-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-attraction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.related-attraction-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.related-attraction-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.related-attraction-card strong,
.related-attraction-card span {
  padding: 0 10px;
}

.related-attraction-card strong {
  padding-top: 10px;
  color: var(--ink);
}

.related-attraction-card span {
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.visual-card {
  display: grid;
  align-content: start;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.visual-card:hover,
.visual-module-card:hover {
  transform: translateY(-2px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow);
}

.visual-card.is-featured {
  grid-column: span 2;
}

.visual-card-media {
  position: relative;
  height: 190px;
  margin: 0;
}

.visual-card.is-featured .visual-card-media {
  height: 250px;
}

.visual-card-media .tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(231, 247, 244, 0.95);
}

.visual-card-body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.visual-card-body h3,
.visual-module-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.32;
}

.visual-card-body p,
.visual-module-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.6;
}

.visual-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.visual-module-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.visual-module-icon {
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.entrance-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
}

.sample-phone {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 250px;
  padding: 18px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 16px 32px rgba(23, 32, 51, 0.1);
}

.phone-top {
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: #d0d5dd;
}

.sample-phone span {
  color: var(--muted);
  font-size: 12px;
}

.phone-qr {
  width: 116px;
  aspect-ratio: 1;
  border: 8px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--primary) 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(0deg, var(--primary-2) 10px, transparent 10px) 0 0 / 22px 22px,
    #edf5fc;
  box-shadow: inset 0 0 0 1px #d8dee8;
}

.empty {
  color: var(--muted);
}

.panel.version-history-panel {
  overflow: hidden;
  padding: 0;
}

.version-history-table {
  display: grid;
  background: #fff;
}

.version-history-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  border-bottom: 1px solid rgba(213, 224, 234, 0.95);
}

.version-history-row:last-child {
  border-bottom: 0;
}

.version-history-version {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(213, 224, 234, 0.95);
  color: #2f6df6;
  background: #eaf2fb;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.version-history-detail {
  min-width: 0;
  padding: 26px 30px 28px;
  background: #fff;
}

.version-history-date {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.version-history-changes {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.72;
}

.version-history-changes p {
  margin: 0;
}

.version-history-changes strong {
  color: var(--ink);
  font-weight: 900;
}

.quick-list {
  display: grid;
  gap: 9px;
}

.quick-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #344054;
  text-decoration: none;
}

.quick-item:hover {
  color: var(--primary);
}

.quick-item:last-child {
  border-bottom: 0;
}

.quick-item strong {
  color: var(--text);
}

.tabs {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.tab {
  min-height: 32px;
  padding: 5px 11px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.tab.active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 32, 51, 0.08);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.network-canvas {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(23, 74, 124, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 124, 0.05) 1px, transparent 1px),
    #fbfdff;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.14);
}

.node.company {
  background: var(--primary-2);
}

.node.role {
  background: var(--accent);
}

.node.region-node {
  background: #475467;
}

.edge {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: rgba(23, 74, 124, 0.28);
}

.page-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.admin-page .page-head,
.company-submit-page .page-head {
  align-items: start;
}

.enterprise-account-layout,
.account-center-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}

.enterprise-account-sidebar,
.account-center-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.enterprise-account-nav,
.account-center-nav {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #344054;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
}

.enterprise-account-nav:hover,
.enterprise-account-nav:focus-visible,
.enterprise-account-nav.active,
.account-center-nav:hover,
.account-center-nav:focus-visible,
.account-center-nav.active {
  border-color: #c9ddec;
  color: var(--primary);
  background: #edf5fc;
}

.enterprise-account-main,
.account-center-main {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.enterprise-account-main [hidden] {
  display: none !important;
}

.enterprise-account-main #enterprise-password,
.enterprise-account-main #enterprise-personal,
.enterprise-account-main [data-submit-section] {
  scroll-margin-top: 96px;
}

.account-data-workspace {
  display: grid;
  gap: 16px;
  scroll-margin-top: 96px;
}

.account-data-tabbar {
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  padding: 6px;
  border: 1px solid #d7e5f0;
  border-radius: 8px;
  background: #f8fbfd;
}

.account-data-tab {
  min-width: 128px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #344054;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.account-data-tab.active,
.account-data-tab:hover,
.account-data-tab:focus-visible {
  border-color: #c9ddec;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 74, 124, 0.08);
}

.account-data-panel {
  display: none;
}

.account-data-panel.active {
  display: grid;
  gap: 16px;
}

.enterprise-submit-block {
  scroll-margin-top: 96px;
}

.material-import-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #d7e5f0;
  border-radius: 8px;
  background: #f8fbfd;
}

.product-items {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.product-item {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d7e5f0;
  border-radius: 8px;
  background: #fff;
}

.product-item-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.product-item-title {
  color: var(--text);
  font-weight: 900;
}

.product-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-item-grid label:last-child {
  grid-column: 1 / -1;
}

.admin-stat-row .stat-value.small {
  max-width: 260px;
  overflow: hidden;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-stat-overview {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.member-stat-overview .stat-card {
  min-height: 118px;
  padding: 14px;
}

.member-stat-overview .stat-label {
  font-size: 13px;
}

.member-stat-overview .stat-value {
  font-size: 31px;
}

.member-stat-overview .stat-meta {
  font-size: 12px;
}

.member-stat-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.member-stat-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.member-stat-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.member-stat-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-stat-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 30px;
  padding: 6px 8px;
  border: 1px solid #e4edf5;
  border-radius: 7px;
  background: #f8fbff;
  color: #344054;
  font-size: 13px;
}

.member-stat-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.member-stat-list strong {
  color: var(--primary);
  font-weight: 800;
}

.admin-shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.admin-nav {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #344054;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.admin-nav:hover,
.admin-nav.active {
  border-color: #c9ddec;
  color: var(--primary);
  background: #edf5fc;
}

.admin-subnav-group {
  position: relative;
  display: grid;
  gap: 4px;
  margin: -4px 0 10px 8px;
  padding: 6px 0 6px 12px;
  border-left: 1px solid #d7e3ee;
  background: linear-gradient(90deg, rgba(239, 246, 252, 0.82), rgba(255, 255, 255, 0));
}

.admin-subnav {
  position: relative;
  min-height: 32px;
  width: 100%;
  padding: 7px 10px 7px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #344054;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  text-align: left;
  line-height: 1.25;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-subnav:hover,
.admin-subnav.active {
  color: var(--primary);
  background: #f3f8fd;
}

.admin-subnav:hover {
  border-color: #d5e5f2;
}

.admin-subnav.active {
  border-color: #bdd8ed;
  background: #eaf4fb;
  box-shadow: 0 4px 12px rgba(21, 81, 130, 0.08);
}

.admin-subnav.active::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -13px;
  width: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.admin-main {
  min-width: 0;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: grid;
  gap: 16px;
}

.analytics-panel {
  align-content: start;
}

.analytics-actions,
.analytics-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.analytics-filter-bar {
  padding: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.analytics-filter-bar input,
.analytics-filter-bar select {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  font-weight: 700;
}

.analytics-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.analytics-stat-card,
.analytics-card {
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #fff;
}

.analytics-stat-card {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.analytics-stat-card span {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.analytics-stat-card strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.analytics-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  min-width: 0;
}

.analytics-events-card {
  margin-top: 2px;
}

.compact-table {
  font-size: 13px;
}

.compact-table th,
.compact-table td {
  padding: 9px 10px;
  vertical-align: top;
}

.compact-table td strong,
.compact-table td span {
  display: block;
}

.analytics-meter {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 7px;
  margin: 0 0 5px;
  border-radius: 999px;
  background: #e4edf5;
}

.analytics-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.analytics-pagination {
  justify-content: flex-end;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  font-weight: 600;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: 3px solid rgba(23, 74, 124, 0.12);
  border-color: #8fb2d1;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: start;
}

.join-application-form {
  gap: 16px;
}

.join-consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.join-consent input {
  width: auto;
  min-height: auto;
}

.join-side-panel {
  display: grid;
  gap: 14px;
}

.join-step-list {
  display: grid;
  gap: 8px;
}

.join-step-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 9px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.join-step-list strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
}

.join-step-list span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.join-result {
  display: grid;
  gap: 10px;
}

.join-result-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #c9ddec;
  border-radius: 8px;
  background: #f8fbff;
}

.join-result-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.join-result-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.join-result-card strong {
  color: var(--primary);
  font-size: 13px;
}

.join-wechat-guide {
  display: grid;
  gap: 9px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #d7e2ea;
}

.join-wechat-guide > strong {
  color: var(--ink);
  font-size: 15px;
}

.join-wechat-guide p {
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.join-wechat-list {
  display: grid;
  gap: 8px;
}

.join-wechat-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding: 8px;
  border: 1px solid rgba(173, 190, 208, 0.72);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-inset);
}

.join-wechat-qr {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border: 1px dashed #b9c9d8;
  border-radius: 8px;
  overflow: hidden;
  color: var(--muted);
  background: #f8fbfd;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.join-wechat-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-wechat-entry div:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.join-wechat-entry span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.join-wechat-entry strong,
.join-wechat-entry a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

[data-join-note][data-tone="error"] {
  color: var(--danger);
}

[data-join-note][data-tone="success"] {
  color: var(--success);
}

.single-member-create {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-single-head {
  align-items: center;
  justify-content: space-between;
}

.single-member-form {
  gap: 12px;
}

.single-member-result[hidden] {
  display: none;
}

.single-member-result-card {
  margin-top: 4px;
}

.invited-enterprises-panel {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.invited-enterprises-table {
  min-width: 980px;
}

.invited-enterprises-table th,
.invited-enterprises-table td {
  vertical-align: middle;
}

.invited-enterprises-table code {
  display: block;
  max-width: 360px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #344054;
  background: #f4f7fa;
  font-size: 12px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.import-zone {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: 14px;
}

.file-drop {
  display: grid;
  place-items: center;
  min-height: 164px;
  padding: 18px;
  border: 1px dashed #a9bfd4;
  border-radius: 8px;
  color: var(--primary);
  background: #f8fbff;
  cursor: pointer;
  text-align: center;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop strong {
  font-size: 18px;
}

.file-drop span,
.paste-import span {
  color: var(--muted);
  font-size: 13px;
}

.paste-import {
  display: grid;
  gap: 10px;
}

.paste-import textarea {
  width: 100%;
  min-height: 124px;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  resize: vertical;
}

.admin-table-head {
  justify-content: space-between;
}

.admin-member-filter-panel {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(140px, 180px) auto;
  gap: 10px;
  align-items: end;
  margin: 10px 0 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.admin-member-filter-panel[hidden] {
  display: none;
}

.admin-member-filter-field {
  display: grid;
  gap: 5px;
}

.admin-member-filter-field span {
  color: #475467;
  font-size: 12px;
  font-weight: 400;
}

.admin-member-filter-field .table-input {
  width: 100%;
}

.admin-member-filter-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.admin-panel[data-admin-panel="member-view"] .table-wrap {
  overflow: visible;
}

.admin-data-table {
  min-width: 0;
  table-layout: fixed;
}

.admin-data-table .admin-member-col-name {
  width: 7%;
}

.admin-data-table .admin-member-col-company {
  width: 15%;
}

.admin-data-table .admin-member-col-title {
  width: 6.5%;
}

.admin-data-table .admin-member-col-origin {
  width: 5.5%;
}

.admin-data-table .admin-member-col-industry {
  width: 9%;
}

.admin-data-table .admin-member-col-chamber-role {
  width: 8.5%;
}

.admin-data-table .admin-member-col-expiry {
  width: 12.2%;
}

.admin-data-table .admin-member-col-display {
  width: 8%;
}

.admin-data-table .admin-member-col-hide {
  width: 3.8%;
}

.admin-data-table .admin-member-col-invite {
  width: 7%;
}

.admin-data-table .admin-member-col-action {
  width: 5.2%;
}

.admin-data-table th,
.admin-data-table td {
  padding: 8px 5px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.admin-data-table thead th {
  position: sticky;
  top: 72px;
  z-index: 5;
  background: #f8fafc;
  box-shadow: 0 1px 0 var(--line);
}

.admin-data-table .table-input {
  min-height: 32px;
  padding: 5px 6px;
  border-color: rgba(17, 61, 103, 0.14);
  border-radius: 6px;
  background: rgba(248, 251, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  align-content: center;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.admin-data-table .table-input:focus {
  border-color: rgba(17, 61, 103, 0.34);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(17, 61, 103, 0.08);
  outline: none;
}

.admin-data-table .admin-member-plain {
  display: inline;
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.admin-data-table .member-name-text {
  white-space: normal;
}

.admin-data-table .member-title-input,
.admin-data-table .member-company-input,
.admin-data-table .member-origin-input,
.admin-data-table .member-role-select {
  white-space: normal;
}

.admin-data-table textarea.member-field-input {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
  resize: none;
  align-content: center;
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.admin-data-table textarea.member-field-input::-webkit-resizer,
.admin-data-table textarea.member-field-input::-webkit-scrollbar {
  display: none;
}

.admin-member-hide-cell input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.admin-data-table .status-pill {
  justify-content: center;
  min-width: 0;
  padding: 2px 6px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: nowrap;
  word-break: break-word;
}

.admin-data-table .table-input {
  width: 116px;
  max-width: 100%;
  min-height: 32px;
  padding: 5px 7px;
  border-color: rgba(17, 61, 103, 0.14);
  background: rgba(248, 251, 255, 0.7);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  align-content: center;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.admin-data-table .member-expiry-input {
  width: 132px;
  min-width: 126px;
  padding-left: 5px;
  padding-right: 4px;
  font-size: 12px;
}

.admin-data-table .member-role-select {
  width: 100%;
  min-width: 92px;
}

.admin-data-table .table-check {
  justify-content: center;
  min-height: 28px;
  gap: 0;
}

.admin-data-table .table-check span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.admin-data-table .btn.mini {
  min-height: 26px;
  padding: 3px 5px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.status-pill.ready {
  color: #065f46;
  background: #dff7ec;
}

.status-pill.warn {
  color: #92400e;
  background: #fef3c7;
}

.status-pill.danger {
  color: #991b1b;
  background: #fee2e2;
}

.table-input {
  width: 150px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  font-weight: 700;
}

.table-check {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.invite-list,
.review-list {
  display: grid;
  gap: 12px;
}

.panel-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.approval-stack {
  display: grid;
  gap: 18px;
}

.invite-card,
.review-card,
.invite-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.invite-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.invite-card strong,
.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.invite-card span,
.review-card span {
  color: var(--muted);
  font-size: 13px;
}

.invite-card code {
  display: block;
  margin-top: 6px;
  padding: 7px 8px;
  border-radius: 6px;
  color: #344054;
  background: #f4f7fa;
  font-size: 12px;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.invite-card .card-actions {
  justify-content: flex-end;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.review-head {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.review-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4f7fa;
}

.review-card p {
  margin: 0;
  color: #475467;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 800;
}

.checkbox-grid input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.invite-summary {
  margin-bottom: 16px;
  padding: 14px;
}

.invite-summary:empty {
  display: none;
}

.invite-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.invite-summary-grid div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 8px;
  background: #f8fafc;
}

.invite-summary-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.invite-summary-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.submit-form {
  gap: 16px;
}

.submit-form.is-submitted {
  opacity: 0.86;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.auth-layout-single {
  display: grid;
  grid-template-columns: minmax(320px, clamp(360px, 34vw, 520px));
  justify-content: center;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: #94a3b8;
  font-weight: 600;
  opacity: 1;
}

.auth-form textarea {
  min-height: 116px;
  resize: vertical;
  line-height: 1.6;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  outline: 3px solid rgba(23, 74, 124, 0.12);
  border-color: #8fb2d1;
}

.auth-switch-line {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.auth-switch-line a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.auth-switch-line a:hover {
  text-decoration: underline;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 16px;
}

.account-hero h1 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.18;
}

.account-hero p {
  margin: 0;
  max-width: 760px;
  color: #475467;
}

.account-hero-main {
  display: flex;
  gap: 16px;
  align-items: center;
}

.account-hero-avatar,
.account-avatar-preview {
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  color: var(--primary);
  background: #f4faf8;
  font-weight: 900;
}

.account-hero-avatar {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  font-size: 28px;
}

.account-avatar-preview {
  width: 108px;
  height: 108px;
  font-size: 34px;
}

.account-hero-avatar img,
.account-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-session-box {
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 14px;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  background: #f8fbfd;
}

.account-session-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.account-session-box strong {
  margin-bottom: 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.account-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.account-card:hover {
  transform: translateY(-2px);
  border-color: #b9c7d8;
  box-shadow: var(--shadow);
}

.account-card strong {
  color: var(--ink);
  font-size: 17px;
}

.account-card span {
  color: #475467;
  font-size: 13px;
  line-height: 1.6;
}

.account-profile-panel {
  margin-bottom: 16px;
}

.chamber-account-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.chamber-account-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.chamber-account-nav {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #344054;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
}

.chamber-account-nav:hover,
.chamber-account-nav.active {
  border-color: #c9ddec;
  color: var(--primary);
  background: #edf5fc;
}

.chamber-account-nav:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.chamber-member-submenu {
  margin: -2px 0 8px 8px;
}

.chamber-account-subnav[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.chamber-account-main {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.account-password-panel {
  margin-bottom: 0;
}

.account-profile-form {
  display: grid;
  gap: 16px;
}

.account-avatar-editor {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.account-avatar-fields {
  display: grid;
  gap: 10px;
}

.account-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-name-apply-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.account-name-apply-row .btn {
  min-height: 42px;
  padding-inline: 14px;
  white-space: nowrap;
}

.account-profile-block {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.account-profile-block h3 {
  margin: 0;
  color: var(--primary-2);
  font-size: 15px;
}

.account-profile-form label {
  display: grid;
  gap: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.account-profile-form input,
.account-profile-form select,
.account-profile-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.account-profile-form textarea {
  min-height: 116px;
  resize: vertical;
  line-height: 1.6;
}

.account-profile-form input:focus,
.account-profile-form select:focus,
.account-profile-form textarea:focus {
  outline: 3px solid rgba(23, 74, 124, 0.12);
  border-color: #8fb2d1;
}

.account-profile-wide {
  grid-column: 1 / -1;
}

.avatar-upload-line input {
  padding-top: 8px;
}

.account-profile-actions {
  display: flex;
  justify-content: center;
}

.account-profile-actions .btn {
  min-width: 160px;
}

.account-empty-panel {
  display: grid;
  gap: 12px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 360px;
  padding: 12px 14px;
  border: 1px solid #bfe7df;
  border-radius: 8px;
  color: #064e45;
  background: #e7f7f4;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.empty {
  display: none;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: var(--surface);
}

/* Executive UI refresh */
.china-map,
.world-globe-stage {
  border-color: rgba(173, 190, 208, 0.72);
  background: linear-gradient(180deg, #ffffff, #f6fafc);
  box-shadow: var(--shadow-inset);
}

.chamber-profile-card,
.chamber-card,
.chamber-member-card,
.chairman-card,
.origin-member-card,
.company-card,
.member-card,
.visual-card,
.news-feed-card,
.account-card,
.timeline-item,
.template-module-list span,
.chamber-channel-card,
.quick-item {
  border-color: rgba(213, 224, 234, 0.9);
  box-shadow: var(--shadow-soft);
}

.chamber-profile-card:hover,
.chamber-card:hover,
.chamber-member-card:hover,
.chairman-card:hover,
.origin-member-card:hover,
.company-card:hover,
.member-card:hover,
.visual-card:hover,
.news-feed-card:hover,
.account-card:hover,
.timeline-item:hover,
.chamber-channel-card:hover,
.quick-item:hover {
  border-color: rgba(17, 61, 103, 0.22);
  box-shadow: var(--shadow-card);
}

.tag,
.news-type-badge,
.product-category-tab,
.agriculture-segment-tab,
.recruitment-category-tab,
.region-tourism-tab,
.member-page-tab,
.tab {
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.tab.active,
.member-page-tab.active,
.product-category-tab.active,
.agriculture-segment-tab.active,
.recruitment-category-tab.active,
.region-tourism-tab.active {
  box-shadow: inset 0 0 0 1px rgba(17, 61, 103, 0.08), 0 10px 22px rgba(17, 61, 103, 0.1);
}

.data-table th {
  background: linear-gradient(180deg, #f8fbff, #eef5fb);
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9b8cb;
  background: #1c2a3d;
}

.site-footer a {
  color: #a9b8cb;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-placeholder-link {
  color: #7f90a7;
  cursor: default;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) max-content max-content max-content;
  column-gap: 28px;
  row-gap: 24px;
  align-items: start;
  padding: 34px 0 14px;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: max-content minmax(0, 430px);
  grid-template-rows: auto auto;
  justify-content: start;
  align-items: center;
  align-self: start;
  column-gap: 14px;
  row-gap: 12px;
  max-width: 700px;
}

.footer-brand {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.footer-brand-logo {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.footer-brand-text {
  display: contents;
  max-width: 430px;
}

.footer-brand-heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  white-space: nowrap;
}

.footer-brand-copy {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  margin: 0;
  max-width: 430px;
  color: #9fb0c4;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.footer-column,
.footer-follow {
  display: grid;
  gap: 12px;
  color: #a9b8cb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h2,
.footer-follow h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.footer-column p,
.footer-bottom p {
  margin: 0;
}

.footer-qr-card {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-qr-placeholder {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer-qr-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.footer-follow span {
  color: #dce6f2;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(169, 184, 203, 0.18);
  color: #8192a9;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer-back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 61, 103, 0.18);
  border-radius: 10px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.footer-back-top:hover,
.footer-back-top:focus-visible {
  color: #0d6b61;
  border-color: rgba(8, 121, 111, 0.24);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .nav {
    height: auto;
    align-items: flex-start;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    flex-basis: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .toolbar,
  .toolbar.compact {
    grid-template-columns: 1fr 1fr;
  }

  .layout-grid,
  .dashboard-grid,
  .handoff-grid,
  .chamber-map-grid,
  .chamber-template-grid,
  .news-layout,
  .map-hero-head,
  .origin-map-grid,
  .origin-drilldown-grid,
  .admin-shell,
  .enterprise-account-layout,
  .account-center-layout,
  .import-zone,
  .auth-layout,
  .chamber-account-layout,
  .account-hero {
    grid-template-columns: 1fr;
  }

  .admin-sidebar,
  .enterprise-account-sidebar,
  .account-center-sidebar,
  .chamber-account-sidebar {
    position: static;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow-x: auto;
  }

  .admin-nav,
  .enterprise-account-nav,
  .account-center-nav,
  .chamber-account-nav {
    text-align: center;
    white-space: nowrap;
  }

  .map-hero-actions {
    justify-content: flex-start;
  }

  .stat-row,
  .card-grid,
  .people-grid,
  .visual-card-grid,
  .visual-module-grid,
  .famous-attraction-grid,
    .district-scenic-grid,
    .product-taxonomy-grid,
    .account-profile-grid,
    .account-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  .member-stat-breakdown {
    grid-template-columns: 1fr;
  }

  .people-visual-hero,
  .theme-visual-hero,
  .product-detail-hero,
  .attraction-detail-hero,
  .district-tourism-layout,
  .district-detail-head {
    grid-template-columns: 1fr;
  }

  .platform-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-sidebar .admin-subnav-group {
    grid-column: 1 / -1;
    margin: -2px 0 10px;
  }

  .chamber-account-sidebar .chamber-member-submenu {
    grid-column: 1 / -1;
    margin: -2px 0 10px;
  }

  .business-card-main {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .person-photo-card-share {
    width: 140px;
    height: 178px;
  }

  .business-card-facts,
  .business-card-online-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .person-profile-entry-grid {
    grid-template-columns: 1fr;
  }

  .business-card-main,
  .business-card-facts,
  .business-card-online-grid {
    grid-template-columns: 1fr;
  }

  .business-card-shell {
    gap: 12px;
    padding: 14px;
  }

  .business-card-main {
    justify-items: center;
    text-align: center;
  }

  .person-photo-card-share {
    width: 150px;
    height: 188px;
  }

  .member-profile-head {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .member-profile-head .person-photo-detail {
    width: 150px;
    height: 188px;
  }

  .member-profile-head h3 {
    font-size: 30px;
  }

  .member-profile-head .member-profile-company {
    font-size: 17px;
  }

  .member-profile-head .tag,
  .member-profile-head .tag.teal,
  .member-profile-head .tag.gold {
    min-height: 30px;
    font-size: 14px;
  }

  .business-card-head h2 {
    font-size: 30px;
  }

  .business-card-company,
  .business-card-section {
    padding: 12px;
  }

  .container {
    max-width: calc(100% - 24px);
  }

  .auth-layout-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-map-shell {
    max-width: calc(100% - 24px);
  }

  .home-united-front-section {
    max-width: calc(100% - 24px);
    margin-bottom: 12px;
    padding: 12px 0;
  }

  .united-front-heading h1 {
    font-size: 19px;
  }

  .united-front-grid p,
  .united-front-card-body span:not(.united-front-label) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .united-front-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .united-front-grid article {
    gap: 6px;
    padding: 12px;
  }

  .united-front-grid h2 {
    font-size: 13px;
  }

  .united-front-lead-link {
    grid-template-columns: minmax(0, 1fr);
  }

  .united-front-lead-media {
    height: 190px;
    min-height: 0;
  }

  .united-front-lead-media img {
    min-height: 0;
  }

  .united-front-card-body {
    gap: 5px;
    padding: 10px 12px;
  }

  .united-front-card-body strong {
    font-size: 14px;
  }

  .united-front-side {
    grid-template-rows: none;
    gap: 8px;
  }

  .nav {
    gap: 10px;
    padding: 10px 0 8px;
    align-items: center;
  }

  .brand {
    min-width: 104px;
  }

  .brand-logo {
    width: 104px;
    height: 48px;
  }

  .menu {
    margin: 0 -12px;
    padding: 4px 12px 6px;
    gap: 6px;
    scroll-snap-type: x proximity;
  }

  .menu a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
    scroll-snap-align: start;
  }

  .nav-actions:not(.site-auth-actions) {
    display: none;
  }

  .site-auth-actions {
    order: 2;
    display: flex;
    margin-left: auto;
  }

  .auth-nav-link,
  .site-auth-actions a[href="./register.html"].btn,
  .site-auth-actions a[href="./login.html"].btn {
    font-size: 14px;
  }

  .page-head {
    grid-template-columns: 1fr;
  }

  .page-hero-carousel {
    aspect-ratio: 16 / 9;
    min-height: 260px;
  }

  .page-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
  }

  .page-hero-copy h2 {
    font-size: 22px;
  }

  .page-hero-copy p {
    font-size: 14px;
  }

  .page-hero-control {
    width: 34px;
    height: 34px;
  }

  .page-hero-control.prev {
    left: 10px;
  }

  .page-hero-control.next {
    right: 10px;
  }

  .page-hero-dots {
    right: 18px;
    bottom: 12px;
  }

  .page-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-shell {
    padding: 26px 0 18px;
  }

  .toolbar,
  .toolbar.compact,
  .stat-row,
  .card-grid,
  .people-grid,
  .visual-card-grid,
  .visual-module-grid,
  .famous-attraction-grid,
  .district-tourism-list,
  .district-scenic-grid,
  .attraction-detail-facts,
  .related-attraction-grid,
  .product-taxonomy-grid,
  .chamber-template-grid,
  .news-layout,
  .entrance-strip,
  .form-grid.two,
  .product-item-grid,
  .checkbox-grid,
  .invite-summary-grid,
  .join-layout,
  .account-avatar-editor,
  .account-profile-grid,
  .enterprise-account-layout,
  .account-card-grid {
    grid-template-columns: 1fr;
  }

  .page-actions,
  .invite-card,
  .review-head {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .admin-sidebar,
  .enterprise-account-sidebar,
  .account-center-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
  }

  .admin-sidebar .admin-subnav-group {
    grid-column: 1;
  }

  .chamber-account-sidebar {
    grid-template-columns: 1fr;
  }

  .chamber-account-sidebar .chamber-member-submenu {
    grid-column: 1;
  }

  .visual-card.is-featured {
    grid-column: span 1;
  }

  .famous-attraction-card.is-top {
    grid-column: span 1;
    grid-row: span 1;
  }

  .theme-visual-hero,
  .people-visual-hero {
    min-height: 0;
  }

  .theme-visual-side {
    grid-template-columns: 1fr 1fr;
  }

  .people-feature-carousel,
  .people-visual-media,
  .theme-visual-main {
    min-height: 220px;
  }

  .feature-slide {
    grid-template-columns: 1fr;
  }

  .feature-slide img {
    height: 190px;
    min-height: 190px;
  }

  .feature-slide-copy {
    align-content: start;
    min-height: 220px;
    padding: 22px 52px 48px 22px;
  }

  .feature-slide-copy h2 {
    font-size: 22px;
  }

  .feature-carousel-arrow {
    top: 95px;
  }

  .commerce-feed {
    columns: 1;
  }

  .news-feed {
    columns: 1;
  }

  .commerce-visual-strip {
    grid-auto-columns: 78%;
  }

  .person-photo-card,
  .commerce-image-link,
  .commerce-card:nth-child(4n + 1) .commerce-image-link,
  .commerce-card:nth-child(5n + 2) .commerce-image-link,
  .visual-card-media,
  .visual-card.is-featured .visual-card-media,
  .district-scenic-card img,
  .attraction-detail-hero img,
  .famous-attraction-card figure,
  .famous-attraction-card.is-top figure {
    height: 220px;
  }

  .news-feed-card {
    grid-template-columns: 1fr;
  }

  .platform-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .person-facts,
  .person-resource-grid,
  .chamber-platform-grid {
    grid-template-columns: 1fr;
  }

  .chamber-platform-grid.chamber-platform-qr-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chamber-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chamber-fact-card {
    grid-column: 1 / -1;
  }

  .chamber-fact-card.is-short {
    grid-column: span 1;
  }

  .chamber-fact-card.is-wide {
    grid-column: span 2;
  }

  .chamber-contact-facts {
    grid-template-columns: 0.75fr 1.05fr 1.8fr;
    gap: 7px;
  }

  .chamber-contact-item strong {
    font-size: 12px;
  }

  .chamber-card-head {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .chamber-card-logo {
    width: 64px;
    height: 64px;
  }

  .chamber-card-head h3 {
    font-size: 18px;
  }

  .bar-item {
    grid-template-columns: 72px 1fr 42px;
  }

  .chamber-map-panel,
  .chamber-detail {
    min-height: auto;
  }

  .chamber-map-panel {
    min-height: 380px;
  }

  .china-map {
    min-height: 0;
  }

  .home-map-title {
    left: 14px;
    top: 12px;
    right: 14px;
    min-height: 32px;
    font-size: 12px;
  }

  .home-chamber-dimensions {
    left: 14px;
    top: 92px;
    max-width: calc(100% - 28px);
  }

  .map-controls {
    right: 12px;
    top: 52px;
  }

  .overseas-chamber-box {
    width: 142px;
    min-width: 0;
    min-height: 0;
    right: -12px;
    bottom: 18px;
    padding: 8px 10px;
  }

  .yichang-map-panel {
    min-height: auto;
  }

  .yichang-map-wrap,
  .yichang-map-wrap svg {
    min-height: 360px;
    height: 360px;
  }

  .home-origin-primary .home-yichang-map,
  .home-origin-primary .home-yichang-map svg {
    min-height: 390px;
    height: 390px;
  }

  .origin-map-filter {
    top: 10px;
    right: 10px;
  }

  .origin-filter-toggle {
    max-width: 160px;
  }

  .origin-filter-menu {
    width: min(250px, calc(100vw - 48px));
  }

  .compact-origin-grid,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .chamber-dot {
    min-width: 50px;
    height: 30px;
    padding: 0 8px;
  }

  .node-card {
    grid-template-columns: 1fr;
  }

  .node-actions {
    justify-content: flex-start;
  }

  .site-footer-grid {
    grid-template-columns: 1.3fr 1fr;
    column-gap: 28px;
    row-gap: 22px;
  }

  .footer-brand-block,
  .footer-bottom {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .container {
    max-width: calc(100% - 20px);
  }

  .site-footer {
    margin-top: 28px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 22px;
    padding: 28px 0 14px;
  }

  .footer-brand-logo {
    width: 104px;
  }

  .footer-brand-block {
    display: grid;
    gap: 14px;
  }

  .footer-brand-copy {
    max-width: none;
    font-size: 14px;
    line-height: 1.75;
  }

  .footer-back-top {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .home-map-shell {
    max-width: calc(100% - 20px);
  }

  .page {
    padding: 16px 0 38px;
  }

  .page-head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .page-title {
    font-size: 22px;
  }

  .page-sub,
  .panel-note {
    font-size: 13px;
    line-height: 1.6;
  }

  .auth-layout-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .panel,
  .section-band {
    padding: 14px;
  }

  .panel + .panel {
    margin-top: 12px;
  }

  .panel-head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .panel-title {
    font-size: 17px;
  }

  .version-history-row {
    grid-template-columns: 1fr;
  }

  .version-history-version {
    justify-content: flex-start;
    min-height: 54px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 224, 234, 0.95);
    font-size: 17px;
  }

  .version-history-detail {
    padding: 18px;
  }

  .version-history-date {
    font-size: 18px;
  }

  .version-history-changes {
    font-size: 15px;
    line-height: 1.68;
  }

  .toolbar,
  .toolbar.compact {
    gap: 8px;
    margin: 12px 0;
    padding: 10px;
    border-radius: 8px;
  }

  .field input,
  .field select,
  .btn {
    min-height: 44px;
  }

  .toolbar .btn {
    width: 100%;
  }

  .product-category-tabs,
  .agriculture-segment-tabs,
  .recruitment-category-tabs,
  .region-tourism-tabs,
  .member-page-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -10px;
    margin-left: -10px;
    padding: 0 10px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-category-tabs::-webkit-scrollbar,
  .agriculture-segment-tabs::-webkit-scrollbar,
  .recruitment-category-tabs::-webkit-scrollbar,
  .region-tourism-tabs::-webkit-scrollbar,
  .member-page-tabs::-webkit-scrollbar,
  .menu::-webkit-scrollbar {
    display: none;
  }

  .product-category-tab,
  .agriculture-segment-tab,
  .recruitment-category-tab,
  .region-tourism-tab,
  .member-page-tab {
    flex: 0 0 auto;
    min-height: 42px;
    scroll-snap-align: start;
  }

  .card-actions .btn,
  .chamber-detail-actions .btn,
  .person-detail-actions .btn,
  .business-card-actions .btn {
    flex: 1 1 100%;
    min-height: 34px;
    padding: 7px 12px;
  }

  .chamber-list-card > .card-actions .btn,
  .chamber-detail-actions .btn,
  .person-detail-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 108px;
  }

  .chamber-detail-actions,
  .person-detail-actions {
    justify-content: center;
  }

  .stat-row {
    gap: 10px;
  }

  .member-stat-overview {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-value {
    font-size: 24px;
  }

  .theme-visual-side {
    grid-template-columns: 1fr;
  }

  .feature-slide-copy {
    padding: 20px 20px 48px;
  }

  .feature-carousel-arrow {
    top: 92px;
    width: 42px;
    height: 42px;
  }

  .feature-carousel-dots {
    right: 16px;
    bottom: 14px;
  }

  .chairman-card,
  .chamber-member-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .person-photo-chairman {
    width: 72px;
    height: 108px;
  }

  .chamber-map-panel {
    overflow-x: auto;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .china-map {
    min-width: 720px;
    min-height: 475px;
  }

  .home-map-title {
    font-size: 13px;
  }

  .overseas-chamber-box {
    width: 138px;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .data-table {
    min-width: 720px;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
