:root {
  --primary: #123f74;
  --primary-dark: #0d2f57;
  --secondary: #365f92;
  --accent: #c98b2f;
  --text: #1a2a3a;
  --muted: #5a6b7d;
  --line: #d8e0ea;
  --bg: #edf3f9;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: #f7f9fc;
  --maxw: 1180px;
  --shadow: 0 18px 44px rgba(18, 63, 116, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 81, 142, 0.1), transparent 25%),
    linear-gradient(180deg, #f4f7fb 0%, #edf2f8 100%);
  font-family: "Noto Sans SC", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  line-height: 1.7;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("banner-assets/banner-bg.jpg") center center / cover no-repeat;
  opacity: 0.08;
  filter: saturate(0.82) contrast(0.94);
  pointer-events: none;
  z-index: -1;
}

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

.container {
  width: min(var(--maxw), calc(100% - 2rem));
  margin: 0 auto;
}

.topline {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(18, 63, 116, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  color: var(--muted);
}

.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.head.is-hidden {
  transform: translateY(calc(-100% - 1px));
}

.head-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.identity {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.seal {
  width: 100px;
  height: 70px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.title-wrap { min-width: 0; }

.title-cn {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

.title-en {
  margin: 0.15rem 0 0;
  color: var(--secondary);
  font-size: 0.88rem;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.head-right {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.head-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 116, 0.16);
  background: #fff;
  color: var(--primary-dark);
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

.nav {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 55%, #245d99 100%);
  color: #fff;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  overflow-x: auto;
}

.nav a {
  display: inline-block;
  padding: 0.86rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: #fff;
}

.hero,
.page-banner {
  color: #fff;
  background:
    linear-gradient(130deg, rgba(11, 37, 68, 0.5), rgba(19, 63, 116, 0.34)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.05), transparent 42%),
    url("banner-assets/banner-bg.jpg");
  background-position: center, right top, center 36%;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

.hero {
  padding: 3.8rem 0 2.8rem;
  min-height: 360px;
}

.page-banner {
  padding: 3.4rem 0 2.2rem;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-copy {
  max-width: 860px;
}

.hero h1,
.page-banner h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.2;
}

.page-banner h1 { font-size: clamp(1.6rem, 2.7vw, 2.3rem); }

.hero p,
.page-banner p {
  margin: 0.9rem 0 0;
  max-width: 72ch;
  color: #dfe8f8;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-card h2 { margin: 0; font-size: 1.02rem; }
.hero-card p { margin-top: 0.55rem; font-size: 0.92rem; }

.tag-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  color: #e6effb;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.12rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.btn-primary { background: #fff; color: var(--primary-dark); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quick { margin-top: -1rem; margin-bottom: 1.4rem; }

.quick-row,
.grid-3,
.feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.quick-item,
.card,
.feature-link {
  background: var(--surface);
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.quick-item { padding: 1rem; }
.quick-item .k { font-size: 0.82rem; color: #6a7d93; }
.quick-item .v { margin-top: 0.14rem; font-size: 1.28rem; font-weight: 700; color: var(--primary); }

.quick-item .desc {
  margin-top: 0.45rem;
  color: #4d647e;
  font-size: 0.86rem;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.6rem;
}

.quick-tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #f2f7fd;
  border: 1px solid #d8e5f3;
  color: #355981;
  font-size: 0.76rem;
}

main { padding: 0 0 2.4rem; }
.page-main { padding-top: 1.5rem; }

.panel {
  background: var(--surface);
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 22px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(18, 63, 116, 0.08);
  padding: 0.95rem 1.1rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.panel-title { margin: 0; color: var(--primary-dark); font-size: 1.06rem; font-weight: 700; }
.panel-sub { color: var(--muted); font-size: 0.84rem; }
.panel-bd { padding: 1.1rem; }

.lead-text {
  margin: 0 0 1rem;
  color: #344b65;
  font-size: 0.94rem;
}

.card,
.feature-link { padding: 1.05rem; }

.card h3,
.feature-link h3 { margin: 0; color: var(--primary); font-size: 1rem; }

.card p,
.feature-link p { margin: 0.65rem 0 0; color: #31465f; font-size: 0.9rem; }

.list {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: #3a516b;
  font-size: 0.88rem;
}

.list li { margin: 0.22rem 0; }

.platform {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  border: 1px solid rgba(18, 63, 116, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.platform:last-child { margin-bottom: 0; }

.platform-aside {
  padding: 1rem;
  border-right: 1px solid rgba(18, 63, 116, 0.08);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}

.platform-name { margin: 0; color: var(--primary-dark); font-size: 1rem; font-weight: 700; }
.platform-type { margin: 0.25rem 0 0; color: #60748d; font-size: 0.84rem; }
.platform-entry {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.84rem;
}

.platform-body { padding: 1rem 1rem 1rem 0; }
.platform-body p { margin: 0; color: #314861; font-size: 0.9rem; }

.meta {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.meta span {
  font-size: 0.78rem;
  color: #355981;
  border: 1px solid #cfdeef;
  background: #f1f7ff;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
}

.flow-step h4 { margin: 0; color: var(--primary); font-size: 0.96rem; }
.flow-step p { margin: 0.55rem 0 0; color: #35506d; font-size: 0.88rem; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.detail-list {
  margin: 0;
  padding-left: 1rem;
  color: #37516d;
  font-size: 0.9rem;
}

.detail-list li { margin: 0.32rem 0; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-box {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 0.95rem;
}

.metric-box strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.metric-box span {
  display: block;
  margin-top: 0.25rem;
  color: #60748d;
  font-size: 0.84rem;
}

.timeline-vertical {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  border-left: 3px solid var(--primary);
  padding: 0.2rem 0 0.2rem 1rem;
}

.timeline-item h4 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.98rem;
}

.timeline-item p {
  margin: 0.4rem 0 0;
  color: #39506a;
  font-size: 0.89rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
}

.mini-card h4 {
  margin: 0;
  color: var(--primary);
  font-size: 0.95rem;
}

.mini-card p {
  margin: 0.45rem 0 0;
  color: #39506a;
  font-size: 0.88rem;
}

.soft-block {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8fd 100%);
  padding: 1rem;
}

.soft-block h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1rem;
}

.soft-block p {
  margin: 0.55rem 0 0;
  color: #39506a;
  font-size: 0.9rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.pill-list span {
  border: 1px solid #d5e2f0;
  background: #f3f8fe;
  color: #355981;
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.8rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.member {
  position: relative;
  border: 1px solid rgba(18, 63, 116, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  padding: 1.1rem;
  overflow: hidden;
}

.member::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.member-photo {
  position: relative;
  width: 132px;
  height: 160px;
  margin: 0 auto 0.8rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ced9e7;
  background: linear-gradient(160deg, #eef4fb, #d3e0f0);
}

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

.photo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem;
  color: #6d829a;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), rgba(214, 227, 242, 0.96)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(214, 227, 242, 0.92));
}

.member-name { text-align: center; color: var(--primary-dark); font-size: 1rem; font-weight: 700; }
.member-role { margin-top: 0.24rem; text-align: center; color: #68809b; font-size: 0.84rem; }
.member-desc { margin: 0.8rem 0 0; min-height: 3.7em; color: #35506d; font-size: 0.88rem; }

.team-inline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.45rem, 1.2vw, 1rem);
}

.team-inline .member {
  flex: 1 1 0;
  min-width: 0;
  max-width: 190px;
  padding: clamp(0.5rem, 1.1vw, 0.9rem);
}

.team-inline .member-photo {
  width: clamp(56px, 7.2vw, 100px);
  height: clamp(70px, 9vw, 124px);
  margin-bottom: 0.5rem;
  border-radius: 16px;
}

.team-inline .member-name {
  font-size: clamp(0.72rem, 1.1vw, 0.95rem);
  line-height: 1.3;
  word-break: break-word;
}

.team-inline .photo-slot {
  font-size: clamp(0.56rem, 0.8vw, 0.72rem);
  padding: 0.35rem;
}

.member-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
}

.member-link.pending { background: #edf2f8; color: #8092a8; }
.photo-note { margin: 0 0 1rem; color: #60748d; font-size: 0.84rem; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-item {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 1rem;
}

.contact-item h4 { margin: 0; color: var(--primary); font-size: 0.96rem; }
.contact-item p { margin: 0.55rem 0 0; color: #36506d; font-size: 0.9rem; }

.map-wrap {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.map-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(18, 63, 116, 0.08);
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
}

.map-note {
  margin: 0;
  color: #56708d;
  font-size: 0.86rem;
}

.feature-link a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr 150px 150px 150px;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.search-input,
.search-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdceb;
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font: inherit;
}

.search-summary {
  margin: 0 0 1rem;
  color: #60748d;
  font-size: 0.88rem;
}

.achievements-list {
  display: grid;
  gap: 0.65rem;
}

.achievement-card {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 0.8rem 0.9rem;
}

.achievement-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.achievement-date {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
}

.achievement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.achievement-tags span {
  border: 1px solid #d6e3f0;
  background: #f3f8fe;
  color: #355981;
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
  font-size: 0.74rem;
}

.achievement-title {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.94rem;
  line-height: 1.4;
}

.achievement-meta {
  margin: 0.32rem 0 0;
  color: #4c627c;
  font-size: 0.82rem;
}

.achievement-desc {
  margin: 0.3rem 0 0;
  color: #39506a;
  font-size: 0.82rem;
}

.achievement-link {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.82rem;
}

.foot {
  background: #14385f;
  color: #d8e4f4;
  padding: 1rem 0;
  font-size: 0.82rem;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .hero-grid,
  .grid-3,
  .flow,
  .team,
  .feature-links,
  .mini-grid,
  .split { grid-template-columns: 1fr 1fr; }

  .quick-row,
  .contact,
  .metric-grid { grid-template-columns: 1fr 1fr; }

  .platform { grid-template-columns: 1fr; }
  .platform-aside { border-right: 0; border-bottom: 1px solid rgba(18, 63, 116, 0.08); }
  .platform-body { padding: 1rem; }
}

@media (max-width: 720px) {
  .head {
    transition: transform 220ms ease;
  }

  .head-main { align-items: flex-start; flex-direction: column; }
  .head-right, .topline-inner { white-space: normal; }
  .hero { padding: 2.5rem 0 1.8rem; }
  .head-tools { width: 100%; justify-content: space-between; }

  .hero-grid,
  .quick-row,
  .grid-3,
  .flow,
  .team,
  .contact,
  .feature-links,
  .mini-grid,
  .split,
  .metric-grid { grid-template-columns: 1fr; }

  .nav a { padding: 0.78rem 0.82rem; }
  .search-bar { grid-template-columns: 1fr; }
  .achievement-top { flex-direction: column; }
}

html {
  scroll-behavior: smooth;
}

.anchor-section {
  scroll-margin-top: 154px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.research-card {
  border: 1px solid rgba(18, 63, 116, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.research-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.research-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}

.research-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 44, 0.08) 0%, rgba(8, 24, 44, 0.62) 100%);
}

.research-cover h3 {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.32;
}

.research-content {
  padding: 0.9rem 1rem 1rem;
}

.research-content p {
  margin: 0;
  color: #314861;
  font-size: 0.9rem;
}

.research-content .list {
  margin-top: 0.55rem;
}

.product-panel {
  position: relative;
  overflow: hidden;
  color: var(--text);
  border-color: rgba(18, 63, 116, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
  box-shadow: var(--shadow);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(33, 93, 153, 0.08), transparent 32%),
    linear-gradient(180deg, transparent 0%, rgba(237, 245, 252, 0.62) 100%);
  pointer-events: none;
}

.product-panel::after {
  content: none;
}

.product-panel > * {
  position: relative;
  z-index: 1;
}

.product-panel-hd {
  align-items: flex-end;
  border-bottom: 1px solid rgba(18, 63, 116, 0.08);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  padding: 1rem 1.1rem;
}

.product-panel .panel-title {
  margin-top: 0.12rem;
  color: var(--primary-dark);
  font-size: 1.18rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.product-panel-lead {
  max-width: 470px;
  margin: 0;
  color: #4d647e;
  font-size: 0.88rem;
  line-height: 1.7;
}

.product-panel .panel-bd {
  padding: 1.1rem;
}

.core-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.core-product-card {
  position: relative;
  padding: 0.82rem;
  border: 1px solid rgba(18, 63, 116, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 12px 28px rgba(18, 63, 116, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.core-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 63, 116, 0.2);
  box-shadow: 0 18px 36px rgba(18, 63, 116, 0.12);
}

.core-product-top {
  position: relative;
  min-height: 266px;
  border-radius: 14px;
  padding: 1.18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.58rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(13, 47, 87, 0.1) 100%),
    linear-gradient(145deg, #1f5188 0%, #2f679f 65%, #3e78af 100%);
}

.core-product-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%);
}

.core-product-top::after {
  content: none;
}

.core-product-entry {
  cursor: pointer;
}

.core-product-entry:hover .core-enter {
  transform: translateX(2px);
}

.core-product-entry.is-pending {
  cursor: default;
  pointer-events: none;
  filter: saturate(0.92);
}

.core-mark {
  display: none;
}

.core-brand {
  margin: 0 0 0.12rem;
  line-height: 1.08;
  font-size: 1.86rem;
  text-shadow: 0 2px 12px rgba(9, 27, 48, 0.18);
}

.brand-impact {
  color: #ffffff;
  letter-spacing: 0.02em;
}

.brand-suffix {
  color: #ffde98;
}

.core-tagline {
  margin: 0;
  color: #e9f8ff;
  font-size: 0.98rem;
  font-weight: 700;
}

.core-summary {
  max-width: 31ch;
  min-height: 3.25em;
  margin: 0.1rem 0 0;
  color: rgba(235, 247, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.62;
}

.core-enter {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(168px, 100%);
  min-height: 46px;
  padding: 0.54rem 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #0d2f57;
  background: linear-gradient(135deg, #ffffff 0%, #e8f7ff 100%);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 14, 30, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.core-enter.is-live {
  border-color: rgba(255, 255, 255, 0.68);
}

.core-product-entry:hover .core-enter {
  box-shadow: 0 14px 26px rgba(0, 14, 30, 0.26);
}

.core-enter.is-pending {
  color: #fff;
  background: linear-gradient(135deg, #ba7a27 0%, #cc9037 100%);
  border-color: #ba7a27;
}

.product-panel .meta {
  display: none;
}

.product-panel .meta span {
  color: #355981;
  border: 1px solid #cfdeef;
  background: #f1f7ff;
  box-shadow: none;
}

.other-products-hd {
  margin-top: 1.35rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(18, 63, 116, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.other-products-hd h3 {
  margin: 0.08rem 0 0;
  color: var(--primary-dark);
  font-size: 1.12rem;
}

.other-products-hd p {
  max-width: 440px;
  margin: 0;
  color: #4d647e;
  font-size: 0.88rem;
  line-height: 1.65;
}

.other-products-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.other-product-card {
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 116, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(18, 63, 116, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.other-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 63, 116, 0.18);
  box-shadow: 0 16px 32px rgba(18, 63, 116, 0.1);
}

.other-product-media {
  position: relative;
  min-height: 164px;
  border-radius: 0;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  background:
    linear-gradient(135deg, #193859 0%, #215a78 54%, #11304e 100%);
}

.other-product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.16), transparent 36%);
}

.other-product-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.9;
}

.other-database .other-product-media {
  background:
    linear-gradient(135deg, #193859 0%, #255d79 56%, #102e4c 100%);
}

.other-detect .other-product-media {
  background:
    linear-gradient(135deg, #123856 0%, #1f687e 55%, #153052 100%);
}

.other-risk .other-product-media {
  background:
    linear-gradient(135deg, #133a55 0%, #1c6f68 56%, #0f304d 100%);
}

.other-more .other-product-media {
  background:
    linear-gradient(135deg, #27384c 0%, #3f5467 56%, #1a2c42 100%);
}

.other-product-index {
  position: absolute;
  left: 1rem;
  top: 0.92rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
}

.other-product-name {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 3.15em;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.other-product-status {
  position: absolute;
  right: 0.85rem;
  top: 0.82rem;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #eef7ff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.12rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.other-product-status.is-live {
  background: rgba(24, 144, 102, 0.78);
  border-color: rgba(82, 222, 171, 0.64);
  color: #fff;
  text-align: center;
}

.other-product-status.is-pending {
  background: rgba(185, 116, 31, 0.82);
  border-color: rgba(255, 209, 129, 0.58);
  color: #fff;
}

.other-product-action {
  position: relative;
  z-index: 1;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.96);
  color: #163f65;
  padding: 0.28rem 0.86rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.team-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.team-compact .member {
  padding: 0.85rem;
  border-radius: 16px;
}

.team-compact .member-photo {
  width: clamp(88px, 8.5vw, 114px);
  height: clamp(108px, 11.5vw, 138px);
  margin-bottom: 0.62rem;
}

.team-compact .member-name {
  font-size: 0.96rem;
}

.team-compact .member-role {
  margin-top: 0.16rem;
  font-size: 0.8rem;
}

.team-compact .member-desc {
  margin-top: 0.55rem;
  min-height: 3.3em;
  font-size: 0.82rem;
  line-height: 1.48;
}

.team-compact .member-link {
  margin-top: 0.65rem;
  min-height: 36px;
  font-size: 0.82rem;
}

.team-compact .member-link.pending {
  pointer-events: none;
}

.contact-home {
  grid-template-columns: 1.1fr 1.4fr;
}

.contact-merged h4 + p + p + h4 {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(18, 63, 116, 0.1);
}

.contact-map .map-wrap {
  margin-top: 0.55rem;
}

.contact-map .map-frame {
  height: 260px;
}

.footer-record {
  margin-top: 0.35rem;
  text-align: center;
  color: rgba(216, 228, 244, 0.7);
  font-size: 0.78rem;
}

@media (max-width: 1200px) {
  .research-cover h3 {
    font-size: 0.94rem;
  }
}

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

  .product-panel .panel-title {
    font-size: 1.46rem;
  }

  .core-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .core-brand {
    font-size: 1.62rem;
  }

  .other-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .anchor-section {
    scroll-margin-top: 112px;
  }

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

  .core-products-grid {
    grid-template-columns: 1fr;
  }

  .product-panel-hd,
  .other-products-hd {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-panel .panel-bd {
    padding: 0.95rem;
  }

  .product-panel .panel-title {
    font-size: 1.34rem;
  }

  .product-panel-lead,
  .other-products-hd p {
    max-width: none;
  }

  .core-product-top {
    min-height: 300px;
    padding: 1rem;
  }

  .core-brand {
    font-size: 1.9rem;
  }

  .core-summary {
    min-height: 0;
  }

  .team-compact {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .other-products-grid,
  .contact-home {
    grid-template-columns: 1fr;
  }
}
