:root {
  --blue-950: #072848;
  --blue-900: #09375f;
  --blue-800: #0d477c;
  --blue-700: #0f5ca8;
  --blue-600: #176fc0;
  --blue-500: #2b83d3;
  --cyan-500: #20b7aa;
  --cyan-300: #71d7cd;
  --ink: #172434;
  --muted: #607086;
  --line: #dce5ee;
  --surface: #f4f8fb;
  --white: #fff;
  --container: 1200px;
  --shadow: 0 18px 60px rgba(20, 59, 96, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 190px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-700);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 8px 26px rgba(17, 55, 91, 0.08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.utility-bar {
  height: 32px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--blue-950);
  font-size: 12px;
}

.utility-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.utility-inner a:hover {
  color: #fff;
}

.utility-inner svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.brand-row {
  border-bottom: 1px solid #e7edf3;
}

.brand-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.official-brand {
  flex: 0 1 500px;
  min-width: 0;
}

.official-brand img {
  display: block;
  width: min(500px, 100%);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  overflow: visible;
}

.brand-mark .mark-frame {
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 6;
}

.brand-mark .mark-line {
  fill: none;
  stroke: var(--cyan-500);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: #fff;
  stroke: var(--cyan-500);
  stroke-width: 3;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-parent {
  margin-bottom: 4px;
  color: #182331;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-name {
  color: var(--blue-800);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.site-search {
  display: flex;
  width: 330px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #cfd9e3;
  border-radius: 2px;
  background: #fff;
}

.site-search:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(23, 111, 192, 0.1);
}

.site-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
}

.site-search input::placeholder {
  color: #9aa7b5;
}

.site-search button {
  display: grid;
  width: 58px;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--blue-700);
  transition: background 0.2s ease;
}

.site-search button:hover {
  background: var(--blue-800);
}

.site-search svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-800);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  background: #fff;
}

.nav-inner {
  display: flex;
  height: 56px;
  align-items: stretch;
  justify-content: center;
}

.nav-link {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: #2c4763;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 3px;
  background: var(--blue-700);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
  background: #f7fafc;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: stretch;
}

.nav-dropdown-toggle {
  width: 100%;
  min-width: 0;
  gap: 9px;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.nav-dropdown-toggle > span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--blue-700);
  background: #f7fafc;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown:hover .nav-dropdown-toggle > span,
.nav-dropdown:focus-within .nav-dropdown-toggle > span,
.nav-dropdown.is-open .nav-dropdown-toggle > span {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: 50%;
  width: 250px;
  padding: 9px 0;
  border-top: 3px solid var(--blue-700);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 48, 80, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 9px 25px;
  color: #39536d;
  border-bottom: 1px solid #edf2f6;
  font-size: 14px;
  transition: color .2s ease, background .2s ease, padding .2s ease;
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a::after {
  position: absolute;
  right: 20px;
  color: var(--cyan-500);
  content: "↗";
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  padding-left: 30px;
  color: var(--blue-700);
  background: #f3f8fc;
}

.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 74% 32%, rgba(24, 128, 182, 0.26), transparent 31%),
    linear-gradient(118deg, #082f55 0%, #0a4274 54%, #0c548b 100%);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -180px;
  width: 680px;
  height: 370px;
  border: 1px solid rgba(119, 218, 209, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.hero-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(113, 215, 205, 0.3);
  border-radius: 50%;
}

.hero-orb-one {
  top: 70px;
  right: 14%;
  width: 460px;
  height: 460px;
}

.hero-orb-two {
  top: 150px;
  right: 19%;
  width: 300px;
  height: 300px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 50px;
  padding-block: 54px 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--cyan-300);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--cyan-500);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.hero-copy h1 em {
  color: #7fe0d5;
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: var(--cyan-500);
}

.button-primary:hover {
  background: #1aa396;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
}

.button-ghost:hover {
  background: rgba(255,255,255,.12);
}

.hero-tags {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.hero-tags span {
  position: relative;
  padding-left: 12px;
}

.hero-tags span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan-300);
  content: "";
  transform: translateY(-50%);
}

.data-visual {
  overflow: hidden;
  border: 1px solid rgba(142, 219, 225, 0.24);
  background: linear-gradient(145deg, rgba(6, 36, 66, 0.82), rgba(19, 89, 128, 0.42));
  box-shadow: 0 35px 80px rgba(2, 24, 45, 0.3);
  backdrop-filter: blur(8px);
}

.visual-head,
.visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.visual-head span,
.visual-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.visual-head i,
.visual-foot i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 10px var(--cyan-500);
}

.visual-head small {
  color: var(--cyan-300);
}

.visual-stage {
  position: relative;
  height: 385px;
  overflow: hidden;
}

.network-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-lines path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 1.2;
  stroke-dasharray: 5 8;
  animation: dash 18s linear infinite;
}

.network-nodes circle {
  fill: #0c436f;
  stroke: var(--cyan-300);
  stroke-width: 2;
}

.network-nodes .node-main {
  fill: var(--cyan-500);
  stroke: #fff;
  filter: drop-shadow(0 0 10px rgba(113, 215, 205, 0.7));
}

@keyframes dash {
  to { stroke-dashoffset: -160; }
}

.core-node {
  position: absolute;
  top: 117px;
  left: 243px;
  display: flex;
  width: 102px;
  height: 102px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 215, 205, .7);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 183, 170, .3), rgba(7, 47, 82, .86) 66%);
  box-shadow: 0 0 0 12px rgba(32, 183, 170, .06), 0 0 30px rgba(32, 183, 170, .18);
  transform: translate(-50%, -50%);
}

.core-node span {
  margin-bottom: 3px;
  color: var(--cyan-300);
  font: 10px Consolas, monospace;
  letter-spacing: .18em;
}

.core-node strong {
  font-size: 15px;
  letter-spacing: .08em;
}

.satellite {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.satellite i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan-300);
  border-radius: 50%;
  background: #0b456e;
  box-shadow: 0 0 8px rgba(113, 215, 205, .55);
}

.satellite-a { top: 52px; left: 150px; }
.satellite-b { top: 263px; left: 144px; }
.satellite-c { top: 38px; right: 45px; }
.satellite-d { top: 252px; right: 28px; }

.data-chip {
  position: absolute;
  display: flex;
  min-width: 94px;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-left: 2px solid var(--cyan-500);
  background: rgba(5, 34, 62, .7);
}

.data-chip b {
  color: var(--cyan-300);
  font: 20px Consolas, monospace;
}

.data-chip span {
  color: rgba(255,255,255,.56);
  font-size: 10px;
}

.chip-one { bottom: 18px; left: 24px; }
.chip-two { right: 24px; bottom: 18px; }

.visual-foot {
  justify-content: flex-start;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
}

.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 59, 96, .08);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quick-item {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-right: 1px solid #e3eaf0;
  overflow: hidden;
  transition: color .25s ease, background .25s ease;
}

.quick-item:first-child {
  border-left: 1px solid #e3eaf0;
}

.quick-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan-500);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.quick-item:hover {
  color: var(--blue-700);
  background: #f7fbfd;
}

.quick-item:hover::after {
  transform: scaleX(1);
}

.quick-number {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #edf2f6;
  font: 30px Consolas, monospace;
  font-weight: 700;
}

.quick-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: #eef6fb;
}

.quick-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.quick-item strong {
  font-size: 16px;
}

.quick-item small {
  margin-top: 4px;
  color: #9aa7b5;
  font: 9px Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section {
  padding: 100px 0;
}

.section-heading h2 {
  margin: 6px 0 14px;
  color: var(--blue-950);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.35;
}

.section-kicker {
  margin: 0;
  color: var(--blue-600);
  font: 12px Arial, sans-serif;
  letter-spacing: .18em;
}

.heading-line {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

.heading-summary {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered .heading-summary {
  margin-inline: auto;
}

.purpose {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.purpose::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-image: radial-gradient(#dfeaf2 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: .45;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.purpose-grid {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 80px;
}

.purpose-heading {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.purpose-content {
  position: relative;
  padding-top: 4px;
}

.purpose-content > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #34495e;
  font-size: 19px;
  line-height: 2.05;
  text-align: justify;
}

.purpose-content > p span {
  color: var(--blue-700);
  font-weight: 700;
}

.quote-mark {
  position: absolute;
  top: -60px;
  right: 10px;
  color: #eef4f8;
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
}

.purpose-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  border: solid var(--line);
  border-width: 1px 0;
}

.purpose-values div {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding-left: 25px;
  border-right: 1px solid var(--line);
}

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

.purpose-values b {
  margin-bottom: 6px;
  color: var(--blue-700);
  font-size: 20px;
}

.purpose-values small {
  color: #7a8998;
  font-size: 12px;
}

.founding-photo {
  padding: 0 0 100px;
  background: #fff;
}

.founding-photo-carousel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 59, 96, .14);
}

.founding-photo-slides {
  position: relative;
  min-height: 530px;
}

.founding-photo-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 530px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .65s ease;
}

.founding-photo-panel.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.founding-photo-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dce6ee;
}

.founding-photo-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.3);
  content: "";
  pointer-events: none;
}

.founding-photo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founding-photo-award .founding-photo-image {
  padding: 28px;
  background: #f6f3eb;
}

.founding-photo-award .founding-photo-image img {
  object-fit: contain;
  background: #fff;
  box-shadow: 0 12px 32px rgba(73, 56, 27, .13);
}

.founding-photo-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(32,183,170,.22), transparent 38%),
    linear-gradient(145deg, var(--blue-900), var(--blue-950));
}

.founding-photo-copy::after {
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(113,215,205,.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(113,215,205,.035), 0 0 0 68px rgba(113,215,205,.025);
}

.founding-photo-copy .section-kicker {
  color: var(--cyan-300);
}

.founding-photo-copy h2 {
  position: relative;
  z-index: 2;
  margin: 17px 0 15px;
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: .08em;
}

.founding-photo-copy > p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  margin: 6px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.9;
}

.photo-seal {
  position: absolute;
  top: 42px;
  right: 36px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(113,215,205,.32);
  color: rgba(113,215,205,.65);
  font-family: serif;
  font-size: 13px;
  transform: rotate(8deg);
}

.photo-caption-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .08em;
}

.photo-caption-line i {
  width: 24px;
  height: 1px;
  background: var(--cyan-500);
}

.about-carousel-controls {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.about-carousel-pagination,
.about-carousel-arrows {
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.about-carousel-pagination button,
.about-carousel-arrows button {
  display: grid;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.68);
  background: rgba(5,38,67,.76);
  backdrop-filter: blur(7px);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.about-carousel-pagination button {
  width: 42px;
  font: 10px Consolas, monospace;
}

.about-carousel-pagination button.active,
.about-carousel-pagination button:hover,
.about-carousel-arrows button:hover {
  color: var(--blue-950);
  border-color: var(--cyan-300);
  background: var(--cyan-300);
}

.about-carousel-arrows button {
  width: 35px;
}

.about-carousel-arrows svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-news {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.home-news::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-image: radial-gradient(#d9e6ef 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: .42;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.home-news > .container {
  position: relative;
  z-index: 2;
}

.home-news-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.home-news-heading .heading-summary {
  max-width: 620px;
}

.home-news-more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding: 12px 18px;
  border: 1px solid #cedce7;
  color: var(--blue-700);
  background: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.home-news-more span {
  transition: transform .2s ease;
}

.home-news-more:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.home-news-more:hover span {
  transform: translateX(4px);
}

.home-products {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.home-products::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(15, 92, 168, .07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(15, 92, 168, .018), 0 0 0 140px rgba(15, 92, 168, .012);
}

.home-products > .container {
  position: relative;
  z-index: 2;
}

.home-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.home-products-heading .heading-summary {
  max-width: 650px;
}

.home-products-more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding: 12px 18px;
  border: 1px solid #cedce7;
  color: var(--blue-700);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.home-products-more span {
  transition: transform .2s ease;
}

.home-products-more:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.home-products-more:hover span {
  transform: translateX(4px);
}

.home-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-product-card {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1.08fr) minmax(210px, .92fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 48px 38px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-product-card:hover {
  z-index: 2;
  box-shadow: 0 24px 55px rgba(17, 55, 91, .18);
  transform: translateY(-7px);
}

.home-product-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.home-product-number {
  display: block;
  margin-bottom: 33px;
  font: 10px Consolas, monospace;
  letter-spacing: .14em;
}

.home-product-copy > p {
  margin: 0 0 10px;
  font: 10px Arial, sans-serif;
  letter-spacing: .2em;
}

.home-product-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.42;
  letter-spacing: .035em;
}

.home-product-copy h3 em {
  font-style: normal;
}

.home-product-copy > small {
  display: block;
  max-width: 360px;
  font-size: 13px;
  line-height: 1.85;
}

.home-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 31px;
  font-size: 12px;
  font-weight: 700;
}

.home-product-link i {
  font-size: 15px;
  font-style: normal;
  transition: transform .2s ease;
}

.home-product-card:hover .home-product-link i {
  transform: translate(3px, -3px);
}

.home-product-model {
  color: #fff;
  background: linear-gradient(130deg, #062c50, #0a6282);
}

.home-product-model::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(113, 215, 205, .13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(113, 215, 205, .025), 0 0 0 110px rgba(113, 215, 205, .018);
}

.home-product-model .home-product-number {
  color: rgba(255, 255, 255, .42);
}

.home-product-model .home-product-copy > p,
.home-product-model .home-product-copy h3 em,
.home-product-model .home-product-link {
  color: var(--cyan-300);
}

.home-product-model .home-product-copy > small {
  color: rgba(255, 255, 255, .65);
}

.home-model-graphic {
  position: relative;
  z-index: 2;
  min-height: 270px;
}

.home-model-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(113, 215, 205, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home-model-ring.ring-outer { width: 255px; height: 255px; }
.home-model-ring.ring-inner { width: 180px; height: 180px; }

.home-model-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 130px;
  height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 215, 205, .42);
  color: #fff;
  background: rgba(3, 33, 58, .78);
  box-shadow: 0 18px 40px rgba(0, 22, 42, .25);
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-model-core > * { transform: rotate(-45deg); }
.home-model-core i { color: var(--cyan-300); font: 21px Arial, sans-serif; font-style: normal; font-weight: 800; }
.home-model-core b { margin-top: 7px; font-size: 12px; }
.home-model-core small { margin-top: 5px; color: rgba(255, 255, 255, .4); font: 6px Arial, sans-serif; }

.home-model-node {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border-left: 2px solid var(--cyan-500);
  color: rgba(255, 255, 255, .66);
  background: rgba(3, 29, 54, .82);
  font-size: 9px;
}

.home-model-node.node-one { top: 23px; left: 0; }
.home-model-node.node-two { top: 52px; right: -5px; }
.home-model-node.node-three { right: 8px; bottom: 30px; }

.home-product-fresh {
  color: #203d29;
  border: 1px solid #d7e8da;
  background: linear-gradient(130deg, #eff9f1, #fff9ec);
}

.home-product-fresh::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(46, 125, 50, .11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(46, 125, 50, .028), 0 0 0 110px rgba(46, 125, 50, .018);
}

.home-product-fresh .home-product-number { color: #91a497; }
.home-product-fresh .home-product-copy > p,
.home-product-fresh .home-product-copy h3 em,
.home-product-fresh .home-product-link { color: #2e7d32; }
.home-product-fresh .home-product-copy > small { color: #6a7e70; }

.home-fresh-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: center;
}

.home-fresh-graphic > span {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 67px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-fresh-graphic > span i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #b8d5bd;
  border-radius: 50%;
  color: #2e7d32;
  background: rgba(255, 255, 255, .68);
  font-style: normal;
  font-weight: 800;
}

.home-fresh-graphic > span.active i {
  color: #fff;
  border-color: #2e7d32;
  background: #2e7d32;
  box-shadow: 0 0 0 9px rgba(46, 125, 50, .09);
}

.home-fresh-graphic > span small {
  margin-top: 13px;
  color: #5e7564;
  font-size: 9px;
  white-space: nowrap;
}

.home-fresh-graphic > b {
  width: 24px;
  height: 1px;
  margin-bottom: 24px;
  background: #b8d5bd;
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
  gap: 28px;
}

.home-news-carousel {
  position: relative;
  min-width: 0;
  height: 470px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 18px 45px rgba(18,58,93,.13);
}

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

.home-news-slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity .55s ease, transform 1.2s ease;
}

.home-news-slide.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-news-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,30,53,.05) 20%, rgba(4,30,53,.94) 100%),
    linear-gradient(90deg, rgba(4,30,53,.3), transparent 70%);
  content: "";
}

.home-news-slide-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 42px 75px;
}

.home-news-slide-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.home-news-slide-meta span {
  padding: 5px 9px;
  color: #e5fffc;
  background: rgba(32,183,170,.76);
}

.home-news-slide-overlay h3 {
  max-width: 680px;
  margin: 0;
  font-size: 27px;
  line-height: 1.45;
}

.home-news-slide-overlay h3 a:hover {
  color: var(--cyan-300);
}

.home-news-slide-overlay > p {
  display: -webkit-box;
  max-width: 690px;
  margin: 13px 0 0;
  overflow: hidden;
  color: rgba(255,255,255,.67);
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 600;
}

.home-news-read span {
  transition: transform .2s ease;
}

.home-news-read:hover span {
  transform: translateX(4px);
}

.home-news-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding-left: 42px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(4,31,55,.42);
  backdrop-filter: blur(5px);
}

.home-news-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-news-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.home-news-dots button.active {
  width: 25px;
  border-radius: 5px;
  background: var(--cyan-300);
}

.home-news-arrows {
  display: flex;
  height: 100%;
}

.home-news-arrows button {
  display: grid;
  width: 52px;
  height: 100%;
  place-items: center;
  border: solid rgba(255,255,255,.12);
  border-width: 0 0 0 1px;
  color: #fff;
  background: rgba(255,255,255,.03);
  transition: background .2s ease;
}

.home-news-arrows button:hover {
  background: var(--blue-600);
}

.home-news-arrows svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-news-list-panel {
  display: flex;
  min-width: 0;
  height: 470px;
  flex-direction: column;
  border: 1px solid #d8e3eb;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18,58,93,.08);
}

.home-news-list-header {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 2px solid var(--blue-700);
}

.home-news-list-header small {
  color: var(--blue-600);
  font: 9px Arial, sans-serif;
  letter-spacing: .18em;
}

.home-news-list-header h3 {
  margin: 4px 0 0;
  color: var(--blue-950);
  font-size: 20px;
}

.home-news-count {
  color: #a3b1bd;
  font: 9px Arial, sans-serif;
  letter-spacing: .12em;
}

.home-news-list {
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.home-news-list-item {
  position: relative;
  display: grid;
  min-height: 49px;
  grid-template-columns: 55px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 11px;
  padding: 8px 17px;
  border-bottom: 1px solid #edf1f4;
  transition: background .2s ease;
}

.home-news-list-item:hover {
  background: #f4f8fb;
}

.home-news-list-item time {
  display: flex;
  flex-direction: column;
  color: #9aa6b1;
}

.home-news-list-item time strong {
  color: var(--blue-700);
  font: 15px Arial, sans-serif;
}

.home-news-list-item time small {
  margin-top: 2px;
  font-size: 9px;
}

.home-news-list-item > div {
  min-width: 0;
}

.home-news-list-item > div > span {
  display: none;
  color: var(--cyan-500);
  font-size: 9px;
}

.home-news-list-item h4 {
  margin: 0;
  overflow: hidden;
  color: #3b4f62;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-list-item h4 a:hover {
  color: var(--blue-600);
}

.home-news-list-item em {
  color: #e6edf2;
  font: 16px Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.home-news-list-more {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--blue-600);
  background: #f5f8fa;
  font-size: 11px;
  font-weight: 600;
}

.home-news-list-more:hover {
  color: #fff;
  background: var(--blue-700);
}

.home-news-loading,
.home-news-error {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.home-news-loading i {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.18);
  border-top-color: var(--cyan-300);
  border-radius: 50%;
  animation: home-news-spin .8s linear infinite;
}

.home-news-error.compact {
  color: #82909d;
}

.home-news-list-loading {
  height: 49px;
  border-bottom: 1px solid #edf1f4;
  background: linear-gradient(100deg, #f5f8fa 20%, #fff 40%, #f5f8fa 60%);
  background-size: 200% 100%;
  animation: home-news-shine 1.3s linear infinite;
}

@keyframes home-news-spin {
  to { transform: rotate(360deg); }
}

@keyframes home-news-shine {
  to { background-position-x: -200%; }
}

.tasks {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 41, 72, .97), rgba(6, 41, 72, .97)),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,.06) 49%, rgba(255,255,255,.06) 51%, transparent 52%);
  background-size: auto, 50px 50px;
}

.tasks::before,
.tasks::after {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(113, 215, 205, .1);
  border-radius: 50%;
  content: "";
}

.tasks::before { top: -260px; left: -160px; }
.tasks::after { right: -180px; bottom: -300px; }

.light-heading h2 {
  color: #fff;
}

.light-heading .section-kicker {
  color: var(--cyan-300);
}

.light-heading .heading-summary {
  color: rgba(255,255,255,.6);
}

.task-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.task-card {
  position: relative;
  min-height: 395px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.035);
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.task-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(113,215,205,.18);
  border-radius: 50%;
  content: "";
}

.task-card:hover {
  border-color: rgba(113,215,205,.5);
  background: rgba(32,183,170,.1);
  transform: translateY(-8px);
}

.task-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.28);
  font: 11px Consolas, monospace;
}

.task-top i {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.1);
}

.task-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 28px 0 23px;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(113,215,205,.35);
  background: rgba(32,183,170,.08);
}

.task-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.task-card h3 {
  margin: 0 0 15px;
  font-size: 21px;
  line-height: 1.45;
}

.task-card p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.85;
}

.task-label {
  position: absolute;
  bottom: 22px;
  left: 26px;
  color: rgba(113,215,205,.45);
  font: 9px Arial, sans-serif;
  letter-spacing: .2em;
}

.organization {
  background: var(--surface);
}

.organization-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  align-items: center;
  gap: 85px;
}

.org-description {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.org-facts {
  display: flex;
  margin-bottom: 26px;
}

.org-facts div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  margin-right: 18px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.org-facts div:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.org-facts strong {
  color: var(--blue-700);
  font: 38px Arial, sans-serif;
  font-weight: 700;
}

.org-facts span {
  color: #718092;
  font-size: 11px;
  line-height: 1.5;
}

.org-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #8390a0;
  font-size: 12px;
}

.org-note span {
  width: 20px;
  height: 2px;
  background: var(--cyan-500);
}

.org-chart {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 45px;
  border: 1px solid #d7e3ed;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.org-watermark {
  position: absolute;
  right: -18px;
  bottom: -30px;
  color: #f2f7fa;
  font: 120px Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.08em;
}

.org-node {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbdbe7;
  color: var(--blue-900);
  background: #fff;
}

.org-node small {
  margin-bottom: 5px;
  color: #8a98a7;
  font-size: 10px;
}

.org-node strong {
  font-size: 15px;
}

.org-parent {
  width: 360px;
}

.org-branch {
  width: 240px;
  color: #fff;
  border-color: var(--blue-700);
  background: linear-gradient(110deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 10px 24px rgba(15,92,168,.22);
}

.org-branch small {
  color: rgba(255,255,255,.65);
}

.org-connector.vertical {
  width: 1px;
  height: 26px;
  background: #a9c2d5;
}

.org-connector.second {
  height: 30px;
}

.org-connector.horizontal {
  position: relative;
  z-index: 1;
  width: 70%;
  height: 1px;
  background: #a9c2d5;
}

.org-children {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.org-children .org-node {
  min-height: 92px;
  padding: 10px 9px;
  text-align: center;
}

.org-coordinators strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
}

.org-coordinators strong span {
  white-space: nowrap;
}

.org-member-link {
  transition: color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.org-member-link strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.org-member-link i {
  color: var(--cyan-500);
  font-size: 16px;
  font-style: normal;
  transition: transform .22s ease;
}

.org-member-link:hover,
.org-member-link:focus-visible {
  color: var(--blue-700);
  border-color: var(--blue-500);
  background: #f1f8fd;
  box-shadow: 0 10px 24px rgba(15,92,168,.12);
  transform: translateY(-3px);
}

.org-member-link:hover i,
.org-member-link:focus-visible i {
  transform: translateX(4px);
}

.org-children .org-node::before {
  position: absolute;
  top: -31px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #a9c2d5;
  content: "";
}

.members {
  background: #fff;
}

.member-panel {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 510px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
  box-shadow: 0 24px 60px rgba(8, 47, 85, .18);
}

.member-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32,183,170,.25), transparent 45%),
    linear-gradient(135deg, #0a4c7d, #08375e);
}

.member-visual::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.member-rings,
.member-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(113,215,205,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 380px; height: 380px; }
.ring-two { width: 265px; height: 265px; }

.member-core {
  z-index: 2;
  display: flex;
  width: 170px;
  height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(6,41,72,.86);
  box-shadow: 0 0 50px rgba(32,183,170,.28);
}

.member-core svg {
  width: 45px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 1.5;
}

.member-core strong { font-size: 19px; }
.member-core small { margin-top: 5px; color: rgba(255,255,255,.44); font: 8px Arial, sans-serif; letter-spacing: .18em; }

.member-dot {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 2px solid #b8f1eb;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 16px var(--cyan-500);
}

.dot-a { top: 16%; left: 45%; }
.dot-b { top: 43%; right: 11%; }
.dot-c { right: 28%; bottom: 11%; }
.dot-d { bottom: 23%; left: 14%; }

.member-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 65px;
}

.member-copy > p {
  margin: 4px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.95;
}

.founding-members {
  border-top: 1px solid rgba(255,255,255,.14);
}

.founding-members-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0 12px;
}

.founding-members-head h3 {
  margin: 0;
  font-size: 16px;
}

.founding-members-head > span {
  color: rgba(255,255,255,.34);
  font: 8px Arial, sans-serif;
  letter-spacing: .17em;
}

.founding-members ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founding-members li {
  display: grid;
  min-height: 58px;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.founding-members li span {
  color: var(--cyan-300);
  font: 11px Consolas, monospace;
}

.founding-members li strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.founding-members li strong a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s ease;
}

.founding-members li strong a::after {
  color: var(--cyan-300);
  content: "↗";
  font-size: 11px;
  opacity: .58;
  transition: opacity .2s ease, transform .2s ease;
}

.founding-members li strong a:hover,
.founding-members li strong a:focus-visible {
  color: var(--cyan-300);
}

.founding-members li strong a:hover::after,
.founding-members li strong a:focus-visible::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

.members-more {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 11px 15px;
  border: 1px solid rgba(113,215,205,.32);
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.members-more span {
  transition: transform .2s ease;
}

.members-more:hover {
  color: var(--blue-950);
  border-color: var(--cyan-300);
  background: var(--cyan-300);
}

.members-more:hover span {
  transform: translateX(4px);
}

.activities {
  background: var(--surface);
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.activity-card {
  overflow: hidden;
  border: 1px solid #dce6ee;
  background: #fff;
  box-shadow: 0 15px 40px rgba(26, 64, 99, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.activity-card:hover {
  box-shadow: 0 24px 55px rgba(26, 64, 99, .13);
  transform: translateY(-6px);
}

.activity-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(125deg, #0a416e, #0c6197);
}

.activity-secondary .activity-visual {
  background: linear-gradient(125deg, #0a3c68, #147e8e);
}

.activity-visual::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.activity-index {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 26px;
  color: rgba(255,255,255,.18);
  font: 55px Arial, sans-serif;
  font-weight: 800;
}

.activity-primary .activity-visual > svg {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.activity-primary .activity-visual > svg path {
  fill: none;
  stroke: rgba(113,215,205,.65);
  stroke-width: 2;
}

.activity-primary .activity-visual > svg circle {
  fill: var(--cyan-500);
  stroke: #b9f4ee;
  stroke-width: 2;
}

.activity-icon {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #b5eee8;
  background: rgba(5,39,68,.74);
  transform: translate(-50%, -50%);
}

.activity-icon svg {
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-copy {
  padding: 34px 38px 38px;
}

.activity-en {
  margin: 0 0 7px !important;
  color: var(--blue-600) !important;
  font: 10px Arial, sans-serif !important;
  letter-spacing: .18em;
}

.activity-copy h3 {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: 23px;
}

.activity-copy > p {
  min-height: 88px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.activity-tags span {
  padding: 6px 11px;
  color: #47708f;
  background: #eef5f9;
  font-size: 11px;
}

.report-stack {
  position: absolute;
  z-index: 4;
  top: 36px;
  left: 50%;
  width: 136px;
  height: 150px;
  transform: translateX(-50%);
}

.report-stack i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.06);
}

.report-stack i:nth-child(1) { transform: translate(-18px, 10px) rotate(-6deg); }
.report-stack i:nth-child(2) { transform: translate(18px, 10px) rotate(6deg); }
.report-stack i:nth-child(3) { background: rgba(5,49,78,.88); }

.report-stack strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-align: center;
}

.exchange-line {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 20px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.exchange-line span {
  height: 1px;
  flex: 1;
  background: rgba(113,215,205,.35);
}

.exchange-line b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(113,215,205,.5);
  border-radius: 50%;
  color: var(--cyan-300);
  font-size: 11px;
}

.exchange-line i {
  width: 22px;
  height: 1px;
  background: var(--cyan-300);
}

.closing-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, var(--blue-700), #0a758d);
}

.closing-grid {
  opacity: .12;
  mask-image: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.closing-inner p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.55);
  font: 10px Arial, sans-serif;
  letter-spacing: .22em;
}

.closing-inner h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: .04em;
}

.button-light {
  flex: 0 0 auto;
  color: var(--blue-700);
  background: #fff;
}

.site-footer {
  color: rgba(255,255,255,.7);
  background: #061f37;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 1fr .75fr;
  gap: 65px;
  padding-top: 55px;
  padding-bottom: 50px;
}

.footer-brand .brand-mark {
  width: 50px;
  height: 50px;
}

.footer-brand .brand-parent,
.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-parent { font-size: 14px; }
.footer-brand .brand-name { font-size: 20px; }

.footer-nav > p,
.footer-statement > p {
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  font-size: 12px;
}

.footer-nav a:hover {
  color: var(--cyan-300);
}

.footer-statement span,
.footer-statement small {
  display: block;
}

.footer-statement span {
  margin-bottom: 8px;
  color: var(--cyan-300);
  font-size: 15px;
}

.footer-statement small {
  color: rgba(255,255,255,.42);
  font-size: 11px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-bottom .container {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 8px 20px rgba(15,92,168,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--cyan-500);
}

.back-to-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.search-notice {
  position: fixed;
  z-index: 200;
  top: 175px;
  left: 50%;
  padding: 12px 20px;
  color: #fff;
  background: rgba(6, 31, 55, .94);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity .2s ease, transform .2s ease;
}

.search-notice.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
  .nav-link { min-width: 0; flex: 1; font-size: 14px; }
  .nav-dropdown { min-width: 0; flex: 1; }
  .hero-inner { grid-template-columns: 1fr 440px; gap: 25px; }
  .visual-stage { height: 350px; }
  .core-node { left: 207px; }
  .satellite-c { right: 20px; }
  .satellite-d { right: 12px; }
  .quick-item { padding-inline: 14px; gap: 10px; }
  .quick-icon { width: 40px; height: 40px; }
  .purpose-grid { grid-template-columns: 280px 1fr; gap: 50px; }
  .task-card { padding-inline: 20px; }
  .organization-grid { grid-template-columns: 360px 1fr; gap: 45px; }
  .org-chart { padding-inline: 30px; }
  .member-copy { padding-inline: 45px; }
  .home-product-card { grid-template-columns: 1fr; align-content: start; }
  .home-model-graphic, .home-fresh-graphic { min-height: 230px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 92px; }
  .container { width: min(100% - 36px, var(--container)); }
  .utility-bar { display: none; }
  .brand-inner { position: relative; min-height: 78px; padding-right: 54px; }
  .official-brand { flex-basis: 330px; }
  .brand-mark { width: 49px; height: 49px; }
  .brand-parent { font-size: 14px; }
  .brand-name { font-size: 21px; }
  .site-search { display: none; }
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: block !important;
    flex: 0 0 42px;
    border: 1px solid #dce6ee;
    background: #f5f9fc;
    transform: translateY(-50%);
  }
  .main-nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px 18px 30px;
    background: rgba(255,255,255,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-inner { width: 100%; height: auto; flex-direction: column; }
  .nav-link { min-height: 58px; flex: auto; justify-content: flex-start; border-bottom: 1px solid var(--line); }
  .nav-link::after { right: auto; left: 0; width: 3px; height: 26px; bottom: 16px; transform: scaleY(0); }
  .nav-link:hover::after, .nav-link.active::after { transform: scaleY(1); }
  .nav-dropdown { display: block; width: 100%; flex: none; }
  .nav-dropdown-toggle { width: 100%; padding-inline: 0; }
  .nav-dropdown-toggle > span { margin-left: auto; margin-right: 8px; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height .28s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu { max-height: 0; pointer-events: none; transform: none; }
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu { max-height: 290px; pointer-events: auto; transform: none; }
  .nav-dropdown-menu a { min-height: 44px; padding: 8px 20px 8px 28px; background: #f6f9fc; font-size: 13px; }
  .nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { padding-left: 33px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 680px; }
  .hero { min-height: auto; }
  .data-visual { width: min(100%, 600px); margin: 10px auto 0; }
  .quick-grid { grid-template-columns: repeat(5, minmax(155px, 1fr)); overflow-x: auto; scrollbar-width: thin; }
  .quick-item { min-height: 105px; }
  .section { padding: 80px 0; }
  .purpose-grid { grid-template-columns: 1fr; gap: 35px; }
  .purpose-heading { padding-right: 0; border-right: 0; }
  .purpose-heading .heading-summary { max-width: 650px; }
  .founding-photo { padding-bottom: 80px; }
  .founding-photo-slides { min-height: 780px; }
  .founding-photo-panel { grid-template-columns: 1fr; min-height: 780px; }
  .founding-photo-image { aspect-ratio: 3 / 2; }
  .founding-photo-copy { min-height: 310px; }
  .home-news-layout { grid-template-columns: 1fr; }
  .home-news-carousel,
  .home-news-list-panel { height: 470px; }
  .home-products-grid { grid-template-columns: 1fr; }
  .home-product-card { grid-template-columns: minmax(0, 1fr) minmax(230px, .85fr); min-height: 390px; }
  .home-model-graphic, .home-fresh-graphic { min-height: 270px; }
  .task-grid { grid-template-columns: 1fr 1fr; }
  .task-card { min-height: 370px; }
  .organization-grid { grid-template-columns: 1fr; }
  .org-copy { max-width: 640px; }
  .member-panel { grid-template-columns: 1fr; }
  .member-visual { min-height: 420px; }
  .member-copy { padding: 55px; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { display: grid; grid-template-columns: 43% 57%; }
  .activity-visual { height: auto; min-height: 330px; }
  .activity-copy > p { min-height: auto; }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  .footer-statement { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-inner { min-height: 70px; }
  .brand { gap: 10px; }
  .official-brand { flex-basis: 260px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-parent { max-width: 240px; font-size: 11px; white-space: nowrap; }
  .brand-name { font-size: 18px; letter-spacing: .09em; }
  .main-nav { top: 70px; }
  .hero-inner { gap: 34px; padding-block: 56px 42px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-lead { font-size: 15px; line-height: 1.8; }
  .hero-actions { flex-wrap: wrap; }
  .hero-tags { gap: 15px; margin-top: 28px; }
  .data-visual { display: none; }
  .hero::after { width: 480px; height: 250px; }
  .quick-grid { grid-template-columns: repeat(5, 155px); }
  .quick-item { min-height: 90px; padding: 14px 12px; }
  .quick-number { font-size: 23px; }
  .quick-icon { width: 36px; height: 36px; }
  .quick-icon svg { width: 21px; }
  .section { padding: 66px 0; }
  .section-heading h2 { font-size: 29px; }
  .purpose-content > p { font-size: 16px; line-height: 2; }
  .purpose-values { grid-template-columns: 1fr 1fr; }
  .purpose-values div { min-height: 82px; border-bottom: 1px solid var(--line); }
  .purpose-values div:nth-child(2) { border-right: 0; }
  .purpose-values div:nth-child(3), .purpose-values div:nth-child(4) { border-bottom: 0; }
  .founding-photo { padding-bottom: 66px; }
  .founding-photo-panel { width: 100%; }
  .founding-photo-slides { min-height: 600px; }
  .founding-photo-panel { min-height: 600px; }
  .founding-photo-image { aspect-ratio: 3 / 2; }
  .founding-photo-award .founding-photo-image { padding: 12px; }
  .founding-photo-copy { min-height: 275px; padding: 40px 28px; }
  .founding-photo-copy .photo-caption-line { max-width: 170px; margin-top: 22px; }
  .founding-photo-copy h2 { font-size: 30px; }
  .about-carousel-controls { right: 14px; bottom: 14px; left: 14px; }
  .photo-seal { top: 30px; right: 25px; }
  .photo-caption-line { margin-top: 30px; }
  .home-news-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .home-news-more { margin-bottom: 0; }
  .home-news-carousel { height: 390px; }
  .home-news-slide-overlay { padding: 28px 22px 70px; }
  .home-news-slide-overlay h3 { font-size: 21px; }
  .home-news-slide-overlay > p { display: none; }
  .home-news-carousel-controls { padding-left: 22px; }
  .home-news-list-panel { height: auto; min-height: 470px; }
  .home-news-list-item { min-height: 55px; grid-template-columns: 53px minmax(0, 1fr) 22px; padding-inline: 13px; }
  .home-news-list-item h4 { font-size: 12px; }
  .home-products-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .home-products-more { margin-bottom: 0; }
  .home-products-grid { gap: 16px; }
  .home-product-card { min-height: 0; grid-template-columns: 1fr; gap: 25px; padding: 35px 24px 27px; }
  .home-product-number { margin-bottom: 25px; }
  .home-product-copy h3 { font-size: 27px; }
  .home-product-copy > small { font-size: 12px; }
  .home-product-link { margin-top: 24px; }
  .home-model-graphic, .home-fresh-graphic { min-height: 230px; }
  .home-model-ring.ring-outer { width: 225px; height: 225px; }
  .home-model-ring.ring-inner { width: 160px; height: 160px; }
  .home-model-core { width: 115px; height: 115px; }
  .home-model-node.node-one { left: 5px; }
  .home-model-node.node-two { right: 0; }
  .home-fresh-graphic > span { flex-basis: 66px; }
  .home-fresh-graphic > b { width: 26px; }
  .task-grid { grid-template-columns: 1fr; }
  .task-card { min-height: 340px; }
  .org-facts { flex-wrap: wrap; gap: 15px 0; }
  .org-facts div { min-width: 100px; }
  .org-chart { min-height: 390px; padding: 35px 18px; }
  .org-parent { width: 100%; }
  .org-branch { width: 70%; }
  .org-children { gap: 7px; }
  .org-node strong { font-size: 12px; }
  .org-node small { font-size: 9px; }
  .org-coordinators strong { gap: 3px 8px; }
  .member-visual { min-height: 340px; }
  .ring-one { width: 300px; height: 300px; }
  .ring-two { width: 215px; height: 215px; }
  .member-core { width: 145px; height: 145px; }
  .member-copy { padding: 42px 24px; }
  .member-copy > p { font-size: 14px; }
  .founding-members ol { grid-template-columns: 1fr; }
  .founding-members li { min-height: 54px; }
  .activity-card { display: block; }
  .activity-visual { min-height: 220px; height: 220px; }
  .activity-copy { padding: 28px 24px 30px; }
  .activity-copy h3 { font-size: 20px; }
  .closing-inner { min-height: 240px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand .brand-parent { max-width: none; }
  .footer-bottom .container { min-height: 74px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
  .back-to-top { right: 14px; bottom: 14px; }
  .search-notice { top: 92px; width: calc(100% - 28px); text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
