/* ChemLinked — design tokens from Figma */
:root {
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-primary: #009989;
  --hero-btn-shadow: 0 20px 25px rgba(0, 78, 39, 0.1), 0 10px 10px rgba(0, 78, 39, 0.05);
  --color-badge-text: #006d37;
  --color-badge-bg: rgba(46, 204, 113, 0.08);
  --color-badge-border: rgba(0, 109, 55, 0.1);
  --color-white: #FDFFFE;
  --color-hero-bg-end: #EAFFF3;
  --hero-bg: linear-gradient(135deg, #f7fffc 0%, #e5faf6 55%, #ffffff 100%);
  --color-nav-bg: rgba(255, 255, 255, 0.45);
  --gradient-title: linear-gradient(
    146.07deg,
    #2ecc71 0%,
    #0ea5e9 100%
  );
  --font-family: "Inter", system-ui, sans-serif;
  --hero-max-width: 1200px;
  --hero-nav-inset: 20px;
  --hero-nav-height: 66px;
  --hero-nav-gap: 78px;
  --hero-nav-top-offset: calc(var(--hero-nav-inset) + var(--hero-nav-height) + 48px);
  --color-nav-border: #ffffff;
  --color-nav-bg-scrolled: rgba(255, 255, 255, 0.9);
  --nav-shadow-scrolled: 0 4px 24px rgba(15, 23, 41, 0.06);
  --radius-pill: 9999px;
  --radius-hero: 40px;
  --layout-max: 1200px;
  --layout-content-inset: max(0px, (100vw - var(--layout-max)) / 2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  min-height: 100vh;
}

/* —— Hero section (Figma node 332:175) —— */
.hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--hero-nav-top-offset) var(--hero-nav-inset) 96px;
  background: var(--hero-bg);
  overflow: hidden;
  width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 32%, rgba(0, 153, 137, 0.16) 0%, rgba(0, 153, 137, 0) 36%),
    radial-gradient(circle at 20% 18%, rgba(46, 204, 113, 0.12) 0%, rgba(46, 204, 113, 0) 34%);
  z-index: 1;
}

/* Navigation bar — Figma 332:176，固定顶部，滚动增强 */
.hero-nav {
  position: fixed;
  top: var(--hero-nav-inset);
  left: var(--hero-nav-inset);
  right: var(--hero-nav-inset);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--hero-nav-height);
  padding: 7px 16px 7px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

/* 滚动后 — Figma 332:176 */
.hero-nav--scrolled {
  background: var(--color-nav-bg-scrolled);
  border-color: var(--color-nav-border);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: var(--nav-shadow-scrolled);
}

.hero-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.hero-nav__logo img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.hero-nav__menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.hero-nav__link:hover {
  opacity: 0.75;
}

.hero-nav__item {
  position: relative;
  display: inline-flex;
}

.hero-nav__chevron {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hero-nav__link--dropdown[aria-expanded="true"] .hero-nav__chevron {
  transform: rotate(180deg);
}

.hero-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1001;
  min-width: 188px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.hero-nav__dropdown[hidden] {
  display: none;
}

.hero-nav__dropdown a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
}

.hero-nav__dropdown a:hover,
.hero-nav__dropdown a:focus {
  color: var(--color-primary);
  background: rgba(50, 195, 117, 0.08);
}

.hero-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.hero-nav__cta:hover {
  filter: brightness(0.95);
}

/* Hero content block */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  max-width: var(--hero-max-width);
}

.hero-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.hero-stats__icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stats__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  text-align: left;
  letter-spacing: 0;
  word-break: break-word;
}

.hero-title__line {
  display: block;
  color: var(--color-text);
}

.hero-title__line--gradient,
.hero-title__gradient {
  display: block;
  background: linear-gradient(142.33deg, #009989 5.13%, #00b196 85.77%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  max-width: 680px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-muted);
  text-align: left;
}

.hero-logo-wall {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 14px 14px 12px;
  background: rgba(204, 236, 231, 0.55);
  border: 1px solid rgba(0, 153, 137, 0.12);
  border-left: 0;
  border-radius: 16px;
  box-shadow: none;
}

.hero-logo-wall__stage {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.hero-logo-wall__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.hero-logo-wall__grid--visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-logo-wall__grid--leave {
  opacity: 0;
  z-index: 0;
}

.hero-logo-wall__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 0;
  height: 100%;
  padding: 10px 8px 8px;
  background: #ffffff;
  border: 0;
  border-radius: 12px;
  cursor: default;
  outline: none;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero-logo-wall__item:hover,
.hero-logo-wall__item:focus-visible {
  box-shadow: 0 4px 14px rgba(0, 153, 137, 0.12);
  transform: translateY(-1px);
}

.hero-logo-wall__logo {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
}

.hero-logo-wall__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero-logo-wall__item--narrow .hero-logo-wall__logo {
  width: 56px;
}

.hero-logo-wall__country {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}

.hero-logo-wall__footer {
  flex-shrink: 0;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 153, 137, 0.1);
}

.hero-logo-wall__refresh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-logo-wall__progress {
  flex: 0 0 52px;
  width: 52px;
  height: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
}

.hero-logo-wall__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #32c875 0%, #009989 100%);
  border-radius: inherit;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.hero-logo-wall__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #009989;
  white-space: nowrap;
}

.hero-logo-wall__status svg {
  flex-shrink: 0;
  color: #009989;
}

.hero-logo-wall__popover {
  --arrow-shift: 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 260px;
  max-width: calc(100% - 20px);
  padding: 10px 12px 14px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 24px rgba(200, 201, 204, 0.5);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-logo-wall__popover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-logo-wall__popover-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  border-radius: 9999px;
}

.hero-logo-wall__popover-tag--officials {
  color: #006d37;
  background: rgba(50, 195, 117, 0.12);
}

.hero-logo-wall__popover-tag--associations {
  color: #0369a1;
  background: rgba(14, 165, 233, 0.12);
}

.hero-logo-wall__popover-tag--independent {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.12);
}

.hero-logo-wall__popover-text {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text);
  word-break: break-word;
}

.hero-logo-wall__popover-arrow {
  position: absolute;
  left: calc(50% + var(--arrow-shift));
  top: -7px;
  bottom: auto;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
  border-top: none;
  filter: drop-shadow(0 -2px 2px rgba(200, 201, 204, 0.35));
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  box-shadow: var(--hero-btn-shadow);
  white-space: nowrap;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-btn:hover {
  filter: brightness(0.95);
  box-shadow:
    0 22px 28px rgba(0, 109, 55, 0.12),
    0 12px 12px rgba(0, 109, 55, 0.06);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 680px;
  list-style: none;
}

.hero-stats__item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  align-items: flex-start;
  gap: 4px;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 72px;
  padding: 0;
  text-align: left;
}

.hero-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -4px;
  width: 1px;
  height: 71px;
  background: rgba(0, 153, 137, 0.16);
}

.hero-stats__icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  padding: 8px;
  font-size: 24px;
  color: var(--color-primary);
}

.hero-stats__value {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-text);
}

.hero-stats__label {
  max-width: 124px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-muted);
  margin: 0;
}

.hero-stats__label span {
  display: block;
}

/* Collaborative Resources — Figma 334:233 */
.resources {
  width: 100%;
  background: #fafafa;
}

.resources__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-sizing: border-box;
}

.resources__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: var(--color-text);
}

.resources__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.resources-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 33px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.resources-filter--active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow:
    0 20px 25px rgba(0, 109, 55, 0.08),
    0 10px 10px rgba(0, 109, 55, 0.03);
}

.resources__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.resources__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resources__column-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: var(--color-text);
}

.resources__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resources-card--hidden {
  display: none !important;
}

.resources-webinar {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 16px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s ease;
}

.resources-webinar:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.12),
    0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.resources-webinar__thumb {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  max-width: 42%;
  height: 184px;
  border-radius: 18px;
  overflow: hidden;
}

.resources-webinar__thumb .resources-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #ffffff;
}

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

.resources-webinar__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resources-webinar__meta,
.resources-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.resources-tag {
  display: inline-flex;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  border-radius: 0px 0px 4px 0px;
  background: #e5faf6;
  color: #009989;
}

.resources-date {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.resources-webinar__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.resources-webinar__title a,
.resources-article__title a {
  color: var(--color-text);
  text-decoration: none;
}

.resources-org {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text-muted);
}

.resources-org img {
  flex-shrink: 0;
}

.resources-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-primary);
  text-decoration: none;
}

.resources-link:hover {
  opacity: 0.85;
}

.resources-article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s ease;
}

.resources-article:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.12),
    0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.resources-article__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.resources-article__title a {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.resources__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 13px 33px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.resources__more[hidden] {
  display: none;
}

.resources__more:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.resources__column--webinars .resources__more {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--hero-nav-inset) + var(--hero-nav-height) + 64px);
    padding-bottom: 80px;
  }

  .hero-nav__menu {
    display: none;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 24px;
  }

  .hero-logo-wall {
    width: 100%;
    max-width: none;
    min-height: 360px;
    background: rgba(204, 236, 231, 0.55);
    border: 1px solid rgba(0, 153, 137, 0.12);
    border-radius: 16px;
  }

  .hero-intro,
  .hero-title,
  .hero-subtitle {
    align-items: center;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 8px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    border-radius: 24px;
  }

  .hero-nav__cta {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    width: min(100%, 12ch);
    font-size: 40px;
    line-height: 48px;
  }

  .hero-subtitle {
    max-width: 32ch;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-stats {
    max-width: 360px;
  }

  .hero-stats__item {
    grid-template-columns: 1fr;
    justify-items: center;
    flex-basis: calc(50% - 4px);
    width: calc(50% - 4px);
    padding: 0 14px;
    text-align: center;
  }

  .hero-stats__icon {
    grid-row: auto;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-stats {
    gap: 24px 8px;
  }

  .hero-stats__item {
    grid-template-columns: 1fr;
    justify-items: center;
    flex-basis: calc(50% - 4px);
    width: calc(50% - 4px);
    padding: 0 14px;
    text-align: center;
  }

  .hero-stats__item:first-child {
    padding-left: 14px;
  }

  .hero-stats__value {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-stats__label {
    font-size: 14px;
    max-width: 110px;
  }
}

/* Geographic Coverage — Figma 334:411 */
.coverage {
  width: 100%;
  background: var(--color-white);
}

.coverage__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  box-sizing: border-box;
}

.coverage__title {
  margin: 0;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-text);
}

.coverage__content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 56px;
}

.coverage__stage {
  position: relative;
  width: 100%;
}

.coverage__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 680 / 360;
  overflow: visible;
}

/* Magic UI Dotted Map — https://magicui.design/docs/components/dotted-map */
.coverage-dotted-map {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.coverage-dotted-map--ready {
  opacity: 1;
}

.coverage-dotted-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map-dot {
  fill: #d1d5db;
  transition: fill 0.28s ease, opacity 0.28s ease;
}

.coverage-dotted-map__svg[data-active-region] .coverage-map-dot {
  fill: #d8dee8;
  opacity: 1;
}

.coverage-dotted-map__svg[data-active-region="north-america"] .coverage-map-dot[data-region="north-america"],
.coverage-dotted-map__svg[data-active-region="south-america"] .coverage-map-dot[data-region="south-america"],
.coverage-dotted-map__svg[data-active-region="europe"] .coverage-map-dot[data-region="europe"],
.coverage-dotted-map__svg[data-active-region="africa"] .coverage-map-dot[data-region="africa"],
.coverage-dotted-map__svg[data-active-region="asia"] .coverage-map-dot[data-region="asia"],
.coverage-dotted-map__svg[data-active-region="ocenia"] .coverage-map-dot[data-region="ocenia"] {
  fill: var(--color-primary, #009989);
  opacity: 1;
}

.coverage-dotted-map__markers {
  color: var(--color-primary);
}

.coverage-map-marker {
  cursor: pointer;
  outline: none;
}

.coverage-map-marker__hit {
  pointer-events: all;
}

.coverage-map-marker__dot {
  pointer-events: none;
  transition: filter 0.2s ease;
}

.coverage-map-marker--active .coverage-map-marker__dot,
.coverage-map-marker:focus-visible .coverage-map-marker__dot {
  filter: drop-shadow(0 0 8px rgba(0, 153, 137, 0.55));
}

.coverage-map-marker--active .coverage-map-overlay__pill,
.coverage-map-marker--active .coverage-map-overlay__label,
.coverage-map-marker:focus-visible .coverage-map-overlay__pill,
.coverage-map-marker:focus-visible .coverage-map-overlay__label {
  opacity: 1;
}

.coverage-map-marker--active .coverage-map-pulse {
  opacity: 1;
}

.coverage-map-overlay__label {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.coverage-map-overlay__pill {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.coverage-partner-panel {
  --coverage-panel-arrow-shift: 0px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: min(320px, calc(100% - 32px));
  overflow: visible;
  padding: 20px 22px 18px;
  background: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  /* 恢复事件：让用户能选中/复制弹框内的文字 */
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
  transform: translate(-50%, -100%);
}

.coverage-partner-panel::after {
  content: "";
  position: absolute;
  left: calc(50% + var(--coverage-panel-arrow-shift));
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(15, 23, 42, 0.06));
  transform: translateX(-50%);
}

.coverage-partner-panel__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-text);
}

.coverage-partner-panel__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.coverage-partner-panel__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coverage-partner-panel__section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-primary);
}

.coverage-partner-panel__entries {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.coverage-partner-panel__entries li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-text);
}

.coverage-partner-panel__entries li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.coverage-partner-panel__divider {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid #e8e8e8;
}

.coverage__map-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 200%,
    rgba(0, 0, 0, 0.06),
    rgba(255, 255, 255, 0) 55%
  );
}

/* Figma 334:322 — 地区统计 */
.coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 48px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
  padding: 8px;
  margin: -8px;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.coverage-stat--active,
.coverage-stat:focus-visible {
  background: rgba(0, 153, 137, 0.06);
}

.coverage-stat--active .coverage-stat__icon,
.coverage-stat:focus-visible .coverage-stat__icon {
  color: var(--color-primary);
  background: #e5faf6;
  border-color: rgba(0, 153, 137, 0.28);
  box-shadow: 0 8px 20px rgba(0, 153, 137, 0.16);
}

.coverage-stat--active .coverage-stat__label,
.coverage-stat:focus-visible .coverage-stat__label {
  color: var(--color-primary);
}

.coverage-stat--active .coverage-stat__meta,
.coverage-stat:focus-visible .coverage-stat__meta {
  color: #008577;
}

.coverage-stat__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  background: #f3fbf8;
  border: 1px solid #e5faf6;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 109, 55, 0.06);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.coverage-stat__icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.coverage-stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.coverage-stat__value {
  font: inherit;
  color: inherit;
}

.coverage-stat__label {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.coverage-stat__meta {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* Our Services — Figma 361:943 */
.services {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #e5faf6 0%, #ffffff 100%);
  pointer-events: none;
}

.services__header,
.services__carousel {
  position: relative;
  z-index: 1;
}

.services__header {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 80px 0 0;
  box-sizing: border-box;
}

.services__title {
  margin: 0;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: var(--color-text);
}

.services__carousel {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0 80px;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  overflow-x: visible;
  overflow-y: visible;
}

.services-swiper {
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
}

.services-swiper .swiper-slide,
.services-swiper .services-slide {
  --service-card-width: 276px;
  --service-card-height: 320px;
  --service-card-gutter: 0px;
  display: flex;
  align-items: stretch;
  width: calc(var(--service-card-width) + var(--service-card-gutter) * 2);
  height: auto;
  padding: var(--service-card-gutter);
  box-sizing: border-box;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  width: var(--service-card-width);
  max-width: var(--service-card-width);
  min-height: var(--service-card-height);
  max-height: var(--service-card-height);
  height: 100%;
  padding: 24px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.12),
    0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #e5faf6;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.service-card__icon-img {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.service-card__icon--compliance .service-card__icon-img,
.service-card__icon--training .service-card__icon-img {
  width: 22px;
  height: 24px;
}

.service-card__icon--customize .service-card__icon-img,
.service-card__icon--membership .service-card__icon-img {
  width: 25px;
  height: 25px;
}

.service-card__icon--advertising .service-card__icon-img {
  width: 26px;
  height: 26px;
}

.service-card__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #333;
}

.service-card__title-line {
  display: block;
}

.service-card__desc {
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
}

.services__controls {
  display: flex;
  align-items: center;
  gap: 48px;
  width: min(var(--layout-max), 100%);
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.services__progress {
  flex: 1;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

.services__progress-fill {
  height: 100%;
  width: 39%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.services__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.services__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #666666;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: 40px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    color 0.2s ease;
}

.services__nav-btn:hover:not(:disabled) {
  border-color: #cbd5e1;
  color: var(--color-text);
}

.services__nav-btn:disabled,
.services__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.services__nav-icon {
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 15 / 10.5;
  flex-shrink: 0;
}

/* Partner CTA — Figma 361:936 */
.partner-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.partner-cta__bg {
  position: absolute;
  inset: 0;
  background: #009989;
  pointer-events: none;
}

.partner-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/main/partners/services/partner-bg-pattern.png") center / cover no-repeat;
  opacity: 0.15;
}

.partner-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  box-sizing: border-box;
}

.partner-cta__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}

.partner-cta__subtitle {
  margin: 0;
  max-width: 672px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.partner-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-text);
  text-decoration: none;
  background: #ffffff;
  border-radius: var(--radius-pill);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1100px) {
  .resources__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wall__grid {
    transition: none;
  }

  .hero-logo-wall__item:hover,
  .hero-logo-wall__item:focus-visible {
    transform: none;
  }

  .hero-logo-wall__progress-bar {
    transition: none;
  }

  .coverage-map-pulse {
    display: none;
  }
}

@media (max-width: 900px) {
  .coverage__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 768px) {
  .coverage__inner {
    padding: 80px 0;
    gap: 32px;
  }

  .coverage__title {
    font-size: 28px;
  }

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

  .coverage-stat {
    gap: 12px;
  }

  .coverage-stat__icon {
    width: 42px;
    height: 42px;
  }

  .coverage-stat__icon svg {
    width: 22px;
    height: 22px;
  }

  .coverage-stat__label {
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .coverage-stat__meta {
    font-size: 13px;
    line-height: 18px;
  }

  .resources__inner {
    padding: 80px 0;
    gap: 32px;
  }

  .resources__title {
    font-size: 28px;
  }

  .resources-filter {
    padding: 10px 20px;
    min-height: 38px;
  }

  .resources-webinar {
    flex-direction: column;
    align-items: stretch;
  }

  .resources-webinar__thumb {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 320 / 184;
  }

  .services__header {
    padding-top: 80px;
  }

  .services__carousel {
    padding-bottom: 80px;
    gap: 32px;
  }

  .services__title,
  .partner-cta__title {
    font-size: 28px;
  }

  .services-swiper .swiper-slide,
  .services-swiper .services-slide {
    width: calc(var(--service-card-width) + var(--service-card-gutter) * 2);
  }

  .services__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .partner-cta__inner {
    padding: 100px 20px 80px;
    gap: 24px;
  }

  .partner-cta__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
