:root {
  --navy: #071a44;
  --navy-2: #0b2f66;
  --blue: #006fb8;
  --blue-2: #0f9ecf;
  --teal: #13a6a1;
  --green: #1f9d6a;
  --ink: #122033;
  --muted: #5f6e82;
  --line: #d8e1ea;
  --soft: #eef5f9;
  --soft-2: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(7, 26, 68, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

[id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--white);
  line-height: 1.65;
  letter-spacing: 0;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-solid,
.site-header.header-light {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(7, 26, 68, 0.06);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  background: transparent;
}

.brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-header.is-solid .brand img,
.site-header.header-light .brand img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(45%) saturate(1500%) hue-rotate(185deg) brightness(86%) contrast(96%);
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header.is-solid .nav-link,
.site-header.header-light .nav-link {
  color: var(--navy);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: var(--blue-2);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link::after,
.nav-item.is-active .nav-link::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: 72px;
  left: 50%;
  min-width: 190px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item:hover .nav-dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 14px;
  border-radius: 6px;
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.is-solid .icon-button,
.site-header.header-light .icon-button {
  color: var(--navy);
  background: var(--soft);
}

.search-toggle {
  display: grid;
  place-items: center;
}

.search-glyph {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-glyph::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-search {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.site-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.site-search input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(15, 158, 207, 0.16);
}

.menu-toggle {
  display: none;
}

.menu-lines {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-lines span {
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  overflow: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}

.mobile-nav small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
}

.site-main {
  min-height: 60vh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroSceneCycle 28s infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.hero-slide:nth-child(3) {
  animation-delay: 14s;
}

.hero-slide:nth-child(4) {
  animation-delay: 21s;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 68, 0.78), rgba(7, 26, 68, 0.36) 48%, rgba(7, 26, 68, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 18px;
  transform: translateY(-36px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #bde8f2;
  font-size: 15px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.16;
  font-weight: 800;
}

.hero .subtitle {
  margin: 24px 0 0;
  max-width: 650px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-position {
  display: inline-flex;
  margin-top: 28px;
  padding: 10px 14px;
  border-left: 3px solid var(--blue-2);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(7, 26, 68, 0.32);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-page-section {
  position: relative;
  overflow: hidden;
}

.home-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(15, 158, 207, 0.04)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 30px);
}

.home-page-section > .container {
  position: relative;
  z-index: 1;
}

.section.white.home-identity {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 254, 0.9) 54%, rgba(255, 255, 255, 0.96)),
    url("/static/images/optimized/page_hero_about-18a76c876f06.webp") center / cover no-repeat;
}

.section.white.home-services {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 254, 0.89) 52%, rgba(255, 255, 255, 0.96)),
    url("/static/images/optimized/page_hero_services-badca7ade170.webp") center / cover no-repeat;
}

.section.white.home-research {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 254, 0.9) 50%, rgba(255, 255, 255, 0.97)),
    url("/static/images/optimized/page_hero_research-db4b4816e8cb.webp") center / cover no-repeat;
}

.section.white.home-identity::before,
.section.white.home-services::before,
.section.white.home-research::before {
  opacity: 0.58;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 158, 207, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(15, 158, 207, 0.045)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.035) 0 1px, transparent 1px 30px);
}

.home-scroll-page .hero,
.home-scroll-page .home-page-section,
.home-scroll-page .site-footer {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.home-scroll-page .home-page-section .section-kicker,
.home-scroll-page .home-page-section .section-title,
.home-scroll-page .home-page-section .section-desc,
.home-scroll-page .home-page-section .home-summary-list,
.home-scroll-page .home-page-section .home-strength-board,
.home-scroll-page .home-page-section .home-service-card,
.home-scroll-page .home-page-section .home-partner-stack article,
.home-scroll-page .home-page-section .home-logo-wall a,
.home-scroll-page .home-page-section .article-card,
.home-scroll-page .home-page-section .home-contact,
.home-scroll-page .home-page-section .home-featured-projects,
.home-scroll-page .home-page-section .home-final-news {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-scroll-page .home-page-section.is-visible .section-kicker,
.home-scroll-page .home-page-section.is-visible .section-title,
.home-scroll-page .home-page-section.is-visible .section-desc,
.home-scroll-page .home-page-section.is-visible .home-summary-list,
.home-scroll-page .home-page-section.is-visible .home-strength-board,
.home-scroll-page .home-page-section.is-visible .home-service-card,
.home-scroll-page .home-page-section.is-visible .home-partner-stack article,
.home-scroll-page .home-page-section.is-visible .home-logo-wall a,
.home-scroll-page .home-page-section.is-visible .article-card,
.home-scroll-page .home-page-section.is-visible .home-contact,
.home-scroll-page .home-page-section.is-visible .home-featured-projects,
.home-scroll-page .home-page-section.is-visible .home-final-news {
  opacity: 1;
  transform: translateY(0);
}

.home-scroll-page .home-page-section.is-visible .section-title {
  transition-delay: 0.06s;
}

.home-scroll-page .home-page-section.is-visible .section-desc,
.home-scroll-page .home-page-section.is-visible .home-summary-list,
.home-scroll-page .home-page-section.is-visible .home-strength-board,
.home-scroll-page .home-page-section.is-visible .home-contact,
.home-scroll-page .home-page-section.is-visible .home-featured-projects,
.home-scroll-page .home-page-section.is-visible .home-final-news {
  transition-delay: 0.12s;
}

.home-scroll-page .home-page-section.is-visible .home-service-card:nth-child(2),
.home-scroll-page .home-page-section.is-visible .home-partner-stack article:nth-child(2),
.home-scroll-page .home-page-section.is-visible .home-logo-wall a:nth-child(2),
.home-scroll-page .home-page-section.is-visible .article-card:nth-child(2) {
  transition-delay: 0.08s;
}

.home-scroll-page .home-page-section.is-visible .home-service-card:nth-child(3),
.home-scroll-page .home-page-section.is-visible .home-partner-stack article:nth-child(3),
.home-scroll-page .home-page-section.is-visible .home-logo-wall a:nth-child(3),
.home-scroll-page .home-page-section.is-visible .article-card:nth-child(3) {
  transition-delay: 0.16s;
}

.home-scroll-page .home-page-section.is-visible .home-service-card:nth-child(4),
.home-scroll-page .home-page-section.is-visible .home-partner-stack article:nth-child(4),
.home-scroll-page .home-page-section.is-visible .home-logo-wall a:nth-child(4) {
  transition-delay: 0.24s;
}

.home-scroll-page .home-page-section.is-visible .home-service-card:nth-child(5),
.home-scroll-page .home-page-section.is-visible .home-partner-stack article:nth-child(5),
.home-scroll-page .home-page-section.is-visible .home-logo-wall a:nth-child(5) {
  transition-delay: 0.32s;
}

.home-scroll-page .home-page-section.is-visible .home-service-card:nth-child(6) {
  transition-delay: 0.4s;
}

@media (min-width: 900px) {
  html.home-scroll-enabled {
    scroll-snap-type: none;
  }

  .home-scroll-page .hero-content {
    transform: translateY(-78px);
  }

  .home-scroll-page .hero,
  .home-scroll-page .home-page-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .home-scroll-page .home-page-section {
    padding-top: 104px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.home-scroll-enabled {
    scroll-snap-type: none;
  }

  .home-scroll-page .home-page-section .section-kicker,
  .home-scroll-page .home-page-section .section-title,
  .home-scroll-page .home-page-section .section-desc,
  .home-scroll-page .home-page-section .home-summary-list,
  .home-scroll-page .home-page-section .home-strength-board,
  .home-scroll-page .home-page-section .home-service-card,
  .home-scroll-page .home-page-section .home-partner-stack article,
  .home-scroll-page .home-page-section .home-logo-wall a,
  .home-scroll-page .home-page-section .article-card,
  .home-scroll-page .home-page-section .home-contact,
  .home-scroll-page .home-page-section .home-featured-projects,
  .home-scroll-page .home-page-section .home-final-news {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transform: translateX(-50%);
}

.hero .scroll-cue {
  display: none;
}

.home-next-arrow {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 26, 68, 0.16);
  transform: translateX(-50%);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.hero .home-next-arrow {
  bottom: 18px;
}

.home-next-arrow span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.home-next-arrow:hover {
  border-color: var(--blue-2);
  background: rgba(15, 158, 207, 0.18);
  transform: translateX(-50%) translateY(2px);
}

.home-next-arrow.is-dark {
  color: var(--navy);
  border-color: rgba(7, 26, 68, 0.24);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(7, 26, 68, 0.08);
}

.home-page-dots {
  position: fixed;
  z-index: 48;
  right: max(22px, calc((100vw - var(--container)) / 2 - 72px));
  top: 50%;
  display: grid;
  gap: 14px;
  padding: 14px 10px;
  border: 1px solid rgba(216, 225, 234, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(7, 26, 68, 0.1);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.home-page-dots a {
  display: grid;
  place-items: center;
  gap: 4px;
  color: rgba(7, 26, 68, 0.56);
}

.home-page-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  color: transparent;
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease;
}

.home-page-dots em {
  max-height: 0;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  writing-mode: vertical-rl;
  overflow: hidden;
  transition: max-height 0.18s ease, opacity 0.18s ease;
}

.home-page-dots a.is-active {
  color: var(--blue);
}

.home-page-dots a.is-active span {
  width: 10px;
  height: 24px;
  background: var(--blue);
}

.home-page-dots a.is-active em {
  max-height: 46px;
  opacity: 1;
}

.hero-proof-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 82px;
  width: min(calc(100% - 48px), var(--container));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  background: rgba(7, 26, 68, 0.16);
  backdrop-filter: blur(8px);
}

.hero-proof-strip div {
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof-strip div:last-child {
  border-right: 0;
}

.hero-proof-strip strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.hero-proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

@keyframes heroSceneCycle {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
    opacity: 0.72;
  }
  50% {
    transform: translateY(2px) rotate(45deg);
    opacity: 1;
  }
}

.immersive-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.immersive-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.immersive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.immersive-media::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 22%, rgba(15, 158, 207, 0.28), transparent 24%),
    radial-gradient(circle at 30% 65%, rgba(19, 166, 161, 0.18), transparent 26%);
  animation: fieldShift 16s ease-in-out infinite alternate;
}

.immersive-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.86), rgba(7, 26, 68, 0.42) 50%, rgba(7, 26, 68, 0.14)),
    linear-gradient(180deg, rgba(7, 26, 68, 0.1), rgba(7, 26, 68, 0.34));
}

.immersive-inner {
  position: relative;
  z-index: 3;
  padding-top: 74px;
}

.immersive-content {
  max-width: 760px;
}

.immersive-content h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.14;
}

.immersive-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.82;
}

.immersive-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.immersive-stat-row div {
  padding: 18px 20px;
  background: rgba(7, 26, 68, 0.36);
}

.immersive-stat-row strong {
  display: block;
  color: var(--blue-2);
  font-size: 34px;
  line-height: 1;
}

.immersive-stat-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(-1.2%, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(1.2%, -1%, 0);
  }
}

@keyframes fieldShift {
  from {
    transform: translate3d(-2%, 1%, 0);
    opacity: 0.72;
  }
  to {
    transform: translate3d(2%, -1%, 0);
    opacity: 0.95;
  }
}

.section-tabs {
  position: sticky;
  top: 72px;
  z-index: 45;
  border-top: 1px solid rgba(216, 225, 234, 0.76);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(7, 26, 68, 0.06);
}

.section-tabs .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-tabs .container::-webkit-scrollbar {
  display: none;
}

.section-tabs a {
  position: relative;
  flex: 0 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.section-tabs a:hover {
  color: var(--navy);
}

.section-tabs a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  background: var(--blue-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.section-tabs a:hover::after {
  transform: scaleX(1);
}

.section {
  padding: 84px 0;
}

.section.soft {
  background:
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #eef5f9 0%, #f7fbfd 100%);
}

.section.white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 254, 0.96)),
    repeating-linear-gradient(90deg, rgba(19, 166, 161, 0.035) 0 1px, transparent 1px 34px);
}

.section.navy {
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, var(--navy) 0%, #08265d 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.28;
}

.section.navy .section-title,
.section.navy .section-kicker {
  color: var(--white);
}

.section-desc {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section.navy .section-desc {
  color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 58px;
  align-items: center;
}

.home-summary-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.home-summary-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.home-summary-list strong {
  color: var(--navy);
  font-size: 17px;
}

.home-summary-list span {
  color: var(--muted);
}

.home-strength-board {
  min-height: 520px;
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 26, 68, 0.78), rgba(7, 26, 68, 0.92)),
    url("/static/images/optimized/page_hero_about-18a76c876f06.webp") center / cover no-repeat;
  box-shadow: 0 24px 48px rgba(7, 26, 68, 0.16);
}

.home-strength-board > p {
  margin: 0;
  color: #bde8f2;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-strength-board h3 {
  margin: 18px 0 34px;
  font-size: 30px;
  line-height: 1.25;
}

.home-strength-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.home-strength-grid div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-strength-grid strong {
  display: block;
  color: var(--blue-2);
  font-size: 38px;
  line-height: 1;
}

.home-strength-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.home-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-timeline article {
  min-height: 260px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.home-timeline article:last-child {
  border-right: 0;
}

.home-timeline span {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 900;
}

.home-timeline h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.38;
}

.home-timeline p {
  margin: 0;
  color: var(--muted);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 253, 0.95)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.045) 0 1px, transparent 1px 26px);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 158, 207, 0.18), transparent 64%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.home-service-card:hover {
  border-color: #9ec2df;
  box-shadow: 0 16px 32px rgba(7, 26, 68, 0.09);
  transform: translateY(-3px);
}

.home-service-card:hover::after {
  opacity: 0.85;
  transform: scale(1.4);
}

.home-service-card > * {
  position: relative;
  z-index: 1;
}

.home-service-card h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.home-service-card p {
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.home-service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
}

.home-service-card li {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--navy-2);
  background: #eaf6fb;
  font-size: 12px;
  font-weight: 800;
}

.home-ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: center;
}

.home-ecosystem .button {
  margin-top: 30px;
}

.home-partner-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.home-partner-stack article {
  position: relative;
  min-height: 132px;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(32px, auto) 1fr;
  row-gap: 10px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-partner-stack article:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 120px;
}

.home-partner-stack article::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-2), rgba(19, 166, 161, 0.65));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.home-partner-stack article:hover::before {
  transform: scaleX(1);
}

.home-partner-stack article > * {
  position: relative;
  z-index: 1;
}

.home-partner-stack .meta {
  color: #bde8f2;
  font-weight: 900;
  line-height: 1.5;
}

.home-partner-stack h3 {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--white);
  font-size: 19px;
  line-height: 1.28;
}

.home-partner-stack p {
  display: -webkit-box;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.home-logo-wall a {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-logo-wall a:hover {
  border-color: rgba(15, 158, 207, 0.58);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.home-logo-wall img {
  max-width: 150px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-logo-wall span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.home-contact {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 253, 0.95)),
    url("/static/images/optimized/page_hero_contact-ae30e4ec8a7a.webp") center / cover no-repeat;
}

.home-research .article-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-research .article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15, 158, 207, 0.08), transparent 46%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.home-research .article-card:hover {
  border-color: #9ec2df;
  box-shadow: 0 16px 32px rgba(7, 26, 68, 0.08);
  transform: translateY(-3px);
}

.home-research .article-card:hover::before {
  opacity: 1;
}

.home-final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.home-final .section-head {
  margin-bottom: 24px;
}

.home-final .section-title {
  font-size: 32px;
}

.home-final-news {
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid.home-final-news {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-featured-projects {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 253, 0.96)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 24px);
}

.home-featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.home-featured-head .section-kicker {
  margin: 0;
}

.home-project-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-project-mini {
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(158, 194, 223, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-project-mini:hover {
  border-color: rgba(15, 158, 207, 0.56);
  box-shadow: 0 12px 24px rgba(7, 26, 68, 0.08);
  transform: translateY(-2px);
}

.home-project-mini span,
.home-project-mini strong,
.home-project-mini em {
  display: block;
}

.home-project-mini span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.home-project-mini strong {
  display: -webkit-box;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.36;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-project-mini em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.home-final .article-card {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.home-final .article-card h3 {
  min-height: 52px;
  font-size: 19px;
}

.home-final .article-card p {
  display: -webkit-box;
  line-height: 1.54;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-final .article-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

.home-contact-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.home-final .home-contact {
  min-height: 0;
  padding: 28px;
}

.home-final .home-contact-content {
  display: block;
}

.home-final .home-contact-content .button {
  margin-top: 22px;
}

.home-final .home-office-row {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.home-final .home-office-row div {
  padding: 14px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.home-final .home-office-row div:last-child {
  border-bottom: 0;
}

.home-office-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-office-row div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.home-office-row div:last-child {
  border-right: 0;
}

.home-office-row strong,
.home-office-row span {
  display: block;
}

.home-office-row strong {
  color: var(--navy);
}

.home-office-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stat-item {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-value {
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.stat-label {
  margin-top: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.stat-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-panel,
.project-card,
.article-card,
.notice-card,
.leader-card,
.team-card,
.partner-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-panel {
  padding: 28px;
  border-top: 3px solid var(--blue);
}

.service-panel:nth-child(3n + 2) {
  border-top-color: var(--teal);
}

.service-panel:nth-child(3n) {
  border-top-color: var(--green);
}

.panel-number {
  color: var(--blue-2);
  font-weight: 800;
  font-size: 14px;
}

.service-panel h3,
.project-card h3,
.article-card h3,
.notice-card h3,
.team-card h3,
.leader-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.38;
}

.service-panel p,
.project-card p,
.article-card p,
.notice-card p,
.team-card p,
.leader-card p {
  margin: 0;
  color: var(--muted);
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  padding: 6px 10px;
  border: 1px solid #cfe4ef;
  border-radius: 6px;
  color: var(--navy-2);
  background: #f6fbfd;
  font-size: 13px;
}

.project-grid,
.article-grid,
.team-grid,
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 128, 204, 0.28);
  box-shadow: 0 16px 30px rgba(7, 26, 68, 0.08);
}

.project-card a {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 214px;
  color: inherit;
}

.project-card figure {
  position: relative;
  margin: 0;
  min-height: 100%;
  aspect-ratio: auto;
  background: var(--soft);
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-status {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 35, 78, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.project-body,
.article-card,
.notice-card,
.team-card,
.leader-body {
  padding: 22px;
}

.project-card .project-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px;
}

.project-card h3 {
  margin-top: 10px;
  font-size: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.project-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.project-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 12px;
}

.project-card-facts span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft-2);
  font-size: 12px;
  font-weight: 800;
}

.project-index-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 26px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(239, 247, 251, 0.82)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 26px);
}

.project-index-strip div {
  min-height: 88px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.project-index-strip div:last-child {
  border-right: 0;
}

.project-index-strip strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.project-index-strip span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid div {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}

.process-grid strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.process-grid span {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.compact-process div {
  min-height: 104px;
  background: rgba(255, 255, 255, 0.86);
}

.business-ecosystem {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ecosystem-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 26, 68, 0.96), rgba(4, 54, 101, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px);
}

.ecosystem-quote {
  padding-left: 18px;
  border-left: 3px solid var(--blue-2);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
}

.ecosystem-values h3 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 16px;
}

.ecosystem-values ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecosystem-values li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.ecosystem-stats {
  display: grid;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ecosystem-stats strong {
  display: block;
  color: var(--blue-2);
  font-size: 42px;
  line-height: 1;
}

.ecosystem-stats span {
  color: rgba(255, 255, 255, 0.75);
}

.ecosystem-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(7, 26, 68, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ecosystem-card:hover {
  transform: translateY(-3px);
  border-color: #a7c9df;
  box-shadow: 0 16px 36px rgba(7, 26, 68, 0.1);
}

.service-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f3ff;
  font-weight: 900;
}

.ecosystem-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.ecosystem-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.ecosystem-card .tag-row {
  margin-top: auto;
}

.secondary-main .business-ecosystem {
  grid-template-columns: 1fr;
}

.secondary-main .ecosystem-panel {
  min-height: auto;
  gap: 26px;
}

.secondary-main .ecosystem-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-list {
  display: grid;
  gap: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-detail h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.28;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
}

.service-steps {
  align-content: start;
  margin-top: 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: center;
}

.service-detail-tags {
  margin-top: 26px;
}

.service-metric {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-left: 4px solid var(--blue-2);
  color: var(--white);
  background: var(--navy);
}

.service-metric strong {
  display: block;
  color: var(--blue-2);
  font-size: 44px;
  line-height: 1;
}

.service-metric span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-flow span {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.service-flow strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 17px;
}

.related-service-grid .service-panel {
  min-height: 132px;
  color: var(--ink);
}

.secondary-layout {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.secondary-nav {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(7, 26, 68, 0.05);
}

.secondary-nav p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.secondary-nav a {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.secondary-nav a + a {
  margin-top: 4px;
}

.secondary-nav a:hover,
.secondary-nav a.is-active {
  color: var(--navy);
  border-left-color: var(--blue-2);
  background: #eef7fb;
}

.secondary-main {
  min-width: 0;
}

.service-content-section {
  padding-top: 58px;
}

.content-block {
  padding: 0 0 58px;
}

.content-block + .content-block {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.soft-block {
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #f3f8fb, #fbfdfe);
}

.navy-block {
  margin: 0 -24px;
  padding: 42px 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.96), rgba(7, 48, 94, 0.92)),
    url("/static/images/optimized/page_hero_services-badca7ade170.webp") center / cover no-repeat;
}

.navy-block .section-title,
.navy-block .section-kicker {
  color: var(--white);
}

.compact-head {
  margin-bottom: 24px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.focus-list div,
.criteria-grid div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.focus-list span,
.stack-list span,
.resource-ladder span,
.service-path span {
  color: var(--blue);
  font-weight: 900;
}

.focus-list strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  line-height: 1.45;
}

.service-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-path li {
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-path strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.service-path p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split-block {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
}

.stack-list,
.resource-ladder {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stack-list article,
.resource-ladder article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stack-list h3,
.resource-ladder h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 17px;
}

.stack-list p,
.resource-ladder p {
  margin: 0;
  color: var(--muted);
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.criteria-grid div {
  min-height: auto;
  color: var(--navy);
  font-weight: 800;
}

.resource-ladder {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.resource-ladder article {
  grid-template-columns: 1fr;
  min-height: 168px;
}

.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.partner-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.data-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.data-layer-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.data-layer-grid span {
  color: var(--blue);
  font-weight: 900;
}

.data-layer-grid h3 {
  margin: 10px 0 8px;
  color: var(--navy);
}

.data-layer-grid p {
  margin: 0 0 14px;
  color: var(--muted);
}

.data-layer-grid ul,
.value-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.roadmap-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.roadmap-block h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roadmap-grid span {
  color: var(--blue);
  font-weight: 900;
}

.roadmap-grid h4 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 18px;
}

.roadmap-grid p {
  margin: 0;
  color: var(--muted);
}

.practice-tags {
  margin-top: 22px;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--navy-2);
  background: #e5f5fb;
  font-size: 13px;
  font-weight: 700;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.ecosystem {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.partner-item {
  min-height: 300px;
  padding: 20px;
  display: grid;
  grid-template-rows: 52px 1fr;
  gap: 12px;
  background: var(--white);
}

.partner-item > div:last-child {
  display: grid;
  grid-template-rows: 28px 58px 1fr;
  align-items: start;
}

.partner-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.partner-item h3 {
  display: flex;
  align-items: start;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.partner-item p {
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leader-card {
  overflow: hidden;
  min-width: 0;
}

.leader-card figure {
  height: 116px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--soft);
  overflow: hidden;
}

.leader-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  background: #dfe8ee;
  box-shadow: 0 8px 18px rgba(7, 26, 68, 0.16);
}

.leader-title {
  color: var(--blue);
  font-weight: 800;
}

.leader-grid {
  grid-template-columns: repeat(6, minmax(0, 166px));
  justify-content: start;
  gap: 14px;
}

.leader-grid-secondary {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.leader-card figure {
  aspect-ratio: auto;
}

.leader-body {
  min-height: 62px;
  padding: 10px 12px 12px;
  text-align: center;
}

.leader-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.leader-card .leader-title {
  font-size: 12px;
  line-height: 1.4;
}

.leader-card-secondary {
  width: auto;
  justify-self: stretch;
}

.leader-card-secondary figure {
  height: 74px;
  padding: 6px;
}

.leader-card-secondary img {
  width: 56px;
  height: 56px;
  box-shadow: 0 6px 14px rgba(7, 26, 68, 0.13);
}

.leader-card-secondary .leader-body {
  min-height: 46px;
  padding: 7px 6px 8px;
}

.leader-portrait {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #dfe8ee;
  box-shadow: 0 6px 14px rgba(7, 26, 68, 0.13);
}

.leader-card-secondary .leader-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  transform: scale(var(--portrait-scale, 1));
  transform-origin: center top;
}

.leader-card-secondary h3 {
  margin-bottom: 3px;
  font-size: 13px;
}

.leader-card-secondary .leader-title {
  font-size: 10.5px;
  line-height: 1.32;
}

.page-hero {
  position: relative;
  height: 240px;
  min-height: 240px;
  display: flex;
  align-items: end;
  padding: 76px 0 24px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-bg, none) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 68, 0.68), rgba(7, 26, 68, 0.34) 58%, rgba(7, 26, 68, 0.12));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.page-hero p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero h1 {
  font-size: 36px;
}

.compact-section {
  padding: 32px 0;
}

.compact-section .intro-layout {
  gap: 32px;
}

.compact-section .section-title {
  font-size: 26px;
}

.compact-section .section-desc {
  margin-top: 10px;
  font-size: 14px;
}

.compact-section .feature-list {
  gap: 6px;
  margin-top: 12px;
}

.compact-section .feature-list div {
  padding-top: 8px;
}

.compact-section .intro-media {
  aspect-ratio: 2.25 / 1;
}

.compact-stats-section {
  padding: 44px 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.intro-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.timeline-year {
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

.about-page-panel {
  min-height: calc(100svh - 126px);
  display: flex;
  align-items: center;
}

.about-page-panel .container {
  width: min(calc(100% - 48px), 1240px);
}

.page-timeline {
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-timeline .timeline-item {
  padding: 32px 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.page-timeline .timeline-year {
  color: var(--blue);
  font-size: 34px;
  line-height: 1.22;
}

.leader-head {
  margin-top: 58px;
}

.service-overview-page,
.project-page-section {
  min-height: calc(100svh - 126px);
  display: flex;
  align-items: center;
}

.service-story {
  min-height: calc(100svh - 126px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.13;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.72) 100%),
    url("/static/images/optimized/page_hero_services-badca7ade170.webp") center / cover no-repeat;
}

.service-story::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 245, 249, 0.72) 100%);
  pointer-events: none;
}

.service-story > .container {
  position: relative;
  z-index: 1;
}

.service-story-translation::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.62) 100%),
    url("/static/images/optimized/page_hero_medical_innovation-059e3f671b0f.webp") center / cover no-repeat;
}

.service-story-medical-research::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.66) 100%),
    url("/static/images/optimized/page_hero_research-db4b4816e8cb.webp") center / cover no-repeat;
}

.service-story-academic-exchange::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 56%, rgba(255, 255, 255, 0.64) 100%),
    url("/static/images/optimized/page_hero_about-18a76c876f06.webp") center / cover no-repeat;
}

.service-story-policy::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.66) 100%),
    url("/static/images/optimized/page_hero_projects-95cdc20b98b5.webp") center / cover no-repeat;
}

.service-story-alliance::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.66) 100%),
    url("/static/images/optimized/page_hero_services-badca7ade170.webp") center / cover no-repeat;
}

.service-story-global::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.66) 100%),
    url("/static/images/optimized/page_hero_contact-ae30e4ec8a7a.webp") center / cover no-repeat;
}

.service-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 56px;
  align-items: center;
}

.service-story-main {
  max-width: 760px;
}

.service-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.service-capability-list article {
  padding: 18px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.service-capability-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.service-capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-detail-button {
  margin-top: 28px;
  min-width: 150px;
}

.service-story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}

.service-story-intro .section-desc {
  max-width: 760px;
}

.translation-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.88fr) minmax(360px, 1.08fr);
  gap: 16px;
  margin-top: 34px;
}

.translation-focus-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(7, 26, 68, 0.07);
}

.translation-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    radial-gradient(circle at 18% 14%, rgba(16, 167, 215, 0.16), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.translation-focus-card > * {
  position: relative;
  z-index: 1;
}

.translation-focus-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.translation-path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-path;
}

.translation-path-steps li {
  position: relative;
  min-height: 88px;
  padding: 16px 14px;
  border: 1px solid rgba(216, 225, 234, 0.95);
  border-radius: 8px;
  background: rgba(247, 250, 253, 0.94);
  counter-increment: service-path;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.translation-path-steps li::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  z-index: 2;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(16, 167, 215, 0.08));
}

.translation-path-steps li:nth-child(4)::after,
.translation-path-steps li:nth-child(8)::after {
  display: none;
}

.translation-path-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 128, 204, 0.36);
  box-shadow: 0 14px 26px rgba(7, 26, 68, 0.09);
}

.translation-path-steps b {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.translation-path-steps strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}

.translation-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.translation-logo-card {
  display: grid;
  grid-template-rows: 36px 30px;
  align-items: center;
  justify-items: center;
  height: 82px;
  min-width: 0;
  gap: 4px;
  padding: 8px 6px;
  border: 1px solid rgba(216, 225, 234, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.translation-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 128, 204, 0.28);
  box-shadow: 0 12px 24px rgba(7, 26, 68, 0.08);
}

.translation-logo-box {
  display: grid;
  width: 100%;
  height: 36px;
  place-items: center;
  overflow: hidden;
}

.translation-logo-box img {
  display: block;
  width: auto;
  max-width: min(82px, 92%);
  max-height: 26px;
  object-fit: contain;
}

.translation-logo-box strong,
.translation-logo-name {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.translation-logo-name {
  display: -webkit-box;
  overflow: hidden;
  width: 100%;
  min-height: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.translation-logo-card.text-only {
  background: linear-gradient(145deg, rgba(238, 248, 252, 0.96), rgba(255, 255, 255, 0.96));
}

.translation-logo-card.text-only .translation-logo-box {
  display: none;
}

.translation-logo-card.text-only {
  grid-template-rows: 1fr;
}

.translation-logo-card.text-only .translation-logo-name {
  min-height: 0;
  -webkit-line-clamp: 3;
}

.service-resource-network {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 253, 0.92)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.035) 0 1px, transparent 1px 22px);
  box-shadow: 0 14px 34px rgba(7, 26, 68, 0.06);
}

.service-resource-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.service-resource-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
}

.service-resource-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.service-resource-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.service-resource-grid.is-detail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-resource-card {
  min-width: 0;
  height: 72px;
  display: grid;
  grid-template-rows: 30px 1fr;
  align-items: center;
  justify-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(216, 225, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 128, 204, 0.28);
  box-shadow: 0 10px 22px rgba(7, 26, 68, 0.08);
}

.service-resource-card img {
  width: auto;
  max-width: min(104px, 92%);
  max-height: 26px;
  object-fit: contain;
}

.service-resource-card strong {
  display: -webkit-box;
  width: 100%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-resource-card.text-only {
  grid-template-rows: 1fr;
  background: linear-gradient(145deg, rgba(238, 248, 252, 0.96), rgba(255, 255, 255, 0.96));
}

.service-resource-card.text-only strong {
  -webkit-line-clamp: 3;
}

.service-resource-card.logo-theme-blue {
  background: linear-gradient(145deg, #315ff4, #4c86ff);
  border-color: rgba(49, 95, 244, 0.38);
}

.service-resource-card.logo-theme-blue strong {
  color: #fff;
}

.service-resource-card.logo-theme-blue img {
  max-height: 28px;
}

.alliance-network-panel {
  display: grid;
  gap: 16px;
}

.alliance-flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  counter-reset: alliance-flow;
}

.alliance-flow-strip article {
  position: relative;
  min-height: 118px;
  padding: 16px 15px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 252, 0.98));
  overflow: hidden;
}

.alliance-flow-strip article::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 74px;
  height: 74px;
  border: 12px solid rgba(0, 128, 204, 0.08);
  border-radius: 50%;
}

.alliance-flow-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.alliance-flow-strip strong,
.alliance-event-row strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.alliance-flow-strip p,
.alliance-module-grid p,
.alliance-event-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.alliance-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.alliance-module-grid article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(216, 225, 234, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 250, 0.96)),
    linear-gradient(90deg, rgba(31, 143, 122, 0.08), rgba(0, 128, 204, 0.06));
}

.alliance-module-grid small {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.alliance-module-grid h4 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.alliance-event-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.alliance-event-row article {
  padding: 15px 16px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.alliance-event-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-news-points {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.service-news-points span {
  position: relative;
  display: block;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(216, 225, 234, 0.9);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.service-news-points span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.service-story-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 26, 68, 0.08);
}

.service-story-card .service-symbol {
  margin-bottom: 22px;
}

.service-story-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.service-story-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.service-story-card li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--navy);
  font-weight: 700;
  counter-increment: step;
}

.service-story-card li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--blue);
  font-weight: 900;
}

.service-story-compact {
  min-height: auto;
  padding: 78px 0;
  align-items: stretch;
}

.service-story-compact::after {
  height: 56%;
  opacity: 0.72;
}

.service-compact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: 48px;
  align-items: center;
}

.service-compact-layout.is-solo {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 880px;
  min-height: 238px;
  padding: 30px 34px;
  border: 1px solid rgba(184, 204, 224, 0.86);
  border-left: 4px solid rgba(0, 128, 204, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 253, 0.9)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 22px);
  box-shadow: 0 18px 42px rgba(7, 26, 68, 0.07);
}

.service-compact-layout.is-solo::after {
  content: attr(data-index);
  position: absolute;
  right: 28px;
  bottom: 18px;
  color: rgba(0, 111, 184, 0.08);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.service-story-slim {
  padding: 48px 0;
}

.service-story-slim .service-compact-copy {
  position: relative;
  z-index: 1;
}

.service-story-slim .service-compact-copy .section-desc {
  max-width: 680px;
}

.service-story-slim .service-detail-tags {
  margin-top: 20px;
}

.service-compact-copy {
  max-width: 780px;
}

.service-compact-copy .section-desc {
  max-width: 740px;
}

.service-compact-flow-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(184, 204, 224, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 249, 252, 0.95)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.045) 0 1px, transparent 1px 24px);
  box-shadow: 0 16px 36px rgba(7, 26, 68, 0.08);
}

.service-compact-flow-card::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 128, 204, 0.16), transparent 64%);
  pointer-events: none;
}

.service-compact-flow-card > * {
  position: relative;
  z-index: 1;
}

.service-compact-flow-card .service-symbol {
  margin-bottom: 18px;
}

.service-compact-flow-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.38;
}

.service-compact-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: compact-step;
}

.service-compact-flow li {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 225, 234, 0.92);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  counter-increment: compact-step;
}

.service-compact-flow li::before {
  content: counter(compact-step, decimal-leading-zero);
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.service-side-notes {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 24px;
  border: 1px solid rgba(184, 204, 224, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 252, 0.94)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.04) 0 1px, transparent 1px 22px);
  box-shadow: 0 16px 36px rgba(7, 26, 68, 0.08);
}

.service-side-notes::after {
  content: attr(data-index);
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: rgba(0, 111, 184, 0.06);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.service-side-note {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 4px 18px 2px 0;
}

.service-side-note + .service-side-note {
  padding: 4px 0 2px 18px;
  border-left: 1px solid rgba(184, 204, 224, 0.72);
}

.service-side-note span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 128, 204, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.service-side-note h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.38;
}

.service-side-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-compact-support {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
  margin-top: 20px;
  align-items: stretch;
}

.service-compact-support.is-without-resources {
  grid-template-columns: minmax(0, 1fr);
}

.service-compact-support.is-without-resources .service-compact-capabilities {
  max-width: 760px;
}

.service-compact-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-compact-capabilities article,
.service-compact-resources {
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(7, 26, 68, 0.055);
}

.service-compact-capabilities article {
  min-height: 132px;
  padding: 16px;
}

.service-compact-capabilities span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 128, 204, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.service-compact-capabilities h3,
.service-compact-resource-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.38;
}

.service-compact-capabilities p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.service-mini-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-mini-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.service-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.service-compact-resources {
  min-width: 0;
  padding: 14px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 252, 0.9)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.035) 0 1px, transparent 1px 22px);
}

.service-compact-resource-head {
  margin-bottom: 10px;
}

.service-mini-logo-grid,
.service-mini-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.service-mini-logo-card,
.service-mini-chip-grid span {
  min-width: 0;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(216, 225, 234, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.service-mini-logo-card {
  grid-template-rows: 26px 1fr;
  gap: 2px;
}

.service-mini-logo-card img {
  display: block;
  width: auto;
  max-width: min(92px, 94%);
  max-height: 22px;
  object-fit: contain;
  object-position: center;
}

.service-mini-logo-card img[src*="innocare"] {
  max-width: min(98px, 96%);
  max-height: 18px;
  transform: translateY(1px);
}

.service-mini-logo-card img[src*="jd-health"],
.service-mini-logo-card img[src*="medsci-logo"],
.service-mini-logo-card img[src*="trialdata"],
.service-mini-logo-card img[src*="xingshulin"] {
  max-width: min(104px, 96%);
  max-height: 22px;
  transform: translateY(0);
}

.service-mini-logo-card strong,
.service-mini-chip-grid span {
  display: -webkit-box;
  overflow: hidden;
  width: 100%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.26;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-mini-logo-card.text-only {
  grid-template-rows: 1fr;
  background: linear-gradient(145deg, rgba(238, 248, 252, 0.96), rgba(255, 255, 255, 0.96));
}

.service-mini-logo-card.logo-theme-blue {
  background: linear-gradient(145deg, #315ff4, #4c86ff);
  border-color: rgba(49, 95, 244, 0.38);
}

.service-mini-logo-card.logo-theme-blue strong {
  color: #fff;
}

.service-story-policy,
.service-story-alliance,
.service-story-global {
  padding: 48px 0;
}

.service-story-policy .service-compact-layout,
.service-story-alliance .service-compact-layout,
.service-story-global .service-compact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 34px;
}

.service-story-policy .service-compact-flow-card,
.service-story-policy .service-side-notes,
.service-story-alliance .service-compact-flow-card,
.service-story-alliance .service-side-notes,
.service-story-global .service-compact-flow-card,
.service-story-global .service-side-notes {
  padding: 20px;
}

.service-story-policy .service-compact-flow-card h3,
.service-story-policy .service-side-note h3,
.service-story-alliance .service-compact-flow-card h3,
.service-story-alliance .service-side-note h3,
.service-story-global .service-compact-flow-card h3,
.service-story-global .service-side-note h3 {
  margin-bottom: 14px;
  font-size: 19px;
}

.service-story-policy .service-compact-flow li,
.service-story-alliance .service-compact-flow li,
.service-story-global .service-compact-flow li {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}

.service-story-policy .service-compact-support,
.service-story-alliance .service-compact-support,
.service-story-global .service-compact-support {
  margin-top: 14px;
}

.service-story-policy .service-compact-capabilities article,
.service-story-alliance .service-compact-capabilities article,
.service-story-global .service-compact-capabilities article {
  min-height: 104px;
  padding: 14px;
}

.service-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.research-evidence-grid {
  grid-template-columns: 0.9fr 1.2fr 1.4fr;
}

.service-evidence-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(7, 26, 68, 0.06);
}

.service-evidence-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.service-evidence-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-evidence-card li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-weight: 700;
}

.service-evidence-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-2);
}

.evidence-line + .evidence-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 225, 234, 0.9);
}

.evidence-line strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.evidence-line p,
.data-system-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.partner-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-chip-grid em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.data-layer-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.data-layer-mini div {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft-2);
}

.data-layer-mini strong,
.data-layer-mini b,
.data-layer-mini small {
  display: block;
}

.data-layer-mini strong {
  color: var(--blue);
  font-size: 13px;
}

.data-layer-mini b {
  margin-top: 5px;
  color: var(--navy);
  line-height: 1.35;
}

.data-layer-mini small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.org-map {
  display: grid;
  gap: 18px;
  position: relative;
  padding: 6px 0 0;
}

.org-row {
  display: grid;
  justify-content: center;
}

.org-core {
  position: relative;
  display: grid;
  width: min(100%, 820px);
  margin: 0 auto;
  gap: 14px;
  padding: 0;
}

.org-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 1px;
  height: 18px;
  background: #9fb9d1;
}

.org-governance,
.org-execution {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0 auto;
}

.org-governance {
  grid-template-columns: minmax(150px, 0.62fr) minmax(220px, 1fr) minmax(150px, 0.62fr);
  align-items: center;
  max-width: 760px;
  gap: 16px;
}

.org-execution::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 1px;
  height: 12px;
  background: #9fb9d1;
}

.org-execution {
  grid-template-columns: minmax(150px, 0.62fr) minmax(220px, 1fr) minmax(150px, 0.62fr);
  max-width: 760px;
  gap: 16px;
  align-items: center;
}

.org-supervisory {
  grid-column: 1;
}

.org-council,
.org-executive {
  grid-column: 2;
}

.org-advisory {
  grid-column: 3;
}

.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
  --org-left-branch-center: 31%;
  --org-right-branch-center: 81%;
}

.org-report-lines {
  width: min(100%, 1240px);
  height: 34px;
  margin: -6px auto -8px;
  pointer-events: none;
}

.org-report-lines svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.org-report-lines polyline {
  fill: none;
  stroke: #b8cadd;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.org-branches::before,
.org-branches::after {
  content: "";
  display: none;
  position: absolute;
  top: -18px;
  height: 18px;
  border-top: 1px solid #c2d1df;
  background: none;
  pointer-events: none;
}

.org-branches::before {
  left: var(--org-left-branch-center);
  width: calc(50% - var(--org-left-branch-center));
  border-left: 1px solid #c2d1df;
}

.org-branches::after {
  left: 50%;
  width: calc(var(--org-right-branch-center) - 50%);
  border-right: 1px solid #c2d1df;
}

.org-branch {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(7, 26, 68, 0.05);
}

.org-branch::before {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: -20px;
  width: 1px;
  height: 20px;
  background: #c2d1df;
}

.org-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.org-unit-grid-ops {
  grid-template-columns: 1fr;
}

.org-node {
  position: relative;
  width: 100%;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid #b9cbe0;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 26, 68, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.org-root {
  width: min(100%, 880px);
  min-height: 102px;
  padding: 22px 34px;
  color: var(--white);
  border-color: rgba(15, 158, 207, 0.36);
  background:
    linear-gradient(135deg, rgba(15, 158, 207, 0.18), rgba(255, 255, 255, 0)),
    var(--navy);
}

.org-root strong {
  font-size: 24px;
  line-height: 1.28;
}

.org-root span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 0;
}

.org-role {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f5fb;
  font-size: 12px;
  font-weight: 900;
}

.org-council {
  border-color: rgba(0, 111, 184, 0.36);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.org-supervisory {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.org-advisory {
  align-self: center;
  min-height: 52px;
  padding: 8px 10px;
  border-color: rgba(184, 204, 224, 0.88);
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.org-advisory:hover,
.org-advisory:focus {
  box-shadow: 0 10px 22px rgba(7, 26, 68, 0.08);
}

.org-executive {
  border-color: rgba(15, 158, 207, 0.36);
  background: linear-gradient(180deg, #fafdff, #eef8fc);
}

.org-supervisory,
.org-council,
.org-executive {
  min-height: 66px;
  padding: 10px 14px;
}

.org-advisory .org-role {
  margin-bottom: 4px;
  color: #4c6f8f;
  background: #eef3f8;
  font-size: 11px;
}

.org-advisory strong {
  font-size: 13px;
}

.org-advisory small {
  margin-top: 4px;
  font-size: 11px;
}

.org-center {
  border-color: #8fb2d5;
  background: #f5fbff;
}

.org-unit {
  min-height: 76px;
  background: #ffffff;
}

.org-node:hover,
.org-node:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(15, 158, 207, 0.18);
  box-shadow: 0 16px 34px rgba(7, 26, 68, 0.09);
  transform: translateY(-2px);
}

.org-node strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.org-node span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.org-node small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.org-floating-tip {
  position: fixed;
  z-index: 9999;
  width: min(320px, calc(100vw - 32px));
  padding: 11px 13px;
  border: 1px solid rgba(184, 204, 224, 0.96);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(7, 26, 68, 0.16);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.58;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.org-floating-tip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.org-floating-tip strong,
.org-floating-tip span {
  display: block;
}

.org-floating-tip strong {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.35;
}

.org-floating-tip span {
  color: var(--navy);
}

.org-node.org-root strong {
  font-size: 24px;
  line-height: 1.28;
}

.org-node.org-root span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 0;
}

.accordion {
  display: none;
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  padding: 14px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.accordion p {
  margin: 0 0 14px;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.filter-bar a,
.filter-bar button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.filter-bar .is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.notice-list {
  display: grid;
  gap: 14px;
}

.public-section-head {
  margin-bottom: 20px;
}

.public-filter {
  margin-bottom: 24px;
}

.public-notice-list {
  gap: 16px;
}

.notice-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  border-left: 4px solid rgba(18, 104, 175, 0.82);
  box-shadow: 0 12px 28px rgba(7, 26, 68, 0.06);
}

.notice-date {
  color: var(--blue);
  font-weight: 800;
}

.notice-date span {
  display: inline-flex;
  min-width: 92px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef7fb;
}

.notice-main {
  min-width: 0;
}

.notice-main .meta-row {
  margin-bottom: 8px;
}

.notice-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.notice-attachment-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.notice-attachment {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #f8fbfd;
}

.notice-file-type {
  min-width: 46px;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--blue);
  background: #e7f2f8;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.notice-file-name {
  min-width: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.notice-file-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.notice-file-actions a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.notice-file-actions a:first-child {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-panel {
  padding: 30px;
}

.contact-value {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-methods div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}

.contact-methods span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-methods a {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.public-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.public-layout > aside {
  order: -1;
  position: sticky;
  top: 96px;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.project-record-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.project-record-main {
  min-width: 0;
}

.project-record-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(7, 26, 68, 0.06);
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-gallery .detail-image {
  aspect-ratio: 16 / 10;
}

.detail-gallery .detail-image:only-child {
  aspect-ratio: 4 / 3;
}

.project-record-card .rich-content h2 {
  margin-top: 0;
}

.project-document-card {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.project-document-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.project-document-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.project-document-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-document-card .text-link {
  margin-top: 14px;
}

.project-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.project-evidence-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(184, 204, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.project-evidence-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.project-evidence-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.project-evidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.side-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.side-panel + .side-panel {
  margin-top: 18px;
}

.side-panel h3 {
  margin: 0 0 16px;
  color: var(--navy);
}

.side-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel li + li {
  margin-top: 10px;
}

.project-dossier-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-dossier-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.project-dossier-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-dossier-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.project-dossier-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.side-panel a {
  color: var(--muted);
}

.side-panel a:hover {
  color: var(--blue);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.pagination .is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.project-detail-hero {
  padding: 112px 0 42px;
  background: var(--soft);
}

.project-detail-hero + .section {
  padding-top: 54px;
}

.project-detail-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.25;
}

.project-detail-hero p {
  max-width: 760px;
  color: var(--muted);
}

.project-detail-hero .breadcrumbs {
  color: var(--muted);
}

.project-detail-hero .breadcrumbs a {
  color: var(--blue);
}

.detail-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  aspect-ratio: 4 / 3;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rich-content {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rich-content img {
  margin: 20px 0;
  border-radius: 8px;
}

.rich-content h2,
.rich-content h3 {
  color: var(--navy);
}

.rich-content p {
  white-space: pre-line;
}

.contact-map {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: var(--muted);
  background: var(--soft-2);
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.amap-embed {
  position: relative;
  background: #eef5f9;
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-actions span {
  color: var(--muted);
  line-height: 1.6;
}

.office-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.office-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}

.office-list strong,
.office-list span,
.office-list a {
  display: block;
}

.office-list strong {
  color: var(--navy);
}

.office-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.office-list a {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 24px;
}

.search-page-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-summary {
  margin-bottom: 18px;
  color: var(--muted);
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.search-result h2 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.search-result h2 a:hover {
  color: var(--blue);
}

.search-result p {
  margin: 0;
  color: var(--muted);
}

.footer-beian {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}

.footer-beian img {
  width: 16px;
  height: 16px;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-top {
  padding: 52px 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand-row img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-top: 34px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.empty-state {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft-2);
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero h1,
  .page-hero h1,
  .immersive-content h1 {
    font-size: 42px;
  }

  .stats-grid,
  .ecosystem {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof-strip,
  .home-service-grid,
  .home-office-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-identity-layout,
  .home-ecosystem-layout,
  .home-final-layout {
    grid-template-columns: 1fr;
  }

  .home-strength-board {
    min-height: auto;
  }

  .home-page-dots {
    right: 16px;
  }

  .home-final .home-office-row {
    grid-template-columns: 1fr;
  }

  .home-timeline {
    grid-template-columns: 1fr;
  }

  .home-timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-timeline article:last-child {
    border-bottom: 0;
  }

  .home-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-resource-grid,
  .service-resource-grid.is-detail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .alliance-flow-strip,
  .alliance-module-grid,
  .alliance-event-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-grid,
  .project-archive-grid,
  .article-grid,
  .team-grid,
  .leader-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-index-strip,
  .project-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail,
  .service-detail-layout,
  .service-story-layout,
  .service-story-intro,
  .secondary-layout,
  .split-block,
  .public-layout,
  .project-detail-layout,
  .project-record-card,
  .org-branches,
  .org-execution {
    grid-template-columns: 1fr;
  }

  .org-core {
    width: min(100%, 640px);
    padding: 14px;
  }

  .org-node.org-root {
    width: min(100%, 760px);
    min-height: 92px;
    padding: 20px 26px;
  }

  .org-node.org-root strong {
    font-size: 21px;
  }

  .org-advisory {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .org-governance,
  .org-execution {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 18px;
  }

  .org-branches::before,
  .org-branches::after {
    display: none;
  }

  .org-report-lines {
    display: none;
  }

  .org-branch::before {
    display: block;
  }

  .org-supervisory,
  .org-council,
  .org-executive,
  .org-advisory {
    grid-column: 1;
  }

  .secondary-nav,
  .public-layout > aside {
    position: static;
  }

  .business-ecosystem {
    grid-template-columns: 1fr;
  }

  .ecosystem-panel {
    min-height: 360px;
  }

  .ecosystem-service-grid,
  .service-flow,
  .service-path,
  .focus-list,
  .resource-ladder,
  .data-layer-grid,
  .roadmap-grid,
  .value-grid,
  .service-story-card ol,
  .service-evidence-grid,
  .research-evidence-grid,
  .translation-focus-grid,
  .service-capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .translation-path-card {
    grid-column: 1 / -1;
  }

  .data-system-card {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 118px;
  }

  [id] {
    scroll-margin-top: 118px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .header-inner {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .site-search {
    top: 64px;
  }

  .section-tabs {
    top: 64px;
  }

  .brand img {
    height: 32px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-slide {
    animation: none;
  }

  .hero-slide.is-image {
    opacity: 1;
  }

  .hero-slide.is-video {
    display: none;
  }

  .immersive-hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 74px;
  }

  .immersive-inner {
    padding-top: 72px;
  }

  .hero h1,
  .page-hero h1,
  .immersive-content h1 {
    font-size: 34px;
  }

  .hero .subtitle,
  .page-hero p,
  .immersive-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-proof-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    transform: none;
  }

  .hero-proof-strip div {
    padding: 12px 14px;
  }

  .hero-proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .hero-proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-proof-strip strong {
    font-size: 24px;
  }

  .hero .scroll-cue {
    display: none;
  }

  .home-next-arrow,
  .home-page-dots {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-grid,
  .service-grid,
  .project-grid,
  .article-grid,
  .ecosystem,
  .home-identity-layout,
  .home-service-grid,
  .home-ecosystem-layout,
  .home-partner-stack,
  .home-logo-wall,
  .home-office-row,
  .ecosystem-service-grid,
  .immersive-stat-row,
  .project-archive-grid,
  .project-card a,
  .project-index-strip,
  .project-record-card,
  .project-evidence-grid,
  .service-story-layout,
  .service-story-intro,
  .secondary-layout,
  .split-block,
  .focus-list,
  .resource-ladder,
  .data-layer-grid,
  .roadmap-grid,
  .value-grid,
  .team-grid,
  .leader-grid,
  .intro-layout,
  .contact-grid,
  .process-grid,
  .service-path,
  .service-flow,
  .service-story-card ol,
  .service-capability-list,
  .service-evidence-grid,
  .research-evidence-grid,
  .service-resource-head,
  .service-resource-grid,
  .alliance-flow-strip,
  .alliance-module-grid,
  .alliance-event-row,
  .translation-focus-grid,
  .translation-path-steps,
  .translation-logo-grid,
  .data-layer-mini,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-summary-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-strength-board {
    padding: 26px;
  }

  .home-service-card {
    min-height: auto;
  }

  .home-contact {
    padding: 24px;
  }

  .home-final .home-contact {
    padding: 24px;
  }

  .contact-methods a {
    font-size: 18px;
  }

  .home-contact-content {
    display: block;
  }

  .home-office-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-office-row div:last-child {
    border-bottom: 0;
  }

  .project-card a {
    min-height: auto;
  }

  .project-card figure {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .project-index-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-index-strip div:last-child {
    border-bottom: 0;
  }

  .project-record-card {
    gap: 18px;
    padding: 16px;
  }

  .section-tabs a {
    min-height: 48px;
    padding: 0 10px;
    font-size: 14px;
  }

  .immersive-stat-row {
    max-width: none;
    margin-top: 34px;
  }

  .immersive-stat-row div {
    padding: 14px 16px;
  }

  .about-page-panel,
  .service-overview-page,
  .project-page-section,
  .service-story {
    min-height: auto;
  }

  .service-story::before {
    opacity: 0.08;
  }

  .page-timeline .timeline-item,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .service-story-layout {
    gap: 28px;
  }

  .service-story-intro {
    gap: 18px;
    align-items: start;
  }

  .translation-focus-card {
    min-height: auto;
  }

  .translation-path-card {
    grid-column: auto;
  }

  .translation-path-steps li::after {
    display: none;
  }

  .ecosystem-panel {
    min-height: auto;
    gap: 34px;
    padding: 26px;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .page-hero {
    height: auto;
    min-height: 280px;
    padding: 92px 0 42px;
  }

  .soft-block,
  .navy-block {
    margin-left: 0;
    margin-right: 0;
  }

  .org-map {
    display: none;
  }

  .accordion {
    display: block;
  }

  .notice-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .notice-date span {
    min-width: 0;
    min-height: 34px;
  }

  .notice-attachment {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .notice-file-type {
    width: fit-content;
  }

  .notice-file-actions {
    justify-content: flex-start;
  }

  .feature-list div,
  .contact-strip,
  .search-page-form,
  .site-search-form {
    display: block;
  }

  .feature-list span {
    display: block;
    margin-top: 6px;
  }

  .contact-strip .button {
    margin-top: 24px;
  }

  .search-page-form .button,
  .site-search-form .button {
    width: 100%;
    margin-top: 10px;
  }

  .project-detail-hero h1 {
    font-size: 30px;
  }

  .footer-brand-row {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* 2026-08 content, activity and contact refinements */
body.mobile-nav-open {
  overflow: hidden;
}

.article-card h3 a {
  color: inherit;
}

.article-card-media {
  display: block;
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 8;
  background: var(--soft);
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.035);
}

.article-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.home-activities {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 24, 55, 0.97), rgba(7, 48, 82, 0.9)),
    url("/static/images/optimized/page_hero_research-db4b4816e8cb.webp") center / cover no-repeat;
}

.home-activities::before {
  opacity: 0.18;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(211, 158, 59, 0.16) 58% 59%, transparent 59%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 32px);
}

.home-activity-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
}

.home-activity-intro .section-title,
.home-activity-intro .section-desc {
  color: var(--white);
}

.home-activity-intro .section-desc {
  color: rgba(255, 255, 255, 0.74);
}

.home-activity-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.home-activity-proof div {
  padding: 16px;
  border-top: 2px solid #d7a84c;
  background: rgba(255, 255, 255, 0.07);
}

.home-activity-proof strong,
.home-activity-proof span {
  display: block;
}

.home-activity-proof strong {
  color: #f0c66f;
  font-size: 28px;
}

.home-activity-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.home-activity-list,
.research-activity-list,
.activity-archive-list {
  display: grid;
  gap: 12px;
}

.home-activity-list {
  max-height: min(66svh, 620px);
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.36) rgba(255, 255, 255, 0.08);
}

.home-activity-list::-webkit-scrollbar {
  width: 6px;
}

.home-activity-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.home-activity-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.home-scroll-page .home-activities .activity-card {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-scroll-page .home-activities.is-visible .activity-card {
  opacity: 1;
  transform: translateX(0);
}

.home-scroll-page .home-activities.is-visible .activity-card:nth-child(2) {
  transition-delay: 0.1s;
}

.home-scroll-page .home-activities.is-visible .activity-card:nth-child(3) {
  transition-delay: 0.2s;
}

.activity-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.activity-card:hover {
  border-color: rgba(15, 158, 207, 0.48);
  box-shadow: 0 16px 32px rgba(7, 26, 68, 0.09);
  transform: translateY(-2px);
}

.activity-card.is-compact {
  min-height: 118px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.activity-card-index {
  color: #b8dbea;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.activity-card-main {
  min-width: 0;
}

.activity-card h3 {
  margin: 9px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.38;
}

.activity-card h3 a {
  color: inherit;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.activity-card.is-compact h3 {
  color: var(--white);
}

.activity-card.is-compact p {
  display: -webkit-box;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.activity-card.is-compact .tag {
  color: #ffe1a1;
  border-color: rgba(240, 198, 111, 0.32);
  background: rgba(211, 158, 59, 0.12);
}

.activity-card.is-compact .meta {
  color: #bde8f2;
}

.activity-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 20px;
}

.activity-card.is-compact .activity-arrow {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.activity-location {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.research-activity-stage {
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.98), rgba(8, 58, 83, 0.93)),
    url("/static/images/optimized/page_hero_research-db4b4816e8cb.webp") center / cover no-repeat;
}

.research-activity-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.research-activity-head .section-title {
  max-width: 760px;
}

.research-activity-head .section-desc {
  max-width: 760px;
}

.research-activity-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-activity-list .activity-card {
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: start;
  min-height: 260px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.96);
}

.research-activity-list .activity-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.research-editorial-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.research-editorial-intro {
  position: sticky;
  top: 148px;
}

.research-index {
  display: block;
  margin-top: 32px;
  color: rgba(0, 111, 184, 0.14);
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
}

.research-article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-article-grid .article-card {
  min-height: 250px;
}

.activity-archive-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.72), rgba(255, 255, 255, 1)),
    repeating-linear-gradient(135deg, rgba(0, 111, 184, 0.035) 0 1px, transparent 1px 30px);
}

.activity-archive-list .activity-card {
  grid-template-columns: 90px minmax(0, 1fr) 44px;
  padding: 26px;
}

.article-detail-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 130px 0 68px;
  color: var(--white);
  background: linear-gradient(120deg, #071a44, #0b5c79);
  overflow: hidden;
}

.article-detail-hero.has-image {
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.94), rgba(7, 26, 68, 0.5)),
    var(--article-bg) center / cover no-repeat;
}

.article-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 30px);
}

.article-detail-hero .container {
  position: relative;
  z-index: 1;
}

.article-detail-hero .breadcrumbs,
.article-detail-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.article-detail-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  font-size: 44px;
  line-height: 1.25;
}

.article-detail-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #bde8f2;
  font-weight: 700;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: start;
}

.article-detail-body figure {
  margin: 0 0 22px;
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  overflow: hidden;
}

.article-detail-body figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail-body .rich-content {
  font-size: 17px;
  line-height: 2;
}

.article-detail-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-left: 3px solid var(--blue-2);
  background: var(--soft-2);
}

.article-detail-aside span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.article-detail-aside strong {
  color: var(--navy);
  line-height: 1.5;
}

.article-detail-aside .button {
  margin-top: 8px;
}

.contact-grid > *,
.contact-panel,
.map-actions,
.office-list div {
  min-width: 0;
}

.contact-methods a,
.map-actions span,
.office-list span {
  overflow-wrap: anywhere;
}

.amap-preview-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  isolation: isolate;
}

.amap-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 26, 68, 0.72));
}

.amap-preview-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.amap-location-pin {
  position: absolute;
  z-index: 2;
  left: 63%;
  top: 42%;
  width: 26px;
  height: 26px;
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: #df3f37;
  box-shadow: 0 8px 18px rgba(7, 26, 68, 0.28);
  transform: rotate(-45deg);
}

.amap-location-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--white);
}

.amap-address-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--white);
}

.amap-address-label strong,
.amap-address-label small {
  display: block;
}

.amap-address-label strong {
  font-size: 18px;
}

.amap-address-label small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .home-activity-layout,
  .research-editorial-layout,
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .research-activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-editorial-intro,
  .article-detail-aside {
    position: static;
  }

  .research-index {
    display: none;
  }
}

@media (max-width: 760px) {
  .mobile-nav {
    overscroll-behavior: contain;
  }

  .home-activity-layout,
  .research-activity-list,
  .research-article-grid {
    grid-template-columns: 1fr;
  }

  .home-activity-layout {
    gap: 30px;
  }

  .home-activity-proof {
    margin: 22px 0;
  }

  .activity-card,
  .activity-archive-list .activity-card,
  .research-activity-list .activity-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .activity-card .activity-arrow {
    position: static;
    grid-column: 2;
    margin-top: 4px;
  }

  .home-project-mini-list {
    grid-template-columns: 1fr;
  }

  .research-activity-head {
    display: block;
  }

  .research-activity-head .button {
    margin-top: 20px;
  }

  .article-detail-hero {
    min-height: 360px;
    padding: 108px 0 48px;
  }

  .article-detail-hero h1 {
    font-size: 32px;
  }

  .article-detail-hero p {
    font-size: 16px;
  }

  .article-detail-body .rich-content {
    padding: 22px;
    font-size: 16px;
  }

  .contact-panel {
    width: 100%;
    padding: 22px;
  }

  .map-actions {
    display: block;
  }

  .map-actions .button {
    width: 100%;
    margin-top: 12px;
  }

  .amap-preview-card {
    aspect-ratio: 4 / 3;
  }

  .amap-address-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

@media (min-width: 1101px) and (max-height: 900px) {
  .home-scroll-page .home-page-section {
    padding-top: 88px;
    padding-bottom: 46px;
  }

  .home-service-card {
    min-height: 260px;
    padding: 18px 15px;
  }

  .home-service-card h3 {
    margin: 14px 0 10px;
    font-size: 18px;
  }

  .home-service-card p {
    line-height: 1.58;
    -webkit-line-clamp: 4;
  }

  .home-service-card ul {
    gap: 6px;
    padding-top: 14px;
  }

  .home-identity-layout,
  .home-ecosystem-layout {
    gap: 40px;
  }

  .home-summary-list {
    margin-top: 20px;
  }

  .home-summary-list div {
    padding: 12px 0;
  }

  .home-strength-board {
    min-height: 0;
    padding: 24px 28px;
  }

  .home-strength-board h3 {
    margin: 12px 0 18px;
    font-size: 26px;
  }

  .home-strength-grid div {
    padding: 12px 0;
  }

  .home-strength-grid strong {
    font-size: 30px;
  }

  .home-strength-grid span {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
  }

  .home-activity-layout {
    gap: 32px;
  }

  .home-activity-proof {
    margin: 22px 0;
  }

  .home-activity-proof div {
    padding: 12px 14px;
  }

  .activity-card.is-compact {
    min-height: 120px;
    grid-template-columns: 52px minmax(0, 1fr) 36px;
    gap: 14px;
    padding: 16px 18px;
  }

  .activity-card.is-compact h3 {
    margin: 6px 0;
    font-size: 19px;
  }

  .activity-card.is-compact p {
    display: -webkit-box;
    line-height: 1.5;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .activity-card.is-compact .activity-location {
    margin-top: 6px;
  }

  .home-partner-stack {
    gap: 10px;
  }

  .home-partner-stack article {
    min-height: 108px;
    padding: 14px;
  }

  .home-partner-stack h3 {
    margin: 0;
    font-size: 18px;
  }

  .home-partner-stack p {
    line-height: 1.45;
  }

  .home-logo-wall {
    gap: 8px;
    margin-top: 16px;
  }

  .home-logo-wall a {
    min-height: 70px;
    gap: 4px;
    padding: 8px 10px;
  }

  .home-logo-wall img {
    max-height: 32px;
  }

  .home-final .section-head {
    margin-bottom: 16px;
  }

  .home-final .article-card {
    min-height: 184px;
    padding: 16px;
  }

  .home-featured-projects {
    margin-top: 12px;
    padding: 12px;
  }

  .home-project-mini {
    min-height: 76px;
    padding: 10px;
  }

  .home-project-mini strong {
    -webkit-line-clamp: 1;
  }

  .home-final .home-contact {
    padding: 22px 24px;
  }

  .home-final .home-office-row {
    margin-top: 16px;
  }

  .home-final .home-office-row div {
    padding: 10px 0;
  }
}

@media (min-width: 1101px) and (max-height: 700px) {
  .home-scroll-page .hero-content {
    transform: translateY(-54px);
  }

  .home-scroll-page .home-page-section {
    padding-top: 74px;
    padding-bottom: 32px;
  }

  .home-scroll-page .home-page-section .section-title {
    font-size: 30px;
  }

  .home-scroll-page .home-page-section .section-desc {
    line-height: 1.52;
  }

  .home-ecosystem .button {
    margin-top: 20px;
  }

  .home-partner-stack article {
    min-height: 90px;
    padding: 12px 14px;
  }

  .home-partner-stack h3 {
    margin: 0;
    font-size: 17px;
  }

  .home-partner-stack p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.36;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .home-logo-wall {
    margin-top: 12px;
  }

  .home-logo-wall a {
    min-height: 58px;
    gap: 2px;
    padding: 6px 8px;
  }

  .home-logo-wall img {
    max-height: 26px;
  }

  .home-logo-wall span {
    font-size: 11px;
  }

  .home-final-layout {
    gap: 24px;
  }

  .home-final .section-head {
    margin-bottom: 12px;
  }

  .home-final .article-card {
    min-height: 152px;
    padding: 13px 14px;
  }

  .home-final .article-card h3 {
    font-size: 18px;
  }

  .home-final .article-card p {
    line-height: 1.46;
    -webkit-line-clamp: 2;
  }

  .home-featured-projects {
    margin-top: 10px;
    padding: 10px;
  }

  .home-featured-head {
    margin-bottom: 8px;
  }

  .home-project-mini {
    min-height: 66px;
    padding: 9px 10px;
  }

  .home-final .home-contact {
    padding: 18px 20px;
  }

  .home-final .home-contact-content .button {
    margin-top: 14px;
  }

  .home-final .home-office-row {
    margin-top: 14px;
  }

  .home-final .home-office-row div {
    padding: 8px 0;
  }

  .home-office-row span {
    font-size: 13px;
    line-height: 1.42;
  }
}

@media (max-width: 1100px) {
  .service-compact-layout,
  .service-compact-support {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-compact-layout.is-solo {
    max-width: none;
  }

  .service-compact-flow-card {
    max-width: none;
  }

  .service-side-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mini-logo-grid,
  .service-mini-chip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-story-compact {
    padding: 54px 0;
  }

  .service-story-slim {
    padding: 42px 0;
  }

  .service-compact-layout.is-solo {
    min-height: 0;
    padding: 24px 22px;
  }

  .service-compact-layout.is-solo::after {
    right: 16px;
    bottom: 12px;
    font-size: 58px;
  }

  .service-compact-flow {
    grid-template-columns: 1fr;
  }

  .service-side-notes {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .service-side-notes::after {
    font-size: 52px;
  }

  .service-side-note,
  .service-side-note + .service-side-note {
    padding: 0;
    border-left: 0;
  }

  .service-side-note + .service-side-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(184, 204, 224, 0.72);
  }

  .service-compact-capabilities {
    grid-template-columns: 1fr;
  }

  .service-mini-logo-grid,
  .service-mini-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mini-logo-card,
  .service-mini-chip-grid span {
    height: 58px;
  }
}

@media (max-width: 1100px) {
  .leader-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leader-grid-secondary {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leader-grid-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leader-card figure {
    height: 108px;
  }

  .leader-card img {
    width: 88px;
    height: 88px;
  }

  .leader-card-secondary figure {
    height: 78px;
  }

  .leader-card-secondary img {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 460px) {
  .leader-grid-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
