/* ─── Reset & Variables ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:       #1A3A6E;
  --bg-card:       #EEF4FF;
  --bg-card2:      #E4EEFF;
  --bg-light:      #F0F6FF;
  --bg-white:      #FFFFFF;
  --primary:       #1558D6;
  --primary-light: #3B7EFF;
  --accent:        #2BAAD4;
  --accent2:       #6D4AFF;
  --text-white:    #FFFFFF;
  --text-light:    #E8F0FF;
  --text-muted:    #6B80A8;
  --text-dark:     #0F2351;
  --text-body:     #2E4070;
  --border:        rgba(21,88,214,0.15);
  --border-dark:   rgba(255,255,255,0.18);
  --shadow-card:   0 4px 24px rgba(21,88,214,0.10);
  --shadow-glow:   0 0 30px rgba(0,168,200,0.18);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── Custom Scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #E4EEFF; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── Utilities ────────────────────────────────────────────────────────────── */
.container { max-width: 1600px; margin: 0 auto; padding: 0 60px; }

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.section > .container {
  width: 100%;
}
.dark-section { background: linear-gradient(160deg, #1040A0 0%, #0E2760 100%); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,82,204,0.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0,82,204,0.2);
  margin-bottom: 16px;
}
.section-tag.light {
  color: var(--accent);
  background: rgba(43, 170, 212,0.08);
  border-color: rgba(43, 170, 212,0.2);
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title.light { color: var(--text-white); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-subtitle.light { color: var(--text-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 20px rgba(0,82,204,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,82,204,0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-full { width: 100%; justify-content: center; }
.btn-secondary {
  background: transparent;
  color: #0B8FA8;
  border: 1.5px solid #0B8FA8;
}
.btn-secondary:hover {
  background: #0B8FA8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 143, 168,0.25);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(90, 146, 230, 0.24), rgba(40, 92, 180, 0.08));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 rgba(210, 234, 255, 0.10);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(21,88,214,0.08), 0 2px 16px rgba(21,88,214,0.07);
}
/* Nav on dark hero (before scroll) */
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.82); }
.navbar:not(.scrolled) .nav-link:hover { color: #fff; background: rgba(255,255,255,0.10); }
.navbar:not(.scrolled) .logo-img.default-logo { filter: brightness(0) invert(1); }
.navbar:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.85); }

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 18px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.nav-middle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  margin-right: 18px;
  padding-right: 64px;
  overflow: visible;
}

.nav-search-shell {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  width: 42px;
  height: 46px;
  transform: translateY(-50%);
  z-index: 14;
  pointer-events: none;
  transition: width 0.34s ease;
}

.nav-search-trigger {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
}

.nav-search-trigger svg,
.nav-search-icon svg,
.nav-search-close svg {
  width: 20px;
  height: 20px;
}

.nav-search-trigger:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.nav-search-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.94);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,251,255,0.995));
  box-shadow: 0 18px 38px rgba(5, 17, 49, 0.18), 0 6px 18px rgba(47, 117, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) scale(0.985);
  transition: opacity 0.22s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.nav-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 35, 81, 0.56);
  flex-shrink: 0;
}

.nav-search-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(15, 35, 81, 0.94);
  font-size: 16px;
  outline: none;
}

.nav-search-input::placeholder {
  color: rgba(15, 35, 81, 0.38);
}

.nav-search-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: rgba(15, 35, 81, 0.58);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-search-close:hover {
  color: rgba(15, 35, 81, 0.92);
  background: rgba(15, 35, 81, 0.06);
}

.nav-middle.search-open .nav-search-shell {
  pointer-events: auto;
}

.nav-search-shell.open {
  width: clamp(620px, 42vw, 760px);
  z-index: 24;
}

.nav-search-shell.open .nav-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.nav-search-shell.open .nav-search-trigger {
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled .lang-switcher {
  background: rgba(21, 88, 214, 0.06);
  border-color: rgba(21, 88, 214, 0.10);
}

.navbar.scrolled .nav-search-trigger {
  color: rgba(15, 35, 81, 0.82);
}

.navbar.scrolled .nav-search-panel {
  border-color: rgba(15, 35, 81, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(249,251,255,0.998));
  box-shadow: 0 14px 32px rgba(12, 33, 81, 0.12), 0 2px 10px rgba(21, 88, 214, 0.08);
}

.lang-switch-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.82);
  min-width: 38px;
  height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.navbar.scrolled .lang-switch-btn {
  color: rgba(15, 35, 81, 0.76);
}

.lang-switch-btn.active {
  background: linear-gradient(135deg, var(--primary), #3B86FF);
  color: #fff;
  box-shadow: 0 8px 18px rgba(21,88,214,0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  padding: 6px 0;
  transition: var(--transition);
  position: relative;
  isolation: isolate;
  margin-right: auto;
}
/* Image logo (navbar) */
.logo-img {
  height: 42px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.navbar:not(.scrolled) .logo-img:not(.default-logo) {
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
}
/* Footer image logo */
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 1;
}
.footer-logo-img.default-logo { filter: brightness(0) invert(1); }
.footer-logo-img:not(.default-logo) { filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18)); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-item {
  position: relative;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(21,88,214,0.06); }
.nav-link.active {
  color: var(--primary);
  background: rgba(21,88,214,0.08);
}
.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.66;
  transition: var(--transition);
}
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 252px;
  padding: 10px;
  border: 1px solid rgba(201, 214, 235, 0.68);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 170, 212,0.11), transparent 34%),
    rgba(255,255,255,0.96);
  box-shadow: 0 22px 60px rgba(14, 39, 96, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-sublink {
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  border-radius: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}
.nav-sublink span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}
.nav-sublink small {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.45;
}
.nav-sublink:hover {
  background: linear-gradient(135deg, rgba(21,88,214,0.10), rgba(43, 170, 212,0.08));
  color: var(--primary);
}
.navbar:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.11);
}
.nav-link.nav-contact-btn,
.nav-link.nav-contact-btn.active,
.nav-link.nav-contact-btn:focus,
.nav-link.nav-contact-btn:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 8px 14px !important;
  margin-left: 0;
  border-radius: 8px;
  outline: none;
}

.nav-link.nav-contact-btn:hover {
  background: rgba(21,88,214,0.06) !important;
  color: var(--primary) !important;
}

.navbar:not(.scrolled) .nav-link.nav-contact-btn,
.navbar:not(.scrolled) .nav-link.nav-contact-btn.active {
  color: rgba(255,255,255,0.82) !important;
}

.navbar:not(.scrolled) .nav-link.nav-contact-btn:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition);
}

/* ─── Navigation Polish: company-grade dropdown system ─────────────────────── */
.navbar {
  border-bottom: 1px solid transparent;
}

.navbar:not(.scrolled) {
  background:
    linear-gradient(180deg, rgba(13, 45, 108, 0.55), rgba(13, 45, 108, 0.10));
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(174, 193, 226, 0.42);
  box-shadow: 0 10px 34px rgba(20, 54, 116, 0.08);
}

.nav-container {
  height: 78px;
}

.nav-links {
  gap: 6px;
}

.nav-link {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(21, 88, 214, 0.10);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-dropdown {
  top: calc(100% + 16px);
  min-width: 306px;
  padding: 12px;
  border-radius: 24px;
  border-color: rgba(174, 193, 226, 0.68);
  background:
    radial-gradient(circle at 18% -10%, rgba(43, 170, 212, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.94));
  box-shadow: 0 28px 70px rgba(13, 39, 96, 0.18), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(43, 170, 212, 0.85), rgba(21, 88, 214, 0.55), transparent);
}

.nav-sublink {
  position: relative;
  padding: 13px 15px 13px 18px;
  border: 1px solid transparent;
  border-radius: 17px;
}

.nav-sublink span {
  font-size: 15px;
}

.nav-sublink small {
  max-width: 230px;
  color: #7082A4;
}

.nav-sublink:hover {
  transform: translateX(3px);
  border-color: rgba(21, 88, 214, 0.11);
  box-shadow: 0 12px 30px rgba(21, 88, 214, 0.08);
}

.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(520px, 72vw);
  max-height: 62vh;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(241,246,255,0.96));
  box-shadow: 0 26px 90px rgba(8, 24, 61, 0.22);
  padding: 18px;
}

.nav-search-dropdown[hidden] {
  display: none;
}

.site-search-meta {
  min-height: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(15,35,81,0.52);
}

.site-search-results {
  display: grid;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
  max-height: calc(62vh - 50px);
}

.site-search-empty,
.site-search-loading {
  padding: 24px 6px 10px;
  font-size: 15px;
  color: rgba(15,35,81,0.56);
}

.site-search-result {
  display: block;
  padding: 18px 20px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,248,255,0.88));
  border: 1px solid rgba(21,88,214,0.08);
  box-shadow: 0 12px 28px rgba(15,35,81,0.06);
  transition: var(--transition);
}

.site-search-result:hover {
  transform: translateY(-2px);
  border-color: rgba(21,88,214,0.16);
  box-shadow: 0 18px 36px rgba(15,35,81,0.10);
}

.site-search-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.site-search-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(21,88,214,0.08);
  color: #1558D6;
  font-size: 12px;
  font-weight: 700;
}

.site-search-path {
  font-size: 12px;
  color: rgba(15,35,81,0.42);
}

.site-search-result h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #102B63;
  margin-bottom: 8px;
}

.site-search-result p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(15,35,81,0.68);
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0E2456 0%, #1040A0 50%, #0C1D4A 100%);
  overflow: hidden;
}

/* Dot grid background */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(100,150,230,0.28) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}

/* Two-column layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 60px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: 40px;
  min-height: 100vh;
}

/* ── Left ── */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #7DD3FC;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.30);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3EE;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
  word-break: keep-all;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-hl { color: #22D3EE; }

@media (min-width: 1280px) {
  .hero-title {
    white-space: nowrap;
  }
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(188,215,252,0.78);
  line-height: 1.9;
  max-width: 420px;
  text-align: left;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Ghost button for hero */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #FFFFFF;
}

/* Primary button for dark hero */
.hero-actions .btn-primary {
  background: #0EA5E9;
  box-shadow: 0 4px 24px rgba(14,165,233,0.45);
}
.hero-actions .btn-primary:hover {
  background: #0B8FA8;
  box-shadow: 0 8px 32px rgba(14,165,233,0.55);
}

/* ── Right: Orb scene ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.hero-orb-scene {
  position: relative;
  width: clamp(420px, 32vw, 500px);
  height: clamp(420px, 32vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  transform: translateX(18px);
}

.hero-orb-scene::before {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 45%, rgba(62, 216, 255, 0.18), transparent 42%),
    radial-gradient(circle at 48% 65%, rgba(36, 88, 190, 0.18), transparent 52%);
  filter: blur(18px);
  opacity: 0.78;
  animation: molecule-aura-breathe 7s ease-in-out infinite;
  z-index: 0;
}

.hero-orb-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, rgba(99,179,237,0.12) 50%, transparent 70%);
  filter: blur(28px);
  animation: orb-pulse 5s ease-in-out infinite;
}

.hero-orb {
  position: relative;
  z-index: 2;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #60A5FA 0%, #2563EB 60%, #1D4ED8 100%);
  box-shadow: 0 0 0 16px rgba(37,99,235,0.08), 0 0 40px rgba(37,99,235,0.45);
  animation: orb-pulse 5s ease-in-out infinite;
}

/* Faint rings around orb */
.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.12);
  animation: orb-pulse 5s ease-in-out infinite;
}
.hero-orb-ring.r1 { width: 180px; height: 180px; animation-delay: 0.4s; }
.hero-orb-ring.r2 { width: 280px; height: 280px; animation-delay: 0.8s; border-color: rgba(37,99,235,0.07); }

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* Floating decoration dots */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(37,99,235,0.18);
}
.hero-deco.d1 { width: 10px; height: 10px; top: 18%; left: 14%; animation: float 5s ease-in-out infinite; }
.hero-deco.d2 { width: 6px;  height: 6px;  top: 28%; right: 18%; animation: float 7s ease-in-out infinite 1s; }
.hero-deco.d3 { width: 8px;  height: 8px;  bottom: 28%; left: 22%; animation: float 6s ease-in-out infinite 2s; }
.hero-deco.d4 { width: 5px;  height: 5px;  top: 60%; right: 12%; animation: float 5.5s ease-in-out infinite 0.5s; }
.hero-deco.d5 { width: 12px; height: 12px; bottom: 18%; right: 28%; animation: float 6.5s ease-in-out infinite 1.5s; background: rgba(11, 143, 168,0.15); }

/* Hero eye SVG animation */
.hero-eye-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 24px 60px rgba(0, 12, 44, 0.30));
  animation: molecule-float 8s ease-in-out infinite;
  backface-visibility: hidden;
  shape-rendering: geometricPrecision;
  transform: translateZ(0);
}

.hero-orb-scene.is-custom::before {
  inset: 8%;
  border-radius: 32px;
  opacity: calc(0.35 + (var(--hero-visual-intensity, 50) * 0.006));
}

.hero-orb-scene.is-custom .hero-eye-svg {
  display: none;
}

.hero-custom-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 28px 70px rgba(0, 12, 44, 0.34));
}

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

.hero-custom-visual-frame {
  position: relative;
  width: calc(100% * var(--hero-visual-scale, 1));
  height: calc(100% * var(--hero-visual-scale, 1));
  border-radius: var(--hero-visual-radius, 28px);
  overflow: hidden;
  border: 1px solid rgba(120, 205, 255, 0.18);
  background:
    radial-gradient(circle at 20% 18%, rgba(34, 211, 238, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(16, 52, 115, 0.58), rgba(4, 16, 48, 0.26));
}

.hero-custom-visual.is-empty .hero-custom-visual-frame::after {
  content: attr(data-empty-text);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(206, 235, 255, 0.68);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-custom-visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(34, 211, 238, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  mix-blend-mode: screen;
  opacity: calc(0.22 + (var(--hero-visual-intensity, 50) * 0.006));
}

.hero-custom-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: translateZ(0);
  will-change: transform, filter, opacity;
}

.hero-custom-shine {
  position: absolute;
  z-index: 3;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 36%, rgba(255,255,255,0.18) 48%, transparent 60%);
  opacity: 0;
  transform: translateX(-34%) rotate(6deg);
}

.hero-custom-visual.effect-float img {
  animation: hero-image-float var(--hero-visual-speed, 8s) ease-in-out infinite;
}

.hero-custom-visual.effect-breathe img {
  animation: hero-image-breathe var(--hero-visual-speed, 8s) ease-in-out infinite;
}

.hero-custom-visual.effect-kenburns img {
  animation: hero-image-kenburns var(--hero-visual-speed, 10s) ease-in-out infinite alternate;
}

.hero-custom-visual.effect-drift img {
  animation: hero-image-drift var(--hero-visual-speed, 10s) ease-in-out infinite;
}

.hero-custom-visual.effect-tilt img {
  animation: hero-image-tilt var(--hero-visual-speed, 9s) ease-in-out infinite;
}

.hero-custom-visual.effect-shine img {
  animation: hero-image-breathe var(--hero-visual-speed, 8s) ease-in-out infinite;
}

.hero-custom-visual.effect-shine .hero-custom-shine {
  animation: hero-image-shine var(--hero-visual-speed, 8s) ease-in-out infinite;
}

@keyframes hero-image-float {
  0%, 100% { transform: translate3d(0, calc(var(--hero-visual-intensity, 50) * -0.04px), 0) scale(1); }
  50% { transform: translate3d(0, calc(var(--hero-visual-intensity, 50) * 0.10px), 0) scale(1.015); }
}

@keyframes hero-image-breathe {
  0%, 100% { transform: scale(1); filter: saturate(1.02) brightness(1); }
  50% { transform: scale(calc(1 + (var(--hero-visual-intensity, 50) * 0.0009))); filter: saturate(1.08) brightness(1.06); }
}

@keyframes hero-image-kenburns {
  0% { transform: scale(1.02) translate3d(calc(var(--hero-visual-intensity, 50) * -0.035px), calc(var(--hero-visual-intensity, 50) * 0.02px), 0); }
  100% { transform: scale(calc(1.03 + (var(--hero-visual-intensity, 50) * 0.0009))) translate3d(calc(var(--hero-visual-intensity, 50) * 0.05px), calc(var(--hero-visual-intensity, 50) * -0.04px), 0); }
}

@keyframes hero-image-drift {
  0%, 100% { transform: translate3d(calc(var(--hero-visual-intensity, 50) * -0.06px), 0, 0) scale(1.02); }
  50% { transform: translate3d(calc(var(--hero-visual-intensity, 50) * 0.06px), calc(var(--hero-visual-intensity, 50) * -0.04px), 0) scale(1.035); }
}

@keyframes hero-image-tilt {
  0%, 100% { transform: perspective(900px) rotateX(0deg) rotateY(calc(var(--hero-visual-intensity, 50) * -0.025deg)) scale(1.01); }
  50% { transform: perspective(900px) rotateX(calc(var(--hero-visual-intensity, 50) * 0.015deg)) rotateY(calc(var(--hero-visual-intensity, 50) * 0.025deg)) scale(1.025); }
}

@keyframes hero-image-shine {
  0%, 32% { opacity: 0; transform: translateX(-38%) rotate(6deg); }
  46% { opacity: calc(0.22 + (var(--hero-visual-intensity, 50) * 0.004)); }
  66%, 100% { opacity: 0; transform: translateX(38%) rotate(6deg); }
}

/* Rotating dashed outer ring */
.logo-ring-spin {
  transform-origin: 210px 210px;
  animation: logo-ring-rotate 36s linear infinite;
}

.ring-slow {
  animation-duration: 48s;
  animation-direction: reverse;
}

/* Wing arc pulse */
.wing-pulse {
  animation: wing-glow 3.5s ease-in-out infinite;
}

/* RNA vertical strand dashoffset flow — each strand at slightly different speed */
.rna-s1 { animation: rna-flow 1.8s linear infinite 0s;    }
.rna-s2 { animation: rna-flow 1.5s linear infinite 0.1s;  }
.rna-s3 { animation: rna-flow 1.3s linear infinite 0.22s; }
.rna-s4 { animation: rna-flow 1.1s linear infinite 0s;    }
.rna-s5 { animation: rna-flow 1.3s linear infinite 0.18s; }
.rna-s6 { animation: rna-flow 1.5s linear infinite 0.08s; }
.rna-s7 { animation: rna-flow 1.8s linear infinite 0.28s; }

@keyframes logo-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wing-glow {
  0%, 100% { opacity: 0.72; }
  50%       { opacity: 1; }
}
@keyframes rna-flow {
  from { stroke-dashoffset: 0;   }
  to   { stroke-dashoffset: -21; }
}

/* Double helix strand flow: offset matches dash pattern length to avoid loop jumps */
.strand-a {
  animation: strand-flow-a 4.8s linear infinite;
  will-change: stroke-dashoffset;
}
.strand-b {
  animation: strand-flow-b 6s linear infinite 0.3s;
  will-change: stroke-dashoffset;
}
@keyframes strand-flow-a {
  from { stroke-dashoffset: 0;   }
  to   { stroke-dashoffset: -34; }
}
@keyframes strand-flow-b {
  from { stroke-dashoffset: 0;   }
  to   { stroke-dashoffset: -32; }
}

/* Base pair sequential glow pulse — wave travels down the helix */
.bp   {
  animation: bp-pulse 5.4s ease-in-out infinite;
  will-change: opacity;
}
.bp1  { animation-delay: 0s;    }
.bp2  { animation-delay: 0.8s;  }
.bp3  { animation-delay: 1.6s;  }
.bp4  { animation-delay: 2.4s;  }
@keyframes bp-pulse {
  0%, 100% { opacity: 0.32; }
  42%, 58% { opacity: 0.98;  }
}

@keyframes molecule-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.5deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
}

@keyframes molecule-aura-breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.58; }
  50% { transform: scale(1.04); opacity: 0.88; }
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px);  } to { opacity: 1; transform: none; } }

/* ─── About ────────────────────────────────────────────────────────────────── */
.about-section { background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.mission-vision { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.mv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #EBF2FF;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.mv-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--primary);
  background: rgba(21,88,214,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.mv-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mv-item p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* Eye graphic */
.about-visual { display: flex; justify-content: center; align-items: center; }
.eye-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-svg {
  width: 280px;
  height: 200px;
  filter: drop-shadow(0 0 20px rgba(43, 170, 212,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stats-overlay { position: absolute; inset: 0; pointer-events: none; }
.stat-bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,82,204,0.1);
  animation: float 6s ease-in-out infinite;
}
.stat-bubble.stat-1 { top: 10px; left: 0; animation-delay: 0s; }
.stat-bubble.stat-2 { top: 10px; right: 0; animation-delay: 1s; }
.stat-bubble.stat-3 { bottom: 60px; left: 10px; animation-delay: 2s; }
.stat-bubble.stat-4 { bottom: 60px; right: 10px; animation-delay: 1.5s; }
.stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ─── Technology ───────────────────────────────────────────────────────────── */
.tech-section { background: linear-gradient(160deg, #1040A0 0%, #0E2760 100%); }

.tech-intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.7s ease both;
}
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.4));
  opacity: 0;
  transition: opacity var(--transition);
}
.tech-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.tech-card:hover::before { opacity: 1; }

.tech-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.tech-card-icon svg { width: 28px; height: 28px; }

.tech-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.tech-card-name-en {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.tech-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tech-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

/* ─── Pipeline ─────────────────────────────────────────────────────────────── */
.pipeline-section { background: #F4F8FF; }

.pipeline-wrapper { overflow-x: auto; }

.pipeline-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px;
}

.pipeline-stages-row th {
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  background: white;
}
.pipeline-stages-row th:first-child,
.pipeline-stages-row th:nth-child(2),
.pipeline-stages-row th:nth-child(3),
.pipeline-stages-row th:nth-child(4) {
  text-align: left;
  min-width: 100px;
}

.pipeline-item-row td {
  padding: 0;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pipeline-item-row:last-child td { border-bottom: none; }

.pipeline-row-inner {
  display: grid;
  grid-template-columns: 90px 160px 110px 80px repeat(6, 1fr);
  align-items: center;
  padding: 20px 0;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}
.pipeline-row-inner:hover { background: rgba(0,82,204,0.03); }

.pl-code {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 8px;
  background: rgba(0,82,204,0.08);
  border-radius: 6px;
  display: inline-block;
}

.pl-disease { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.pl-disease-en { font-size: 13px; color: var(--text-muted); display: block; }

.pl-target { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-body); font-style: italic; }

.pl-modality-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.modality-sirna { background: rgba(0,82,204,0.12); color: var(--primary); }
.modality-aso { background: rgba(123,47,255,0.12); color: var(--accent2); }
.modality-mirna { background: rgba(124,58,237,0.12); color: #6D28D9; }
.modality-sarna { background: rgba(5,150,105,0.12); color: #047857; }
.modality-aptamer { background: rgba(11,143,168,0.12); color: #0B7D97; }
.modality-undisclosed { background: rgba(66,91,135,0.12); color: #425B87; }

.pl-stage-cells { display: contents; }
.pl-stage-cell {
  padding: 4px;
  text-align: center;
  position: relative;
}
.stage-bar {
  height: 8px;
  border-radius: 0;
  background: #E2E8F0;
  position: relative;
}
.stage-bar.active { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.stage-bar.first-active { border-radius: 4px 0 0 4px; }
.stage-bar.last-active { border-radius: 0 4px 4px 0; }
.stage-bar.single { border-radius: 4px; }

/* Simple pipeline list layout */
.pipeline-cards { display: flex; flex-direction: column; gap: 20px; }

.pipeline-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.pipeline-card:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,0,0,0.12); }

.pipeline-card-header {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pipeline-card-meta { display: flex; flex-direction: column; gap: 4px; }
.pipeline-card-meta .pl-disease { margin: 0; }

.pipeline-stages-visual {
  padding: 20px 28px 24px;
}
.stages-track-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.stage-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  flex: 1;
  letter-spacing: 0.2px;
}
.stages-track { display: flex; gap: 3px; }
.stage-block {
  flex: 1;
  height: 10px;
  border-radius: 2px;
  background: #E2E8F0;
  overflow: hidden;
  position: relative;
}
.stage-block-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pipeline-card.progress-animated .stage-block.active .stage-block-fill {
  transform: scaleX(1);
}
.stage-block.active-partial { background: var(--primary); opacity: 0.5; }

.pipeline-desc {
  padding: 0 28px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  cursor: pointer;
  display: none;
}
.pipeline-card.expanded .pipeline-desc { display: block; }
.expand-btn {
  padding: 4px 28px 16px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}
.expand-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.pipeline-card.expanded .expand-btn svg { transform: rotate(180deg); }

/* ─── News ─────────────────────────────────────────────────────────────────── */
.news-section { background: #FFFFFF; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.news-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-card), #1a3066);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img-placeholder {
  color: rgba(255,255,255,0.1);
  font-size: 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.news-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,82,204,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.news-date { font-size: 13px; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.news-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-summary {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-decoration: none;
  transition: gap var(--transition);
}
.news-link:hover { gap: 8px; }

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ─── Team ─────────────────────────────────────────────────────────────────── */
.team-section { background: #EEF5FF; }

/* Carousel wrapper */
.team-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

/* track = former team-grid */
.team-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px; /* prevent box-shadow clipping */
}
.team-track::-webkit-scrollbar { display: none; }

.team-track-auto .team-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.team-track-auto {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.team-card-clone .team-detail-btn {
  pointer-events: none;
}

/* Arrow buttons */
.team-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(21,88,214,0.2);
  background: white;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(21,88,214,0.08);
}
.team-arrow:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.team-arrow:disabled { opacity: 0.3; cursor: default; }

.team-grid {
  display: flex;
  gap: 24px;
}

/* Auto-fit grid: equal-width columns, fills the full section width */
.team-grid-auto {
  display: grid;
  grid-template-columns: repeat(var(--member-count, 4), 1fr);
  gap: 24px;
}

/* Fallback if CSS custom property not supported */
.team-grid-auto .team-card {
  flex: unset;
  width: 100%;
  scroll-snap-align: unset;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.team-card:hover::after { transform: scaleX(1); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: 'Noto Serif SC', serif;
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar img.avatar-crop-img {
  object-position: var(--avatar-x, 50%) var(--avatar-y, 18%);
  transform: scale(var(--avatar-scale, 1));
  transform-origin: var(--avatar-x, 50%) var(--avatar-y, 18%);
}

.team-card:hover .team-avatar img.avatar-crop-img {
  transform: scale(var(--avatar-hover-scale, 1.035));
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-family: 'Noto Serif SC', serif;
}
.team-degree { font-size: 14px; color: var(--accent); font-family: 'Inter', sans-serif; }
.team-title {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
  margin: 8px 0 12px;
  line-height: 1.4;
}
.team-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.team-education {
  font-size: 14px;
  color: var(--text-body);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.team-avatar-initial {
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: 'Noto Serif SC', serif;
}

.team-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.team-detail-btn:hover { gap: 10px; }

/* ─── Investors ───────────────────────────────────────────────────────────── */
.investors-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.investors-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.investor-group {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(21,88,214,0.10);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(15,35,81,0.06);
}

.investor-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.group-kicker {
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
}

.investor-group-head h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  color: var(--text-dark);
}

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

.investor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21,88,214,0.06), rgba(0,168,200,0.08));
  border: 1px solid rgba(21,88,214,0.08);
  min-height: 120px;
}

.investor-mark {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #0F2351, #1558D6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Noto Serif SC', serif;
  box-shadow: 0 16px 32px rgba(21,88,214,0.16);
  overflow: hidden;
  position: relative;
}

.investor-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.investor-card.has-logo .investor-mark {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,255,0.95));
  border: 1px solid rgba(21,88,214,0.10);
  box-shadow: 0 14px 28px rgba(15,35,81,0.08);
}

.investor-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: transparent;
}

.investor-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.investor-type {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(21,88,214,0.10);
}

.investor-copy h4 {
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
  word-break: break-word;
}

.investor-copy h4 br {
  display: block;
  content: "";
}

.investor-copy.long-name h4 {
  font-size: 15px;
  line-height: 1.55;
}

.investor-empty {
  grid-column: 1 / -1;
  padding: 26px 18px;
  border-radius: 16px;
  background: rgba(21,88,214,0.04);
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}

/* ─── Journey / Milestones ────────────────────────────────────────────────── */
.journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(58, 201, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(31, 110, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #102B67 0%, #091A45 100%);
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 185, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 185, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0));
  pointer-events: none;
}

.journey-intro {
  max-width: 1180px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(228, 238, 255, 0.84);
  position: relative;
  z-index: 1;
}
.journey-intro.single-line {
  white-space: nowrap;
}
.journey-intro.manual-wrap {
  max-width: 900px;
  white-space: pre-line;
}

.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 10px 0;
  z-index: 1;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(130, 220, 255, 0.18), rgba(130, 220, 255, 0.48), rgba(130, 220, 255, 0.18));
  box-shadow: 0 0 16px rgba(74, 193, 255, 0.18);
}

.journey-item {
  position: relative;
  display: flex;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: calc(50% - 7px);
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #63E5FF;
  box-shadow: 0 0 0 6px rgba(99, 229, 255, 0.12), 0 0 18px rgba(99, 229, 255, 0.34);
}

.journey-item-left {
  justify-content: flex-start;
  padding-right: calc(50% + 34px);
}

.journey-item-right {
  justify-content: flex-end;
  padding-left: calc(50% + 34px);
}

.journey-card {
  width: 100%;
  max-width: 520px;
  padding: 24px 26px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(4, 14, 42, 0.2);
}

.journey-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.journey-year {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
}

.journey-period {
  font-size: 13px;
  font-weight: 600;
  color: rgba(206, 222, 255, 0.82);
  font-family: 'Inter', sans-serif;
}

.journey-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #9DEBFF;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.journey-card h3 {
  margin-bottom: 12px;
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  line-height: 1.35;
  color: #FFFFFF;
}

.journey-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(227, 236, 255, 0.82);
}

.journey-empty {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(227, 236, 255, 0.82);
  text-align: center;
}

/* ─── Contact ───────────────────────────────────────────────────────────────── */
.contact-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(59, 194, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(13, 110, 253, 0.16), transparent 24%),
    linear-gradient(160deg, #1040A0 0%, #0E2760 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-side {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  min-width: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.09));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 72px rgba(7, 18, 53, 0.22);
}

.contact-panel-intro {
  padding: 30px 30px 28px;
}

.contact-panel-intro::after,
.contact-form-wrap::after {
  content: '';
  position: absolute;
  inset: -1px auto auto -1px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 204, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  min-width: 136px;
  min-height: 46px;
  width: fit-content;
  max-width: max-content;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(92, 216, 255, 0.28);
  background: linear-gradient(180deg, rgba(13, 53, 123, 0.34), rgba(8, 31, 88, 0.24));
  color: #A8EEFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-mini-tag.alt {
  border-color: rgba(187, 225, 255, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  color: #E3F2FF;
}

.contact-panel-intro h3 {
  margin: 18px 0 14px;
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  line-height: 1.35;
  color: #FFFFFF;
  text-shadow: 0 6px 18px rgba(7, 18, 53, 0.18);
}

.contact-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #F5FAFF !important;
  text-shadow: 0 3px 12px rgba(7, 18, 53, 0.14);
}

#contact-intro,
.contact-panel-intro #contact-intro,
.contact-panel-intro p#contact-intro {
  color: #F5FAFF !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #F5FAFF;
}

.contact-panel-intro p,
.contact-panel-intro p strong,
.contact-panel-intro p span {
  color: rgba(245, 250, 255, 0.94);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  padding: 22px 24px;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  align-self: stretch;
}

.contact-location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 18px 10px 8px;
  min-height: 100%;
}

.contact-location-copy h3 {
  margin: 18px 0 12px;
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  color: var(--text-white);
}

.contact-location-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232, 239, 255, 0.8);
  max-width: 430px;
}

.contact-location-phone {
  margin-top: 18px;
}

.contact-map-phone-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(8, 28, 76, 0.42);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 400px;
}

.contact-map-phone-card span {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(186, 208, 255, 0.84);
}

.contact-map-phone-card a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-map-phone-card a:hover {
  color: #9EE8FF;
}

.contact-map-phone-card small {
  grid-column: 1;
  grid-row: 2;
  font-size: 12px;
  color: rgba(221, 232, 255, 0.76);
}

.contact-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.contact-postcode-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(241, 246, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-route-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(39, 140, 255, 0.22);
  border: 1px solid rgba(92, 200, 255, 0.2);
  color: #F6FBFF;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.contact-route-link:hover {
  background: rgba(55, 150, 255, 0.28);
  color: #FFFFFF;
}

.contact-map-embed {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  height: 100%;
  width: 100%;
  justify-self: end;
  align-self: stretch;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 22% 28%, rgba(82, 209, 255, 0.24), transparent 26%),
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.contact-map-embed iframe,
.contact-map-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 0;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 230px;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
}

.contact-map-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.contact-map-marker-view {
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 42%, rgba(94, 230, 255, 0.22), transparent 18%),
    radial-gradient(circle at 28% 72%, rgba(52, 119, 229, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(219, 238, 255, 0.18), rgba(99, 141, 205, 0.12));
}

.contact-map-placeholder::before,
.contact-map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.contact-map-placeholder::after {
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: none;
}

.contact-map-dot {
  position: absolute;
  top: 34%;
  left: 57%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6FE8FF;
  box-shadow: 0 0 0 8px rgba(78, 218, 255, 0.12), 0 0 24px rgba(78, 218, 255, 0.55);
}

.contact-map-lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  margin-top: auto;
}

.contact-map-lines span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(7, 31, 86, 0.42);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(245, 249, 255, 0.92);
  font-size: 13px;
  line-height: 1.4;
}

.contact-map-street {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.contact-map-street::after {
  content: '';
  position: absolute;
  inset: 46% 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.20);
}

.contact-map-street.street-a {
  left: -12%;
  top: 28%;
  width: 128%;
  height: 18px;
  transform: rotate(-12deg);
}

.contact-map-street.street-b {
  left: 34%;
  top: -10%;
  width: 18px;
  height: 130%;
  transform: rotate(18deg);
}

.contact-map-street.street-c {
  left: 5%;
  bottom: 20%;
  width: 110%;
  height: 14px;
  transform: rotate(9deg);
  opacity: 0.72;
}

.contact-map-river {
  position: absolute;
  left: -10%;
  bottom: -4%;
  width: 120%;
  height: 34%;
  border-radius: 60% 42% 0 0;
  background: linear-gradient(100deg, rgba(75, 212, 255, 0.20), rgba(56, 120, 224, 0.10));
  transform: rotate(-5deg);
  opacity: 0.9;
}

.contact-map-marker {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 10px;
  width: min(82%, 360px);
  padding: 12px 14px 12px 12px;
  border-radius: 18px;
  background: rgba(8, 28, 76, 0.84);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 44px rgba(3, 16, 49, 0.32);
  color: #FFFFFF;
  transform: translate(-50%, -52%);
  backdrop-filter: blur(14px);
}

.contact-map-flag {
  position: relative;
  grid-row: 1 / span 2;
  width: 34px;
  height: 40px;
  align-self: center;
}

.contact-map-flag::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 7px;
  width: 3px;
  height: 29px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}

.contact-map-flag::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 5px;
  width: 21px;
  height: 16px;
  border-radius: 4px 9px 9px 4px;
  background: linear-gradient(135deg, #FF4D4F, #E11D48);
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.36);
}

.contact-map-marker strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #FFFFFF;
}

.contact-map-marker small {
  min-width: 0;
  color: rgba(228, 238, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.contact-map-area-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  color: rgba(235, 248, 255, 0.76);
  font: 700 10px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card {
  min-height: 148px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(8, 19, 56, 0.16);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 203, 255, 0.24), rgba(34, 203, 255, 0.09));
  border: 1px solid rgba(34, 203, 255, 0.22);
  color: #58DEFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-copy {
  min-width: 0;
}

.contact-card-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(194, 213, 255, 0.92);
}

.contact-card-copy h4 {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.3;
  color: var(--text-white);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-card-copy h4 a {
  color: inherit;
  text-decoration: none;
}

.contact-card-copy h4 a:hover {
  color: #8EE4FF;
}

.contact-card-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232, 239, 255, 0.78);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 34px 34px 30px;
  box-shadow: 0 26px 80px rgba(8, 20, 57, 0.26);
  height: 100%;
  min-width: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.contact-form-head p {
  margin: 14px 0 0;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(237, 244, 255, 0.82);
}

.contact-form h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  color: white;
  margin: 18px 0 0;
  font-weight: 600;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: rgba(241, 246, 255, 0.92); margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(113,214,255,0.65);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 4px rgba(54, 186, 255, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.42); }
.form-group select option { background: var(--bg-card); color: white; }
.form-group textarea { resize: vertical; min-height: 138px; }
.form-note { text-align: center; font-size: 12px; color: rgba(210, 223, 248, 0.82); margin-top: 12px; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(circle at 12% 12%, rgba(97, 176, 255, 0.14), transparent 20%),
    #0B1E4A;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 0.95fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  position: relative;
  max-width: 420px;
}

.footer-brand::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -40px;
  width: 220px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 72%);
  pointer-events: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 14px;
  width: fit-content;
}
.footer-desc { font-size: 13px; color: rgba(211, 223, 245, 0.78); line-height: 1.7; }

.footer-panel {
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  min-height: auto;
}

.footer-links h5 {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li, .footer-links a {
  font-size: 13px;
  color: rgba(205, 219, 245, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.social-label { font-size: 12px; color: rgba(194, 208, 238, 0.72); }
.footer-qrcode {
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  border-radius: 18px;
  padding: 8px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 14px 30px rgba(3, 12, 38, 0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-qrcode-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #fff;
}

.footer-qrcode.empty {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.28);
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p,
.footer-record-link {
  font-size: 12px;
  color: rgba(188, 203, 235, 0.78);
}

.footer-records {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 14px;
  text-align: right;
}

.footer-records[hidden],
.footer-record-link[hidden] {
  display: none !important;
}

.footer-record-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a.footer-record-link:hover {
  color: rgba(103, 226, 255, 0.95);
}

.footer-record-link::before {
  content: "";
  flex: 0 0 auto;
  opacity: 0.9;
}

#footer-icp::before {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(103, 226, 255, 0.58);
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 5px, rgba(103, 226, 255, 0.18) 5px 6px, transparent 6px),
    linear-gradient(rgba(103, 226, 255, 0.48), rgba(103, 226, 255, 0.48)) 5px 5px / 7px 1px no-repeat,
    linear-gradient(rgba(103, 226, 255, 0.34), rgba(103, 226, 255, 0.34)) 5px 9px / 6px 1px no-repeat,
    rgba(103, 226, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

#footer-police::before {
  width: 15px;
  height: 16px;
  border: 1px solid rgba(103, 226, 255, 0.62);
  border-radius: 7px 7px 8px 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.82) 0 2px, transparent 2.5px),
    linear-gradient(135deg, rgba(103,226,255,0.95), rgba(31,107,238,0.45));
  clip-path: polygon(50% 0, 90% 15%, 84% 68%, 50% 100%, 16% 68%, 10% 15%);
  box-shadow: 0 0 10px rgba(20, 180, 255, 0.18);
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */

/* Large desktop: tighten container padding slightly */
@media (max-width: 1600px) {
  .container { padding: 0 40px; }
  .nav-container { padding: 0 40px; }
}

/* Medium desktop / small laptop */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav-container { padding: 0 40px; }
  .team-card { flex: 0 0 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .hero-inner { padding: 72px 40px 60px; gap: 30px; }
  .hero-orb-scene { width: 340px; height: 340px; }
  .investors-shell { grid-template-columns: 1fr; }
  .journey-item-left,
  .journey-item-right {
    padding-left: 56px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .journey-timeline::before { left: 18px; }
  .journey-item::before { left: 11px; }
  .contact-card-grid { grid-template-columns: 1fr; }
}

/* Tablet */
@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .nav-container { padding: 0 32px; }
  .section { padding: 80px 0; min-height: 100vh; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .tech-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .investor-grid { grid-template-columns: 1fr 1fr; }
  .team-track-auto .team-card { flex-basis: calc((100% - 24px) / 2); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey-intro { margin-bottom: 32px; }
  .journey-intro.single-line { white-space: normal; }
  .journey-card h3 { font-size: 22px; }
  .contact-form-wrap,
  .contact-panel-intro { padding: 28px; }
  .contact-location-panel { grid-template-columns: 1fr; }
  .contact-location-copy { padding-right: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* hero goes single column */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    min-height: auto;
    padding-bottom: 80px;
  }
  .hero-right { min-height: 280px; }
  .hero-orb-scene { width: 280px; height: 280px; }
  .hero-title { font-size: clamp(34px, 6vw, 52px); }
  .hero-subtitle { max-width: 100%; }
}

/* Mobile landscape / large phone */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .section { padding: 70px 0; min-height: auto; }

  .navbar { padding: 0; }
  .nav-links {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: rgba(14,39,96,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 2px 0 8px;
    padding: 4px;
    border-radius: 16px;
    border-color: rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.07);
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown::before {
    display: none;
  }
  .nav-sublink {
    padding: 10px 12px 10px 18px;
    color: rgba(255,255,255,0.9);
  }
  .nav-sublink small {
    color: rgba(208,225,255,0.68);
  }
  .nav-sublink:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .hamburger { display: flex; }
  .nav-middle {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 10px;
    padding-right: 0;
  }
  .nav-search-shell {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 42px;
    height: 42px;
  }
  .nav-search-trigger {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }
  .nav-search-trigger:hover {
    transform: scale(1.04);
  }
  .nav-search-shell.open,
  .nav-middle.search-open .nav-search-shell {
    position: absolute;
    top: 50%;
    right: 0;
    width: min(320px, calc(100vw - 160px));
    transform: translateY(-50%);
  }
  .nav-search-dropdown {
    width: min(420px, calc(100vw - 32px));
  }
  .site-search-result h3 {
    font-size: 18px;
  }

  .news-grid { grid-template-columns: 1fr; }
  .investor-grid { grid-template-columns: 1fr; }
  .team-card { flex: 0 0 240px; }
  .team-track-auto .team-card { flex-basis: 100%; }
  .team-grid-auto { grid-template-columns: repeat(2, 1fr) !important; }
  .team-arrow { width: 36px; height: 36px; font-size: 20px; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .contact-form h3,
  .contact-panel-intro h3 { font-size: 24px; }
  .journey-item-left,
  .journey-item-right { padding-left: 44px; }
  .journey-timeline::before { left: 14px; }
  .journey-item::before {
    left: 7px;
    width: 12px;
    height: 12px;
  }
  .journey-card { padding: 22px 20px; }
  .contact-location-copy h3 { font-size: 22px; }
  .contact-map-phone-card { max-width: 100%; }
  .contact-map-phone-card a { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-inner { padding: 90px 24px 60px; }
  .investor-group { padding: 24px; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .section { padding: 60px 0; min-height: auto; }
  .team-card { flex: 0 0 85vw; }
  .team-track-auto .team-card { flex-basis: 100%; }
  .team-grid-auto { grid-template-columns: 1fr !important; }
  .team-arrow { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-inner { padding: 80px 20px 50px; }
  .section-title { font-size: 26px; }
  .hero-content { padding: 80px 20px 40px; }
  .journey-intro { font-size: 14px; }
  .journey-intro.single-line { white-space: normal; }
  .journey-year { font-size: 24px; }
  .journey-card h3 { font-size: 20px; }
  .journey-card p { font-size: 14px; }
  .contact-form-wrap,
  .contact-panel-intro,
  .contact-card { padding: 22px 20px; }
  .contact-location-panel { padding: 20px; }
  .contact-card { min-height: auto; }
  .contact-map-lines { max-width: 100%; }
  .contact-map-phone-card {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .contact-map-phone-card span,
  .contact-map-phone-card a,
  .contact-map-phone-card small {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-map-phone-card a {
    font-size: 18px;
    white-space: normal;
  }
}

/* ─── Mobile Hardening Pass ───────────────────────────────────────────────── */
img,
svg,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-container {
    height: 72px;
    gap: 10px;
  }

  .logo-img {
    height: 36px;
    max-width: 188px;
  }

  .footer-logo-img {
    max-width: 210px;
  }

  .lang-switcher {
    margin-left: 0;
    gap: 2px;
    padding: 3px;
  }

  .lang-switch-btn {
    min-width: 32px;
    height: 30px;
  }

  .hamburger {
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    top: 72px;
    z-index: 1002;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(13, 39, 96, 0.985), rgba(8, 25, 67, 0.985));
    box-shadow: 0 24px 60px rgba(3, 13, 38, 0.24);
  }

  .navbar.scrolled .nav-links .nav-link,
  .navbar:not(.scrolled) .nav-links .nav-link,
  .navbar.scrolled .nav-links .nav-contact-btn,
  .navbar:not(.scrolled) .nav-links .nav-contact-btn {
    color: rgba(255,255,255,0.9) !important;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 13px 14px !important;
    font-size: 16px;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    background: rgba(255,255,255,0.1) !important;
    color: #FFFFFF !important;
  }

  .nav-search-shell.open,
  .nav-middle.search-open .nav-search-shell {
    position: fixed;
    top: 12px;
    left: 14px;
    right: 14px;
    width: auto;
    height: 48px;
    transform: none;
    z-index: 1200;
  }

  .nav-search-panel {
    gap: 10px;
    padding: 0 10px 0 13px;
  }

  .nav-search-input {
    font-size: 15px;
  }

  .nav-search-close {
    width: 34px;
    height: 34px;
  }

  .nav-search-dropdown {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: min(62vh, 520px);
    padding: 14px;
    border-radius: 20px;
  }

  .site-search-results {
    max-height: calc(min(62vh, 520px) - 50px);
  }

  .site-search-result {
    padding: 15px 16px;
  }

  .site-search-path {
    max-width: 160px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 72px;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding: 42px 20px 56px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 18px;
  }

  .hero-title {
    margin-bottom: 18px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-right {
    display: none;
  }

  .about-stats,
  .contact-grid,
  .contact-side,
  .contact-card-grid,
  .contact-location-panel,
  .footer-grid {
    min-width: 0;
  }

  .pipeline-wrapper,
  .pl-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .contact-map-embed {
    min-height: 260px;
    justify-self: stretch;
  }

  .contact-map-embed iframe,
  .contact-map-placeholder {
    min-height: 260px;
  }

  .footer {
    padding: 46px 0 24px;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 34px;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-records {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-img {
    height: 32px;
    max-width: 156px;
  }

  .nav-middle {
    margin-right: 4px;
  }

  .lang-switcher {
    display: none;
  }

  .hero-title {
    font-size: clamp(31px, 11vw, 42px);
    line-height: 1.22;
  }

  .hero-subtitle {
    margin-bottom: 26px;
  }

  .hero-right {
    display: none;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .tech-card,
  .pipeline-card,
  .news-card,
  .investor-group,
  .team-card {
    border-radius: 18px;
  }

  .contact-panel-intro h3,
  .contact-location-copy h3 {
    font-size: 24px;
  }

  .contact-mini-tag {
    min-height: 40px;
    min-width: 116px;
    letter-spacing: 0.18em;
  }

  .footer-bottom p,
  .footer-record-link {
    font-size: 11px;
  }
}

/* ─── Mobile Composition Pass: design for phone, not just overflow ───────── */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.65;
  }

  .container,
  .nav-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-tag {
    margin-bottom: 12px;
    padding: 5px 13px;
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .section-title {
    font-size: clamp(25px, 7.6vw, 32px);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .section-subtitle {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.7;
  }

  .nav-container {
    height: 64px;
  }

  .logo-img {
    height: 30px;
    max-width: 150px;
  }

  .nav-links {
    top: 64px;
    max-height: calc(100vh - 64px);
    padding: 14px 18px 22px;
  }

  .nav-links .nav-link {
    padding: 11px 12px !important;
    font-size: 14px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
  }

  .nav-search-shell {
    width: 36px;
    height: 36px;
  }

  .nav-search-trigger {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-inner {
    padding: 34px 18px 44px;
  }

  .hero-badge {
    padding: 5px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-title {
    max-width: 340px;
    font-size: clamp(30px, 10.2vw, 40px);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.72;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn,
  .btn {
    width: auto;
    max-width: none;
    min-height: 40px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .about-grid,
  .contact-grid {
    gap: 26px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.82;
    margin-bottom: 16px;
  }

  .mission-vision {
    margin-top: 22px;
    gap: 12px;
  }

  .mv-item {
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .mv-icon {
    width: 34px;
    height: 34px;
  }

  .tech-intro {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.72;
  }

  .tech-cards {
    gap: 14px;
  }

  .tech-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .tech-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 14px;
  }

  .tech-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .tech-card h3 {
    font-size: 18px;
    line-height: 1.42;
  }

  .tech-card-name-en {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .tech-card p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  .tech-features {
    gap: 6px;
  }

  .tech-features li {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.6;
  }

  .pipeline-cards {
    gap: 14px;
  }

  .pipeline-card-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 18px;
  }

  .pipeline-card-header .pl-modality-badge {
    justify-self: start;
  }

  .pipeline-stages-visual {
    padding: 16px 18px 18px;
  }

  .stages-track-label {
    display: none;
  }

  .stage-block {
    height: 8px;
  }

  .pipeline-desc {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .expand-btn {
    padding: 0 18px 16px;
  }

  .news-grid {
    gap: 16px;
  }

  .news-card {
    border-radius: 18px;
  }

  .news-card-img {
    aspect-ratio: 1.95 / 1;
  }

  .news-card-body {
    padding: 18px;
  }

  .news-title {
    font-size: 15px;
    line-height: 1.55;
  }

  .news-summary {
    font-size: 13px;
    line-height: 1.72;
    -webkit-line-clamp: 2;
  }

  .team-carousel-wrap {
    gap: 8px;
  }

  .team-track {
    gap: 14px;
  }

  .team-card,
  .team-track-auto .team-card {
    flex-basis: min(82vw, 292px);
    padding: 22px 18px;
    border-radius: 20px;
  }

  .team-avatar {
    width: 68px;
    height: 68px;
    margin-bottom: 12px;
  }

  .team-name {
    font-size: 17px;
  }

  .team-degree,
  .team-title,
  .team-bio,
  .team-education {
    font-size: 13px;
  }

  .team-bio {
    line-height: 1.72;
    -webkit-line-clamp: 3;
  }

  .investors-shell {
    gap: 18px;
  }

  .investor-group {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .investor-group-head {
    margin-bottom: 16px;
  }

  .investor-group-head h3 {
    font-size: 21px;
  }

  .investor-grid {
    gap: 12px;
  }

  .investor-card {
    gap: 12px;
    min-height: 92px;
    padding: 14px;
    border-radius: 16px;
  }

  .investor-mark {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 17px;
  }

  .investor-type {
    margin-bottom: 5px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .investor-copy h4,
  .investor-copy.long-name h4 {
    font-size: 14px;
    line-height: 1.42;
  }

  .journey-intro {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.72;
  }

  .journey-timeline {
    gap: 16px;
  }

  .journey-card {
    max-width: none;
    padding: 18px;
    border-radius: 18px;
  }

  .journey-year {
    font-size: 23px;
  }

  .journey-card h3 {
    font-size: 18px;
  }

  .journey-card p {
    font-size: 13px;
    line-height: 1.72;
  }

  .contact-panel,
  .contact-form-wrap {
    border-radius: 22px;
  }

  .contact-panel-intro,
  .contact-form-wrap {
    padding: 22px 18px;
  }

  .contact-panel-intro h3,
  .contact-form h3 {
    font-size: 23px;
  }

  .contact-intro,
  .contact-panel-intro p {
    font-size: 13px;
    line-height: 1.75;
  }

  .contact-card-grid {
    gap: 12px;
  }

  .contact-card {
    padding: 16px;
    min-height: auto;
    border-radius: 18px;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
  }

  .contact-card-copy h4 {
    font-size: 17px;
    word-break: break-word;
  }

  .contact-location-panel {
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .contact-location-copy {
    padding: 0;
  }

  .contact-map-embed,
  .contact-map-embed iframe,
  .contact-map-placeholder {
    min-height: 220px;
  }

  .footer {
    padding: 38px 0 22px;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer-desc {
    max-width: 320px;
    margin: 0 auto;
    font-size: 12px;
  }

  .footer-qrcode,
  .footer-qrcode-img {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .container,
  .nav-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-img {
    height: 28px;
    max-width: 138px;
  }

  .hero-inner {
    padding: 30px 16px 40px;
  }

  .hero-title {
    font-size: clamp(28px, 9.8vw, 36px);
  }

  .hero-actions .btn {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-arrow {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .contact-map-phone-card {
    grid-template-columns: auto 1fr;
    column-gap: 10px;
  }

  .contact-map-phone-card span,
  .contact-map-phone-card small {
    grid-column: 1;
  }

  .contact-map-phone-card a {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 15px;
    white-space: nowrap;
  }
}

/* ─── 2026 homepage story pass: less stacked, more continuous ────────────── */
.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(43, 170, 212, .10), transparent 26%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 74%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(11, 43, 100, .10), transparent);
  pointer-events: none;
}

.about-section .section-header,
.news-section .section-header,
.investors-section .section-header {
  max-width: 820px;
}

.about-grid {
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.about-content {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(190, 207, 235, .74);
  border-radius: 32px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 26px 80px rgba(35, 68, 118, .08);
}

.tech-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 10%, rgba(43, 170, 212, .18), transparent 28%),
    linear-gradient(180deg, #0A2559 0%, #1040A0 100%);
}

.tech-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(14, 61, 134, 0), rgba(244, 248, 255, 1));
  pointer-events: none;
}

.tech-section .container {
  position: relative;
  z-index: 1;
}

.news-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(21, 88, 214, .06), transparent 24%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 62%);
}

.team-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(43, 170, 212, .08), transparent 24%),
    #F4F8FF;
}

.investors-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 170, 212, .14), transparent 22%),
    linear-gradient(180deg, #0A2559 0%, #1040A0 100%);
}

@media (max-width: 768px) {
  .about-content {
    padding: 24px 20px;
    border-radius: 24px;
  }
}

/* ─── 2026 homepage redesign: a continuous biotech story, not stacked blocks ─ */
body {
  --home-edge: max(58px, calc((100vw - 1600px) / 2 + 58px));
}

.hero-content,
.section > .container,
.footer > .container,
.home-narrative-inner {
  max-width: none;
  padding-left: var(--home-edge);
  padding-right: var(--home-edge);
}

.home-narrative {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 118px) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(21, 88, 214, .08), transparent 25%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.home-narrative::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 35, 81, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 81, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  pointer-events: none;
}

.home-narrative-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.home-narrative-copy {
  max-width: 650px;
}

.home-narrative-copy .section-tag {
  margin: 0 0 24px;
}

.home-narrative-copy h2 {
  margin: 0;
  color: #10204A;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(36px, 3.6vw, 64px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.home-narrative-copy p {
  margin: 22px 0 0;
  color: #58709C;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.95;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-focus-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid rgba(185, 204, 235, .78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(43, 170, 212, .12), transparent 32%),
    rgba(255, 255, 255, .84);
  color: #10204A;
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(35, 68, 118, .08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.home-focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 170, 212, .42);
  box-shadow: 0 30px 90px rgba(35, 68, 118, .13);
}

.home-focus-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #EAF3FF;
  color: #1558D6;
  font: 700 13px/1 'Inter', sans-serif;
  letter-spacing: .16em;
}

.home-focus-card strong {
  display: block;
  margin: 28px 0 12px;
  font-size: 23px;
  letter-spacing: -.02em;
}

.home-focus-card p {
  margin: 0;
  color: #63779F;
  font-size: 15px;
  line-height: 1.82;
}

.about-section {
  padding-top: clamp(82px, 8vw, 130px);
}

.about-section .section-header,
.news-section .section-header,
.team-section .section-header,
.investors-section .section-header,
.contact-section .section-header,
.tech-section .section-header {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-section .section-tag,
.news-section .section-tag,
.team-section .section-tag,
.investors-section .section-tag,
.contact-section .section-tag,
.tech-section .section-tag {
  margin-left: 0;
  margin-right: 0;
}

.about-grid {
  grid-template-columns: minmax(0, .95fr) minmax(440px, .9fr);
}

.about-content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mv-item {
  min-height: 150px;
  border: 1px solid rgba(185, 204, 235, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 58px rgba(35, 68, 118, .08);
}

.tech-section,
.contact-section {
  padding-top: clamp(86px, 8vw, 132px);
  padding-bottom: clamp(86px, 8vw, 132px);
}

.tech-intro {
  max-width: 960px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.news-grid,
.team-grid,
.investors-shell {
  max-width: 1440px;
}

.section-action {
  text-align: left;
}

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

.contact-grid {
  align-items: stretch;
}

@media (max-width: 1100px) {
  .home-narrative-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .home-focus-grid,
  .team-section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    --home-edge: 22px;
  }

  .home-narrative-inner,
  .hero-content,
  .section > .container,
  .footer > .container {
    padding-left: var(--home-edge);
    padding-right: var(--home-edge);
  }

  .home-focus-grid,
  .mission-vision,
  .team-section .team-grid {
    grid-template-columns: 1fr;
  }

  .home-focus-card {
    min-height: auto;
    padding: 24px;
  }

  .about-visual {
    display: none;
  }
}

/* ─── 2026 homepage narrative reset: cohesive first-page story ───────────── */
body {
  --home-edge: max(72px, calc((100vw - 1560px) / 2 + 72px));
}

.hero-inner,
.section > .container,
.footer > .container,
.home-narrative-inner {
  max-width: none;
  padding-left: var(--home-edge);
  padding-right: var(--home-edge);
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 42%, rgba(43, 170, 212, .10), transparent 28%),
    linear-gradient(135deg, #0A2559 0%, #1558D6 48%, #071B45 100%);
}

.hero-inner {
  grid-template-columns: minmax(520px, .86fr) minmax(520px, 1fr);
  gap: clamp(54px, 7vw, 132px);
  padding-top: 94px;
  padding-bottom: 72px;
}

.hero-title {
  font-size: clamp(58px, 6.2vw, 118px);
  line-height: 1.08;
  letter-spacing: -.07em;
}

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(17px, 1.05vw, 22px);
  line-height: 2;
}

.hero-orb-scene {
  width: min(46vw, 650px);
  height: min(46vw, 650px);
}

.home-narrative {
  padding: clamp(94px, 8vw, 142px) 0;
}

.home-narrative-inner {
  grid-template-columns: minmax(440px, .86fr) minmax(620px, 1.14fr);
}

.home-focus-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-focus-card:nth-child(2) {
  transform: translateY(32px);
}

.home-focus-card:nth-child(3) {
  transform: translateY(64px);
}

.home-focus-card:hover {
  transform: translateY(-6px);
}

.home-focus-card:nth-child(2):hover {
  transform: translateY(20px);
}

.home-focus-card:nth-child(3):hover {
  transform: translateY(52px);
}

.section {
  min-height: auto;
}

.about-section,
.tech-section,
.news-section,
.investors-section,
.home-contact-cta {
  padding-top: clamp(96px, 8vw, 148px);
  padding-bottom: clamp(96px, 8vw, 148px);
}

.about-section .section-header,
.tech-section .section-header,
.news-section .section-header,
.investors-section .section-header {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.about-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(43, 170, 212, .10), transparent 28%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 72%);
}

.about-grid {
  grid-template-columns: minmax(560px, .96fr) minmax(420px, .72fr);
}

.about-text {
  max-width: 900px;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 2.08;
}

.mission-vision {
  margin-top: 34px;
}

.tech-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(43, 170, 212, .18), transparent 30%),
    linear-gradient(180deg, #0A2559 0%, #1040A0 100%);
}

.tech-cards {
  margin-top: 52px;
}

.news-section {
  background:
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 74%);
}

.news-grid {
  max-width: 1380px;
}

.investors-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(21, 88, 214, .07), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.home-contact-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(43, 170, 212, .17), transparent 28%),
    linear-gradient(180deg, #0A2559 0%, #071B45 100%);
}

.home-contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(116, 185, 255, .16) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .45;
  pointer-events: none;
}

.home-contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, .88fr) minmax(560px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: stretch;
}

.home-contact-copy {
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(150, 196, 255, .28);
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(0, 18, 56, .22);
  backdrop-filter: blur(14px);
}

.home-contact-copy .section-title,
.home-contact-copy .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.home-contact-copy h3 {
  margin: 34px 0 16px;
  color: #fff;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 1.2;
}

.home-contact-copy > p {
  max-width: 720px;
  color: rgba(226, 240, 255, .76);
  font-size: 17px;
  line-height: 2;
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-contact-cards .contact-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(150, 196, 255, .26);
  border-radius: 28px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 22px 70px rgba(0, 18, 56, .18);
}

.home-contact-cards .contact-card-label,
.home-contact-cards .contact-card-note {
  color: rgba(226, 240, 255, .72);
}

.home-contact-cards .contact-card-value {
  color: #fff;
  word-break: break-word;
}

@media (max-width: 1180px) {
  .hero-inner,
  .home-narrative-inner,
  .about-grid,
  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .home-focus-card,
  .home-focus-card:nth-child(2),
  .home-focus-card:nth-child(3),
  .home-focus-card:hover,
  .home-focus-card:nth-child(2):hover,
  .home-focus-card:nth-child(3):hover {
    transform: none;
  }

  .hero-orb-scene {
    width: min(78vw, 520px);
    height: min(78vw, 520px);
  }
}

@media (max-width: 768px) {
  body {
    --home-edge: 22px;
  }

  .hero-inner {
    padding-top: 116px;
    padding-bottom: 72px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 72px);
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-right {
    min-height: 300px;
  }

  .home-focus-grid,
  .home-contact-cards {
    grid-template-columns: 1fr;
  }

  .home-contact-copy,
  .home-contact-cards .contact-card {
    border-radius: 24px;
    padding: 24px;
  }
}

/* ─── 2026 homepage strategy pass: turn stacked modules into one story ─── */
.home-momentum-section {
  padding: clamp(92px, 8vw, 142px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 88, 214, .10), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.home-momentum-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.home-momentum-head .section-title,
.home-momentum-head .section-subtitle,
.home-network-head .section-title,
.home-network-head .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.home-momentum-head .section-subtitle,
.home-network-head .section-subtitle {
  max-width: 720px;
}

.home-momentum-more {
  flex: 0 0 auto;
}

.home-momentum-grid {
  display: grid;
  grid-template-columns: minmax(680px, 1fr) minmax(440px, .56fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.home-news-panel,
.home-network-panel {
  min-width: 0;
}

.home-news-panel .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: none;
}

.home-news-panel .news-card {
  min-height: 520px;
}

.home-network-panel {
  position: sticky;
  top: 112px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(177, 200, 232, .70);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 170, 212, .11), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,246,255,.92));
  box-shadow: 0 28px 80px rgba(17, 48, 96, .10);
}

.home-network-head {
  margin-bottom: 26px;
}

.home-network-head .section-title {
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.2;
}

.home-network-head .section-subtitle {
  font-size: 15px;
  line-height: 1.8;
}

.home-network-panel .investors-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.home-network-panel .investor-group {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-network-panel .investor-group-head {
  margin-bottom: 14px;
}

.home-network-panel .investor-group-head h3 {
  font-size: 22px;
}

.home-network-panel .investor-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-network-panel .investor-card {
  min-height: 92px;
  padding: 15px;
  border-radius: 22px;
  background: rgba(244, 248, 255, .88);
}

.home-network-panel .investor-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}

.home-network-panel .investor-copy h4 {
  font-size: 17px;
  line-height: 1.38;
}

.home-thesis-link {
  margin-top: 28px;
}

@media (max-width: 1320px) {
  .home-momentum-grid {
    grid-template-columns: 1fr;
  }

  .home-network-panel {
    position: static;
  }

  .home-network-panel .investors-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-momentum-head {
    display: grid;
    align-items: start;
  }

  .home-news-panel .news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-panel .news-card {
    min-height: auto;
  }

  .home-network-panel .investors-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-momentum-section {
    padding: 68px 0;
  }

  .home-momentum-more {
    width: max-content;
  }

  .home-network-panel {
    padding: 22px;
    border-radius: 24px;
  }
}

/* ─── 2026 homepage editorial architecture: one coherent story ───────────── */
.home-page {
  background:
    linear-gradient(180deg, #0A2559 0, #0A2559 44vh, #F4F8FF 44vh, #FFFFFF 100%);
}

.home-page .section:not(.hero) {
  min-height: auto;
}

.home-page .section > .container,
.home-page .hero-inner,
.home-page .home-narrative-inner,
.home-page .footer > .container {
  max-width: min(1560px, calc(100vw - 144px));
  padding-left: 0;
  padding-right: 0;
}

.home-page .hero {
  min-height: clamp(720px, 92vh, 960px);
}

.home-page .hero-inner {
  grid-template-columns: minmax(520px, .78fr) minmax(520px, .92fr);
  gap: clamp(70px, 8vw, 150px);
}

.home-page .hero-right {
  justify-content: flex-end;
}

.home-page .hero-orb-scene {
  width: clamp(420px, 36vw, 650px);
  height: clamp(420px, 36vw, 650px);
}

.home-page .home-narrative {
  margin-top: -72px;
  padding: 0 0 clamp(72px, 8vw, 118px);
  position: relative;
  z-index: 5;
  background: transparent;
}

.home-page .home-narrative-inner {
  display: grid;
  grid-template-columns: minmax(440px, .72fr) minmax(620px, 1fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: stretch;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(160, 197, 248, .42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 170, 212, .12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,255,.92));
  box-shadow: 0 34px 90px rgba(20, 54, 108, .13);
}

.home-page .home-narrative-copy {
  padding: clamp(12px, 1.6vw, 22px) 0;
}

.home-page .home-narrative-copy h2 {
  max-width: 620px;
  margin-top: 14px;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.16;
  letter-spacing: -.04em;
  color: #0B1B3F;
}

.home-page .home-narrative-copy p {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 2;
  color: #536B9C;
}

.home-page .home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-page .home-focus-card {
  min-height: 270px;
  padding: clamp(24px, 2.4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(177, 202, 236, .70);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,247,255,.92));
  box-shadow: 0 16px 52px rgba(16, 44, 92, .08);
}

.home-page .home-focus-card span {
  color: #0DAED3;
}

.home-page .home-profile-section {
  padding: clamp(78px, 8vw, 126px) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(43, 170, 212, .08), transparent 26%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 72%);
}

.home-page .home-profile-section .section-header {
  text-align: left;
  margin: 0 0 clamp(36px, 4vw, 58px);
}

.home-page .home-profile-section .section-title,
.home-page .home-profile-section .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.home-page .home-profile-section .section-title {
  font-size: clamp(44px, 4.5vw, 76px);
  letter-spacing: -.05em;
}

.home-page .about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .62fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.home-page .about-content {
  max-width: 860px;
}

.home-page .about-text {
  font-size: clamp(16px, 1vw, 19px);
  line-height: 2.08;
}

.home-page .mission-vision {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.home-page .mv-item {
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 18px 58px rgba(18, 55, 110, .08);
}

.home-page .about-visual {
  min-height: 470px;
  border-radius: 36px;
  border: 1px solid rgba(167, 196, 235, .72);
  background:
    radial-gradient(circle at 50% 44%, rgba(43, 170, 212, .14), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(235,244,255,.82));
  box-shadow: 0 28px 90px rgba(22, 55, 106, .12);
}

.home-page .about-visual .eye-graphic {
  min-height: 470px;
}

.home-page .stats-overlay {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  padding: 34px;
}

.home-page .stat-bubble {
  position: static;
  width: auto;
  height: auto;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(172, 198, 234, .78);
  background: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.home-page .stat-value {
  font-size: clamp(34px, 3vw, 52px);
  color: #1558D6;
}

.home-page .stat-label {
  color: #506A9C;
  text-align: left;
}

.home-page .eye-svg {
  display: none;
}

.home-page .home-science-section {
  min-height: auto;
  padding: clamp(86px, 8vw, 134px) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(43, 170, 212, .13), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(70, 126, 255, .20), transparent 28%),
    linear-gradient(180deg, #0A2559 0%, #1040A0 100%);
}

.home-page .home-science-section .section-header {
  max-width: 860px;
  margin-left: 0;
  text-align: left;
}

.home-page .home-science-section .section-title,
.home-page .home-science-section .section-subtitle,
.home-page .tech-intro {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.home-page .home-science-section .section-title {
  font-size: clamp(44px, 4.6vw, 78px);
  letter-spacing: -.05em;
}

.home-page .tech-intro {
  max-width: 920px;
  color: rgba(225, 239, 255, .78);
  font-size: clamp(16px, 1vw, 19px);
}

.home-page .tech-cards {
  margin-top: clamp(38px, 5vw, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.home-page .tech-card {
  min-height: 460px;
  border-radius: 32px;
}

.home-page .home-momentum-section {
  padding: clamp(86px, 8vw, 132px) 0;
}

.home-page .home-contact-cta {
  min-height: auto;
  padding: clamp(84px, 8vw, 126px) 0;
}

@media (max-width: 1280px) {
  .home-page .section > .container,
  .home-page .hero-inner,
  .home-page .home-narrative-inner,
  .home-page .footer > .container {
    max-width: calc(100vw - 72px);
  }

  .home-page .hero-inner,
  .home-page .home-narrative-inner,
  .home-page .about-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-focus-grid,
  .home-page .tech-cards {
    grid-template-columns: 1fr;
  }

  .home-page .hero-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .home-page .section > .container,
  .home-page .hero-inner,
  .home-page .home-narrative-inner,
  .home-page .footer > .container {
    max-width: calc(100vw - 40px);
  }

  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero-inner {
    padding-top: 112px;
    padding-bottom: 70px;
    gap: 34px;
    overflow: hidden;
  }

  .home-page .hero-left {
    width: min(100%, calc(100vw - 40px));
    min-width: 0;
  }

  .home-page .hero-title {
    max-width: 100%;
    font-size: clamp(32px, 9.4vw, 42px) !important;
    line-height: 1.18;
    letter-spacing: -.035em;
    white-space: normal !important;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .home-page .hero-subtitle {
    width: min(100%, calc(100vw - 40px));
    max-width: min(100%, calc(100vw - 40px));
    font-size: 14px !important;
    line-height: 1.86;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .home-page .hero-right {
    min-height: 260px;
  }

  .home-page .hero-orb-scene {
    width: min(82vw, 330px);
    height: min(82vw, 330px);
  }

  .home-page .home-narrative {
    margin-top: 0;
    padding-top: 28px;
  }

  .home-page .home-narrative-inner {
    padding: 24px;
    border-radius: 26px;
  }

  .home-page .home-profile-section .section-title,
  .home-page .home-science-section .section-title {
    font-size: clamp(36px, 11vw, 52px);
  }

  .home-page .mission-vision,
  .home-page .stats-overlay {
    grid-template-columns: 1fr;
  }

  .home-page .about-grid {
    gap: 32px;
  }

  .home-page .about-visual,
  .home-page .about-visual .eye-graphic {
    min-height: auto;
  }
}

/* Final mobile guardrail for the editorial homepage. */
@media (max-width: 768px) {
  html,
  body,
  .home-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-page .navbar {
    overflow: hidden;
  }

  .home-page .nav-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 18px !important;
    padding-right: 18px !important;
    gap: 12px;
  }

  .home-page .nav-logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .home-page .logo-img {
    width: min(178px, 54vw);
    max-width: 100%;
  }

  .home-page .nav-middle {
    margin-left: auto !important;
    margin-right: 0 !important;
    flex: 0 0 auto;
  }

  .home-page .nav-search-trigger {
    width: 42px;
    height: 42px;
  }

  .home-page .lang-switcher {
    display: none !important;
  }

  .home-page .hero-inner,
  .home-page .section > .container,
  .home-page .home-narrative-inner,
  .home-page .footer > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  .home-page .hero-inner {
    display: block;
    padding-top: 118px !important;
  }

  .home-page .hero-left {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    flex-basis: calc(100vw - 40px) !important;
    min-width: 0 !important;
  }

  .home-page .hero-eyebrow {
    max-width: 100%;
  }

  .home-page .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(32px, 10.8vw, 42px) !important;
    line-height: 1.16 !important;
    letter-spacing: -.045em;
  }

  .home-page .hero-subtitle {
    display: block;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0 !important;
    box-sizing: border-box;
    font-size: 13.5px !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    line-break: anywhere;
    white-space: normal !important;
  }

  .home-page .hero-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .home-page .btn {
    max-width: 100%;
  }

  .home-page .home-narrative-copy h2,
  .home-page .home-narrative-copy p,
  .home-page .section-title,
  .home-page .section-subtitle,
  .home-page .about-text,
  .home-page .mv-text,
  .home-page .tech-intro,
  .home-page .tech-description {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .home-page .home-narrative-copy h2 {
    font-size: clamp(27px, 7.4vw, 34px) !important;
    line-height: 1.32;
    letter-spacing: -.045em;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 1024px) {
  .home-page .hero-inner {
    display: block !important;
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
    overflow: hidden;
  }

  .home-page .hero-left,
  .home-page .hero-subtitle,
  .home-page .home-narrative-copy,
  .home-page .home-narrative-copy h2,
  .home-page .home-narrative-copy p {
    max-width: calc(100vw - 40px) !important;
  }

  .home-page .hero-subtitle,
  .home-page .home-narrative-copy h2,
  .home-page .home-narrative-copy p {
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  .home-page .hero-right {
    display: none !important;
  }
}

/* ==========================================================================
   Yimou Editorial Theme Refresh
   Source-inspired palette and homepage composition. Added last intentionally
   so it wins over the older blue homepage experiments above.
   ========================================================================== */
:root {
  --ym-cream: #F4F8FF;
  --ym-cream-warm: #EAF4FF;
  --ym-cream-deep: #D7E8FF;
  --ym-ink: #0F2351;
  --ym-ink-soft: #425B87;
  --ym-teal-deep: #0A2559;
  --ym-teal: #1040A0;
  --ym-teal-mid: #1B70BE;
  --ym-gold: #2BAAD4;
  --ym-gold-soft: #78D6E8;
  --ym-gold-pale: #D8F3FA;
  --ym-rust: #0B8FA8;
  --ym-line: rgba(15, 35, 81, .13);
  --ym-line-light: rgba(244, 248, 255, .16);
  --ym-shadow: 0 28px 90px rgba(10, 37, 89, .13);
  --primary: var(--ym-teal);
  --primary-dark: var(--ym-teal-deep);
  --accent: var(--ym-gold);
  --text-primary: var(--ym-ink);
  --text-secondary: var(--ym-ink-soft);
  --bg-light: var(--ym-cream);
}

html {
  background: var(--ym-cream);
}

body {
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 170, 212, .08), transparent 28%),
    linear-gradient(180deg, #F8FBFF 0%, var(--ym-cream) 100%);
  color: var(--ym-ink);
}

body:not(.home-page) {
  background:
    radial-gradient(circle at 88% 8%, rgba(43, 170, 212, .09), transparent 25%),
    linear-gradient(180deg, var(--ym-cream) 0%, #F7FBFF 100%);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body .navbar {
  height: 92px;
  background: rgba(10, 37, 89, .78) !important;
  border-bottom: 1px solid rgba(244, 248, 255, .12);
  box-shadow: none;
  backdrop-filter: blur(24px);
}

body.home-page .navbar {
  background: linear-gradient(180deg, rgba(16, 38, 42, 0.96), rgba(16, 38, 42, 0.92)) !important;
  border-bottom: 1px solid rgba(43, 170, 212, 0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

body:not(.home-page) .navbar {
  background: rgba(244, 248, 255, .92) !important;
  border-bottom-color: rgba(15, 35, 81, .10);
}

.nav-container {
  max-width: min(1600px, calc(100vw - 96px)) !important;
}

.logo-img {
  filter: brightness(0) invert(1);
}

body:not(.home-page) .logo-img {
  filter: none;
}

.nav-link,
.nav-link:visited {
  color: rgba(244, 248, 255, .90) !important;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-weight: 600;
}

body:not(.home-page) .nav-link,
body:not(.home-page) .nav-link:visited,
body:not(.home-page) .nav-search-trigger {
  color: var(--ym-ink) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ym-gold-soft) !important;
}

.nav-contact-btn {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.nav-search-trigger {
  color: rgba(244, 248, 255, .92);
  background: transparent !important;
  border-color: transparent !important;
}

.lang-switcher {
  background: rgba(244, 248, 255, .08) !important;
  border-color: rgba(244, 248, 255, .18) !important;
  box-shadow: none !important;
}

body:not(.home-page) .lang-switcher {
  background: rgba(16, 64, 160, .08) !important;
  border-color: rgba(16, 64, 160, .16) !important;
}

.lang-switch-btn.active,
.lang-switch-btn.is-active {
  background: var(--ym-gold) !important;
  color: var(--ym-teal-deep) !important;
}

.nav-search-panel {
  background: rgba(244, 248, 255, .98) !important;
  box-shadow: 0 18px 60px rgba(10, 37, 89, .2);
}

.nav-search-input {
  color: var(--ym-ink) !important;
}

.nav-search-dropdown {
  background: rgba(244, 248, 255, .98) !important;
  color: var(--ym-ink) !important;
  box-shadow: 0 26px 80px rgba(10, 37, 89, .22);
}

body.home-page .navbar.nav-light {
  background: var(--ym-cream) !important;
  border-bottom-color: rgba(15, 35, 81, .10) !important;
  box-shadow: 0 1px 0 rgba(15, 35, 81, .06) !important;
  backdrop-filter: none;
}

body.home-page .navbar.nav-light .logo-img {
  filter: none !important;
}

body.home-page .navbar.nav-light .nav-link,
body.home-page .navbar.nav-light .nav-link:visited,
body.home-page .navbar.nav-light .nav-link.nav-contact-btn {
  color: var(--ym-ink) !important;
}

body.home-page .navbar.nav-light .nav-link:hover,
body.home-page .navbar.nav-light .nav-link.active,
body.home-page .navbar.nav-light .nav-link.nav-contact-btn:hover {
  color: var(--ym-teal-deep) !important;
  background: rgba(16, 64, 160, .08) !important;
  border-color: rgba(16, 64, 160, .14) !important;
}

body.home-page .navbar.nav-light .nav-search-trigger {
  color: var(--ym-ink) !important;
}

body.home-page .navbar.nav-light .lang-switcher {
  background: rgba(16, 64, 160, .08) !important;
  border-color: rgba(16, 64, 160, .16) !important;
}

body.home-page .navbar.nav-light .lang-switch-btn {
  color: rgba(15, 35, 81, .72) !important;
}

body.home-page .navbar.nav-light .lang-switch-btn.active,
body.home-page .navbar.nav-light .lang-switch-btn.is-active {
  background: var(--ym-gold) !important;
  color: var(--ym-teal-deep) !important;
}

body.home-page .navbar.nav-light .hamburger span {
  background: var(--ym-ink) !important;
}

.home-page .yimou-home-hero {
  min-height: 100vh !important;
  padding: 92px clamp(32px, 7vw, 120px) 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 46%, rgba(43, 170, 212, .18), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(244, 248, 255, .08), transparent 22%),
    linear-gradient(135deg, #0B2F73 0%, #0A2559 46%, #061942 100%) !important;
}

.home-page .yimou-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(244, 248, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 248, 255, .025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 42% 42%, #000 0%, transparent 72%);
}

.home-page .yimou-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .16), transparent 42%, rgba(0, 0, 0, .2));
}

.home-page .yimou-home-hero .hero-dot-grid {
  opacity: .08;
}

.home-page .yimou-home-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px !important;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(80px, 11vh, 150px) 0 clamp(80px, 10vh, 130px) !important;
  display: grid !important;
  grid-template-columns: minmax(500px, .88fr) minmax(560px, 1fr);
  gap: clamp(60px, 8vw, 160px);
  align-items: center;
}

.home-page .hero-left {
  max-width: 860px;
}

.home-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 72px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ym-gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.home-page .hero-eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--ym-gold-soft);
}

.home-page .hero-eyebrow .badge-dot {
  display: none;
}

.home-page .hero-title {
  max-width: 1000px !important;
  color: var(--ym-cream) !important;
  font-family: "Noto Serif SC", "Fraunces", serif !important;
  font-size: clamp(70px, 7.2vw, 132px) !important;
  line-height: .98 !important;
  letter-spacing: -.08em !important;
  font-weight: 500 !important;
  text-wrap: balance;
}

.home-page .hero-title .hero-hl {
  color: var(--ym-gold) !important;
}

.home-page .hero-subtitle {
  max-width: 590px !important;
  margin-top: clamp(32px, 4vw, 56px) !important;
  color: rgba(244, 248, 255, .66) !important;
  font-size: clamp(17px, 1.04vw, 21px) !important;
  line-height: 2.05 !important;
  font-weight: 300;
  letter-spacing: .02em;
}

.home-page .hero-actions {
  margin-top: clamp(44px, 5vw, 76px) !important;
  gap: 28px;
}

.home-page .btn {
  border-radius: 2px !important;
  min-width: 190px;
  height: 64px;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  letter-spacing: .04em;
}

.home-page .btn-primary {
  background: var(--ym-gold) !important;
  color: var(--ym-teal-deep) !important;
  box-shadow: none !important;
}

.home-page .btn-primary:hover {
  background: var(--ym-gold-soft) !important;
  transform: translateY(-2px);
}

.home-page .btn-ghost {
  color: var(--ym-cream) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(244, 248, 255, .34) !important;
  background: transparent !important;
  min-width: 150px;
}

.home-page .hero-right {
  position: relative;
  z-index: 2;
  display: flex !important;
  justify-content: flex-end;
}

.home-page .hero-orb-scene {
  width: min(48vw, 770px) !important;
  height: min(48vw, 770px) !important;
  min-width: 520px;
  min-height: 520px;
  opacity: .96;
  transform: translateX(8vw);
}

.home-page .hero-orb-scene.is-custom {
  transform: translateX(0);
}

.home-page .hero-orb-scene.is-custom .yimou-iris-svg {
  display: none;
}

.home-page .yimou-iris-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 90px rgba(43, 170, 212, .25));
}

.home-page .iris-outer {
  transform-origin: 50% 50%;
  animation: yimouIrisRotate 28s linear infinite;
}

.home-page .iris-fibers {
  transform-origin: 50% 50%;
  animation: yimouIrisPulse 8s ease-in-out infinite;
}

.home-page .hero-corner {
  position: absolute;
  z-index: 3;
  top: clamp(118px, 10vh, 150px);
  right: clamp(30px, 4vw, 64px);
  color: rgba(244, 248, 255, .42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.95;
  letter-spacing: .22em;
  text-align: right;
  text-transform: uppercase;
}

.home-page .hero-corner span {
  color: var(--ym-gold-soft);
}

.home-page .hero-scroll {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 4vw, 58px);
  bottom: 26px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: rgba(244, 248, 255, .45);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .4em;
  font-size: 12px;
  text-transform: uppercase;
}

.home-page .hero-scroll-line {
  width: 1px;
  height: 32px;
  background: var(--ym-gold);
  animation: yimouScrollLine 1.8s ease-in-out infinite;
}

@keyframes yimouIrisRotate {
  to { transform: rotate(360deg); }
}

@keyframes yimouIrisPulse {
  0%, 100% { opacity: .52; transform: scale(1); }
  50% { opacity: .76; transform: scale(1.02); }
}

@keyframes yimouScrollLine {
  0%, 100% { transform: scaleY(.55); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

.home-page .section > .container,
.home-page .footer > .container {
  max-width: min(1600px, calc(100vw - 160px)) !important;
}

.home-page .yimou-positioning {
  padding: clamp(100px, 12vw, 170px) 0 clamp(86px, 9vw, 140px) !important;
  background:
    radial-gradient(circle at 72% 22%, rgba(43, 170, 212, .10), transparent 30%),
    linear-gradient(180deg, #F4F8FF 0%, var(--ym-cream) 100%) !important;
  color: var(--ym-ink);
}

.home-page .section-head {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(620px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.section-eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  border-bottom: 1px solid var(--ym-line);
  padding-bottom: 18px;
  color: var(--ym-rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.section-eyebrow-num {
  color: rgba(11, 143, 168, .38);
}

.home-page .section-title {
  margin: 0;
  color: var(--ym-ink);
  font-family: "Noto Serif SC", "Fraunces", serif !important;
  font-size: clamp(52px, 5.3vw, 100px);
  line-height: 1.05;
  letter-spacing: -.075em;
  font-weight: 500;
}

.home-page .section-title em {
  color: var(--ym-gold);
  font-style: normal;
}

.positioning-body {
  display: grid;
  grid-template-columns: minmax(430px, .86fr) minmax(620px, 1.14fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.concept-viz {
  position: relative;
  min-height: 560px;
}

.concept-viz svg {
  width: 100%;
  max-width: 620px;
  display: block;
  margin: 0 auto;
}

.orbit-label {
  position: absolute;
  padding: 14px 22px;
  border: 1px solid rgba(15, 35, 81, .14);
  background: rgba(244, 248, 255, .44);
  color: var(--ym-ink);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

.orbit-label-num {
  display: block;
  margin-bottom: 8px;
  color: var(--ym-rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .22em;
}

.orbit-label.p1 {
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-label.p2 {
  left: 5%;
  bottom: 10%;
}

.orbit-label.p3 {
  right: 3%;
  bottom: 10%;
}

.pillars-list {
  list-style: none;
  display: grid;
  margin: 0;
  padding: 0;
}

.pillar {
  display: grid;
  grid-template-columns: 88px 1fr 64px;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 4vw, 52px) 0;
  border-top: 1px solid var(--ym-line);
}

.pillar:last-child {
  border-bottom: 1px solid var(--ym-line);
}

.pillar-num {
  color: var(--ym-rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  letter-spacing: .24em;
}

.pillar-title {
  margin: 0;
  color: var(--ym-ink);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(30px, 2.4vw, 45px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.pillar-desc {
  margin: 18px 0 0;
  color: var(--ym-ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.pillar-icon {
  color: var(--ym-teal-mid);
  font-size: 46px;
  line-height: 1;
  text-align: center;
}

.positioning-quote {
  margin-top: clamp(90px, 12vw, 160px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: clamp(54px, 6vw, 80px);
  border-left: 4px solid var(--ym-gold);
  background: rgba(234, 244, 255, .72);
}

.positioning-quote p {
  margin: 0;
  color: var(--ym-ink);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.45;
  letter-spacing: -.045em;
}

.positioning-quote strong {
  background: linear-gradient(180deg, transparent 58%, rgba(43, 170, 212, .24) 0);
  font-weight: 500;
}

.positioning-link,
.science-cta-link,
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ym-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  font-weight: 600;
  text-decoration: none;
}

.home-page .yimou-science {
  padding: clamp(110px, 13vw, 180px) 0 !important;
  background:
    radial-gradient(circle at 84% 14%, rgba(43, 170, 212, .10), transparent 24%),
    linear-gradient(180deg, var(--ym-teal-deep) 0%, #061942 100%) !important;
  color: var(--ym-cream);
}

.science-head {
  display: grid;
  grid-template-columns: minmax(300px, .45fr) minmax(700px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.yimou-science .section-eyebrow {
  border-bottom-color: var(--ym-line-light);
  color: var(--ym-gold-soft);
}

.yimou-science .section-title {
  color: var(--ym-cream);
}

.science-intro {
  max-width: 820px;
  margin-top: 28px;
  color: rgba(244, 248, 255, .64);
  font-size: 18px;
  line-height: 1.95;
}

.journey {
  margin-top: clamp(84px, 10vw, 140px);
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.4vw, 42px);
}

.journey-line {
  position: absolute;
  top: 76px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 170, 212, .42), transparent);
}

.stage {
  position: relative;
  z-index: 2;
  min-height: 350px;
  padding: 26px 22px;
  border: 1px solid rgba(244, 248, 255, .12);
  background: rgba(244, 248, 255, .035);
  color: var(--ym-cream);
}

.stage-num {
  color: var(--ym-gold-soft);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .26em;
  font-size: 13px;
}

.stage-visual {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 26px 0 32px;
  border: 1px solid rgba(43, 170, 212, .32);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(43, 170, 212, .28), transparent 50%),
    repeating-linear-gradient(90deg, rgba(244, 248, 255, .06) 0 1px, transparent 1px 18px);
}

.stage-visual::before,
.stage-visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(244, 248, 255, .20);
  border-radius: inherit;
}

.stage-visual::after {
  inset: 46px;
  background: var(--ym-gold);
}

.stage-title {
  margin: 0;
  color: var(--ym-cream);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  font-weight: 500;
}

.stage-title-en {
  margin: 8px 0 18px;
  color: var(--ym-gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stage-desc {
  color: rgba(244, 248, 255, .62);
  font-size: 15px;
  line-height: 1.85;
}

.science-cta {
  margin-top: clamp(70px, 9vw, 120px);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--ym-line-light);
  padding-top: 42px;
}

.science-stats {
  display: flex;
  gap: clamp(42px, 7vw, 120px);
}

.stat-item {
  display: grid;
  gap: 6px;
}

.stat-num {
  color: var(--ym-gold);
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 4.6vw, 80px);
  line-height: 1;
}

.stat-label {
  color: rgba(244, 248, 255, .54);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
}

.yimou-science .science-cta-link {
  color: var(--ym-cream);
}

.home-page .yimou-news {
  padding: clamp(98px, 11vw, 160px) 0 !important;
  background: var(--ym-cream) !important;
}

.news-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.news-head-left {
  max-width: 820px;
}

.news-head .section-eyebrow {
  margin-bottom: 28px;
}

.home-page .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
}

.home-page .news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  border: 1px solid rgba(15, 35, 81, .10);
  border-radius: 0;
  background: rgba(255, 251, 242, .82);
  box-shadow: none;
  color: var(--ym-ink);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.home-page .news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 170, 212, .32);
  box-shadow: var(--ym-shadow);
}

.home-page .news-card-img {
  height: 270px;
  background:
    linear-gradient(135deg, rgba(244, 248, 255, .88), rgba(16, 64, 160, .90)),
    repeating-linear-gradient(90deg, rgba(244, 248, 255, .16) 0 1px, transparent 1px 34px);
}

.home-page .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88);
}

.home-page .news-card-img-placeholder {
  color: rgba(244, 248, 255, .85);
  font-family: "Noto Serif SC", serif;
  font-size: 36px;
  letter-spacing: .02em;
}

.home-page .news-card-body {
  flex: 1;
  padding: 30px 34px 34px;
}

.home-page .news-meta {
  margin-bottom: 18px;
  color: var(--ym-rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
}

.home-page .news-category {
  background: rgba(43, 170, 212, .14);
  color: var(--ym-rust);
}

.home-page .news-title {
  color: var(--ym-ink);
  font-family: "Noto Serif SC", serif;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
}

.home-page .news-summary {
  color: var(--ym-ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.home-page .news-card .news-link {
  color: var(--ym-rust);
}

.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 170, 212, .13), transparent 26%),
    linear-gradient(180deg, #0A2559 0%, #061942 100%) !important;
  color: rgba(244, 248, 255, .72) !important;
}

.footer a,
.footer h5 {
  color: rgba(244, 248, 255, .92) !important;
}

.footer a:hover {
  color: var(--ym-gold-soft) !important;
}

.footer-bottom {
  border-top-color: rgba(244, 248, 255, .14) !important;
}

.footer-qrcode {
  background: rgba(244, 248, 255, .96) !important;
  border-color: rgba(43, 170, 212, .36) !important;
}

.footer-record-link::before {
  color: var(--ym-gold-soft) !important;
}

body:not(.home-page) .page-hero,
body:not(.home-page) .subpage-hero,
body:not(.home-page) .news-list-hero,
body:not(.home-page) .news-detail-hero {
  background:
    radial-gradient(circle at 82% 40%, rgba(43, 170, 212, .16), transparent 28%),
    linear-gradient(135deg, var(--ym-teal-deep), var(--ym-teal)) !important;
  color: var(--ym-cream) !important;
}

body:not(.home-page) .section-tag,
body:not(.home-page) .page-kicker,
body:not(.home-page) .subpage-kicker {
  border-color: rgba(43, 170, 212, .42) !important;
  color: var(--ym-rust) !important;
  background: rgba(43, 170, 212, .10) !important;
}

body:not(.home-page) .page-hero .section-tag,
body:not(.home-page) .subpage-hero .section-tag {
  color: var(--ym-gold-soft) !important;
  border-color: rgba(244, 248, 255, .22) !important;
  background: rgba(244, 248, 255, .06) !important;
}

body:not(.home-page) .section-title,
body:not(.home-page) .page-title,
body:not(.home-page) h1,
body:not(.home-page) h2 {
  color: var(--ym-ink);
  font-family: "Noto Serif SC", "Fraunces", serif;
  letter-spacing: -.045em;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

body:not(.home-page) .page-hero h1,
body:not(.home-page) .subpage-hero h1,
body:not(.home-page) .news-list-hero h1,
body:not(.home-page) .news-detail-hero h1 {
  color: var(--ym-cream) !important;
}

body:not(.home-page) p,
body:not(.home-page) .section-subtitle,
body:not(.home-page) .page-subtitle {
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.pipeline-card,
.team-card,
.investor-card,
.news-list-card,
.article-card,
.contact-card,
.career-card,
.content-card,
.admin-card {
  border-color: rgba(15, 35, 81, .10) !important;
  background: rgba(255, 251, 242, .82) !important;
  box-shadow: 0 18px 60px rgba(10, 37, 89, .08) !important;
}

.pipeline-card:hover,
.team-card:hover,
.investor-card:hover,
.news-list-card:hover,
.article-card:hover {
  border-color: rgba(43, 170, 212, .32) !important;
}

.pl-code,
.news-category,
.tag,
.badge {
  background: rgba(43, 170, 212, .15) !important;
  color: var(--ym-rust) !important;
}

.stage-block.active .stage-block-fill {
  background: linear-gradient(90deg, var(--ym-teal), var(--ym-gold)) !important;
}

@media (max-width: 1200px) {
  .home-page .yimou-home-hero .hero-inner,
  .positioning-body,
  .science-head,
  .home-page .section-head {
    grid-template-columns: 1fr;
  }

  .home-page .hero-orb-scene {
    transform: none;
    min-width: 0;
    width: min(78vw, 560px) !important;
    height: min(78vw, 560px) !important;
  }

  .journey-track,
  .home-page .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-line {
    display: none;
  }
}

@media (max-width: 768px) {
  body .navbar {
    height: 74px;
  }

  .nav-container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .home-page .yimou-home-hero {
    padding: 74px 24px 0 !important;
  }

  .home-page .yimou-home-hero .hero-inner {
    display: grid !important;
    min-height: auto;
    padding: 70px 0 54px !important;
    gap: 48px;
  }

  .home-page .hero-title {
    font-size: clamp(48px, 14vw, 76px) !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .home-page .hero-subtitle {
    width: auto !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .btn {
    width: 100%;
  }

  .home-page .hero-right {
    display: flex !important;
  }

  .home-page .hero-orb-scene {
    width: min(78vw, 340px) !important;
    height: min(78vw, 340px) !important;
    min-width: 0;
    min-height: 0;
    margin: 0 auto;
  }

  .home-page .hero-corner,
  .home-page .hero-scroll {
    display: none;
  }

  .home-page .section > .container,
  .home-page .footer > .container {
    max-width: calc(100vw - 40px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-page .yimou-positioning,
  .home-page .yimou-science,
  .home-page .yimou-news {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }

  .home-page .section-title {
    font-size: clamp(40px, 11vw, 58px) !important;
  }

  .section-eyebrow {
    flex-direction: column;
    gap: 10px;
    letter-spacing: .28em;
  }

  .concept-viz {
    min-height: 440px;
  }

  .orbit-label {
    font-size: 20px;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .positioning-quote {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .positioning-quote p {
    font-size: clamp(28px, 7.8vw, 40px);
  }

  .journey-track,
  .home-page .news-grid,
  .science-stats {
    grid-template-columns: 1fr;
    display: grid;
  }

  .science-cta,
  .news-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .news-card {
    min-height: auto;
  }
}

/* ==========================================================================
   Yimou Homepage Source Layout Lock
   Keep the production navigation, but align the homepage body with the
   supplied Yimou reference: cream/teal/gold palette, editorial spacing,
   source-like hero, positioning, science journey, news and footer.
   ========================================================================== */
:root {
  --cream: #F4F8FF;
  --cream-warm: #EAF4FF;
  --cream-deep: #D7E8FF;
  --ink: #0F2351;
  --ink-soft: #425B87;
  --teal-deep: #0A2559;
  --teal: #1040A0;
  --teal-mid: #1B70BE;
  --gold: #2BAAD4;
  --gold-soft: #78D6E8;
  --gold-pale: #D8F3FA;
  --rust: #0B8FA8;
  --line: rgba(15, 35, 81, 0.12);
  --line-light: rgba(244, 248, 255, 0.15);
}

.home-page {
  background: var(--cream) !important;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Noto Sans SC", -apple-system, sans-serif;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.home-page .yimou-home-hero {
  --home-hero-edge: max(108px, calc((100vw - 1600px) / 2 + 60px));
  --home-hero-eye-right: calc(var(--home-hero-edge) - clamp(120px, 8vw, 190px));
  min-height: calc(100vh + 120px) !important;
  min-height: calc(100dvh + 120px) !important;
  height: calc(100vh + 120px) !important;
  height: calc(100dvh + 120px) !important;
  position: relative;
  display: flex !important;
  align-items: center;
  padding: 120px var(--home-hero-edge) 80px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 44%, rgba(43, 170, 212, 0.06) 0%, transparent 24%),
    radial-gradient(circle at 14% 76%, rgba(43, 170, 212, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, #0C327A 0%, #0A2559 46%, #082052 100%) !important;
  background-image:
    radial-gradient(circle at 82% 44%, rgba(43, 170, 212, 0.06) 0%, transparent 24%),
    radial-gradient(circle at 14% 76%, rgba(43, 170, 212, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, #0C327A 0%, #0A2559 46%, #082052 100%) !important;
  color: var(--cream);
}

.home-page .yimou-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .12;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .25));
}

.home-page .yimou-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 48%, rgba(6, 18, 20, 0.34) 0%, transparent 26%),
    linear-gradient(90deg, rgba(6, 18, 20, 0.10) 0%, rgba(6, 18, 20, 0.02) 22%, rgba(6, 18, 20, 0.02) 74%, rgba(6, 18, 20, 0.12) 100%);
}

.home-page .hero-iris {
  position: absolute !important;
  right: var(--home-hero-eye-right);
  top: 50%;
  width: min(76vh, 44vw) !important;
  height: min(76vh, 44vw) !important;
  max-width: 840px;
  max-height: 840px;
  min-width: 0 !important;
  min-height: 0 !important;
  opacity: .85;
  pointer-events: none;
  transform: translateY(-50%) !important;
}

.home-page .hero-iris svg,
.home-page .yimou-iris-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
}

.home-page .hero-iris.is-custom {
  right: var(--home-hero-eye-right);
  width: min(42vw, 760px) !important;
  height: min(42vw, 760px) !important;
}

.home-page .hero-iris.is-custom .yimou-iris-svg {
  display: none;
}

.home-page .hero-custom-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.home-page .hero-custom-visual[hidden] {
  display: none !important;
}

.home-page .hero-custom-visual-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--hero-visual-radius, 28px);
  overflow: hidden;
  transform: scale(var(--hero-visual-scale, 1));
  background: transparent;
}

.home-page .hero-custom-visual img {
  width: 100%;
  height: 100%;
}

.home-page .iris-outer {
  animation: slowPulse 8s ease-in-out infinite !important;
  transform-origin: center;
  transform-box: fill-box;
}

.home-page .iris-fibers {
  animation: slowRotate 120s linear infinite !important;
  transform-origin: 400px 400px;
}

.home-page .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(860px, calc(100vw - 96px));
  max-width: 860px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0;
}

.home-page .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  color: var(--gold-soft);
  font-family: "IBM Plex Sans", -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s .3s forwards;
}

.home-page .hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold-soft);
}

.home-page .hero-eyebrow-num {
  margin-left: auto;
  color: rgba(244, 248, 255, .4);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.home-page .hero-title {
  width: 100%;
  max-width: 860px !important;
  margin: 0 0 40px !important;
  color: var(--cream) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: clamp(48px, 7.5vw, 108px) !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: .02em !important;
  text-wrap: balance;
  writing-mode: horizontal-tb !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.home-page .hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s forwards;
}

.home-page .hero-title-line:nth-child(1) {
  animation-delay: .5s;
}

.home-page .hero-title-line:nth-child(2) {
  animation-delay: .75s;
}

.home-page .hero-title .hero-hl {
  color: var(--gold) !important;
}

body[data-lang="en"].home-page .hero-title {
  max-width: 1040px !important;
  font-family: "Fraunces", "IBM Plex Sans", Georgia, serif !important;
  font-size: clamp(46px, 6.2vw, 94px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

body[data-lang="en"].home-page .hero-title-line {
  white-space: nowrap;
}

@media (max-width: 768px) {
  body[data-lang="en"].home-page .hero-title {
    max-width: 100% !important;
    font-size: clamp(34px, 9.4vw, 48px) !important;
  }

  body[data-lang="en"].home-page .hero-title-line {
    white-space: normal;
  }
}

.home-page .hero-sub {
  width: 100%;
  max-width: 720px !important;
  margin: 0 0 64px !important;
  color: rgba(244, 248, 255, .75) !important;
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 300;
  line-height: 1.8 !important;
  letter-spacing: 0;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: auto !important;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin: 0 !important;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.home-page .btn-primary,
.home-page .btn-ghost {
  min-width: 0;
  height: auto;
  border-radius: 2px !important;
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  text-decoration: none;
  transition: all .3s;
}

.home-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 0 !important;
  background: var(--gold) !important;
  color: var(--teal-deep) !important;
}

.home-page .btn-primary:hover {
  background: var(--cream) !important;
  transform: translateY(-2px);
}

.home-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border: 0 !important;
  border-bottom: 1px solid rgba(244, 248, 255, .3) !important;
  background: transparent !important;
  color: var(--cream) !important;
}

.home-page .btn-ghost:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.home-page .hero-corner {
  position: absolute;
  top: 120px;
  right: var(--home-hero-edge);
  z-index: 3;
  color: rgba(244, 248, 255, .4);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: .15em;
  text-align: right;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
}

.home-page .hero-corner-label {
  color: var(--gold-soft);
}

.home-page .hero-scroll {
  position: absolute;
  left: var(--home-hero-edge);
  bottom: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 248, 255, .5);
  font-family: "IBM Plex Sans", -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}

.home-page .hero-scroll-line {
  position: relative;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(244, 248, 255, .3);
  animation: none;
}

.home-page .hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--gold);
  animation: scrollDown 2.5s ease-in-out infinite;
}

.home-page .section > .container,
.home-page .yimou-positioning > .container,
.home-page .yimou-science > .container,
.home-page .yimou-news > .container {
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
}

.home-page .yimou-positioning {
  position: relative;
  overflow: hidden;
  padding: 160px 48px 180px !important;
  background: var(--cream) !important;
}

.home-page .section-head {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 80px !important;
  align-items: end !important;
  max-width: 1400px !important;
  margin: 0 auto 100px !important;
}

.home-page .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--rust);
  font-family: "IBM Plex Sans", -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.home-page .section-eyebrow-num {
  margin-left: auto;
  color: rgba(15, 35, 81, .5);
  font-family: "IBM Plex Mono", monospace;
}

.home-page .section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: clamp(36px, 4.5vw, 64px) !important;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .01em;
}

.home-page .section-title em {
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.home-page .positioning-body {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.home-page .concept-viz {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 0;
  aspect-ratio: 1;
  margin: 0 auto;
}

.home-page .concept-viz svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.home-page .orbit-label {
  position: absolute;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--teal-deep);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .08em;
  backdrop-filter: none;
}

.home-page .orbit-label-num {
  display: block;
  margin-bottom: 4px;
  color: var(--rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
}

.home-page .orbit-label.p1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.home-page .orbit-label.p2 {
  bottom: 8%;
  left: -4%;
}

.home-page .orbit-label.p3 {
  right: -4%;
  bottom: 8%;
}

.home-page .pillars-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-page .pillar {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  transition: all .4s;
}

.home-page .pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.home-page .pillar:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--cream-warm) 0%, transparent 60%);
}

.home-page .pillar-num {
  padding-top: 8px;
  color: var(--rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .2em;
}

.home-page .pillar-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 28px !important;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
}

.home-page .pillar-desc {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.home-page .pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-mid);
  transition: transform .4s, color .4s;
}

.home-page .pillar:hover .pillar-icon {
  color: var(--gold);
  transform: rotate(45deg);
}

.home-page .positioning-quote {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 60px;
  border-left: 3px solid var(--gold);
  background: var(--cream-warm);
}

.home-page .positioning-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .02em;
}

.home-page .positioning-quote strong {
  padding: 0 2px;
  color: var(--teal-deep);
  background: linear-gradient(180deg, transparent 60%, var(--gold-pale) 60%);
  font-weight: 600;
}

.home-page .positioning-link {
  justify-self: end;
  white-space: nowrap;
}

.home-page .yimou-science {
  position: relative;
  overflow: hidden;
  padding: 160px 0 180px !important;
  background: var(--teal-deep) !important;
  color: var(--cream);
}

.home-page .yimou-science::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 248, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 248, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.home-page .science-head {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 80px !important;
  align-items: end !important;
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 48px;
}

.home-page .yimou-science .section-eyebrow {
  color: var(--gold-soft);
  border-color: var(--line-light);
}

.home-page .yimou-science .section-title {
  color: var(--cream);
}

.home-page .science-intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(244, 248, 255, .7);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.home-page .journey {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-page .journey-track {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px;
}

.home-page .journey-line {
  position: absolute;
  top: 94px;
  left: 10%;
  right: 10%;
  z-index: 0;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 10%, var(--gold-soft) 90%, transparent);
  opacity: .4;
}

.home-page .journey-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 20%;
  height: 5px;
  border-radius: 10px;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  animation: moveAlong 6s linear infinite;
}

.home-page .stage {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
}

.home-page .stage-num {
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .3em;
}

.home-page .stage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: var(--teal-deep);
  transition: all .4s;
}

.home-page .stage:hover .stage-visual {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(43, 170, 212, .3);
  transform: translateY(-4px);
}

.home-page .stage-visual::before,
.home-page .stage-visual::after {
  content: none !important;
}

.home-page .stage-visual svg {
  width: 70px;
  height: 70px;
  color: var(--gold);
}

.home-page .stage-connector {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  transform: translate(50%, -50%);
}

.home-page .stage:last-child .stage-connector {
  display: none;
}

.home-page .stage-title {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.home-page .stage-title-en {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: none;
}

.home-page .stage-desc {
  max-width: 200px;
  margin: 0 auto;
  color: rgba(244, 248, 255, .65);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.home-page .science-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 48px 48px 0;
  border-top: 1px solid var(--line-light);
}

.home-page .science-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.home-page .stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-page .stat-num {
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.home-page .stat-num sup {
  font-size: 18px;
  vertical-align: super;
}

.home-page .stat-label {
  color: rgba(244, 248, 255, .55);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: .15em;
}

.home-page .science-cta-link {
  color: var(--cream);
  border-color: var(--gold);
}

.home-page .yimou-news {
  padding: 160px 48px 140px !important;
  background: var(--cream) !important;
}

.home-page .news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.home-page .news-head-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 300px;
}

.home-page .news-head .section-eyebrow {
  margin: 0;
}

.home-page .news-head .section-subtitle {
  display: none;
}

.home-page .news-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr !important;
  grid-template-rows: auto auto;
  gap: 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.home-page .news-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
  text-decoration: none;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

.home-page .news-card:hover {
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(-6px);
}

.home-page .news-card.featured {
  grid-row: span 2;
}

.home-page .news-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  background: var(--teal-mid);
}

.home-page .news-card.featured .news-card-media {
  aspect-ratio: 4 / 5;
}

.home-page .news-card-media img,
.home-page .news-card-media svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.home-page .news-card:hover .news-card-media img,
.home-page .news-card:hover .news-card-media svg {
  transform: scale(1.04);
}

.home-page .news-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--rust);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .15em;
}

.home-page .news-card-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .01em;
}

.home-page .news-card.featured .news-card-title {
  font-size: 30px;
}

.home-page .news-card-excerpt {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.home-page .news-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--teal-deep);
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  opacity: 0;
  transition: opacity .3s;
}

.home-page .news-card:hover .news-card-arrow {
  opacity: 1;
}

.home-page .positioning-link,
.home-page .science-cta-link,
.home-page .news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--teal-deep);
  background: transparent !important;
  font-family: "Noto Sans SC", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s;
}

.home-page .positioning-link:hover,
.home-page .news-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.home-page .footer {
  position: relative;
  padding: 120px 48px 40px !important;
  background: var(--teal-deep) !important;
  color: var(--cream) !important;
}

.home-page .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-light), transparent);
}

.home-page .footer > .container {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 !important;
}

.home-page .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
}

.home-page .footer-logo-img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.home-page .footer-desc {
  max-width: 420px;
  color: rgba(244, 248, 255, .7);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 16px;
  line-height: 1.8;
}

.home-page .footer-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-page .footer-links h5 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-light);
  color: var(--gold-soft) !important;
  font-family: "IBM Plex Sans", -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
}

.home-page .footer-links a,
.home-page .footer-contact p {
  color: rgba(244, 248, 255, .7) !important;
  font-size: 14px;
  line-height: 1.8;
}

.home-page .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 248, 255, .4);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
}

.home-page .footer-qrcode {
  width: 116px;
  height: 116px;
  border: 0 !important;
  border-radius: 8px;
  background: rgba(244, 248, 255, .95) !important;
}

@keyframes slowPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDown {
  0% { top: -40px; }
  60%, 100% { top: 40px; }
}

@keyframes moveAlong {
  from { left: -20%; }
  to { left: 100%; }
}

@media (max-width: 1100px) {
  .home-page .section-head,
  .home-page .science-head,
  .home-page .positioning-body {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .home-page .positioning-body {
    gap: 60px !important;
  }

  .home-page .journey-track {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 48px 24px;
  }

  .home-page .journey-line,
  .home-page .stage-connector {
    display: none;
  }

  .home-page .news-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .home-page .news-card.featured {
    grid-row: span 1;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .home-page .yimou-home-hero,
  .home-page .yimou-positioning,
  .home-page .yimou-news,
  .home-page .footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .home-page .science-head,
  .home-page .journey,
  .home-page .science-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-page .yimou-home-hero {
    padding-top: 108px !important;
    padding-bottom: 58px !important;
  }

  .home-page .hero-iris {
    position: relative !important;
    top: auto;
    right: auto;
    order: 2;
    width: min(88vw, 420px) !important;
    height: min(88vw, 420px) !important;
    margin: 40px auto 0;
    opacity: .72;
    transform: none !important;
  }

  .home-page .hero-content {
    width: 100%;
    max-width: none;
  }

  .home-page .hero-title {
    font-size: clamp(42px, 14vw, 68px) !important;
  }

  .home-page .hero-eyebrow {
    letter-spacing: .22em;
  }

  .home-page .hero-eyebrow-num,
  .home-page .hero-corner,
  .home-page .hero-scroll {
    display: none;
  }

  .home-page .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-page .btn-primary,
  .home-page .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .home-page .section-title {
    font-size: clamp(36px, 11vw, 58px) !important;
  }

  .home-page .section-eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    letter-spacing: .26em;
  }

  .home-page .section-eyebrow-num {
    margin-left: 0;
  }

  .home-page .concept-viz {
    max-width: 100%;
  }

  .home-page .orbit-label {
    font-size: 16px;
    padding: 8px 12px;
  }

  .home-page .orbit-label.p2 {
    left: -2%;
  }

  .home-page .orbit-label.p3 {
    right: -2%;
  }

  .home-page .pillar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .positioning-quote {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .home-page .positioning-link {
    justify-self: start;
  }

  .home-page .journey-track {
    grid-template-columns: 1fr !important;
  }

  .home-page .science-stats {
    gap: 32px;
  }

  .home-page .science-cta,
  .home-page .news-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .news-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── 2026 unified site footer: secondary and detail pages match homepage ─── */
.footer {
  position: relative !important;
  padding: 120px 48px 40px !important;
  background: var(--teal-deep, #10262a) !important;
  color: var(--cream, #F4F8FF) !important;
  border-top: 0 !important;
}

.footer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 48px !important;
  right: 48px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--line-light, rgba(244, 248, 255, .16)), transparent) !important;
}

.footer > .container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 60px !important;
  margin-bottom: 100px !important;
}

.footer-brand {
  max-width: 420px !important;
}

.footer-brand::before {
  display: none !important;
}

.footer-logo-img {
  width: 190px !important;
  height: auto !important;
  margin-bottom: 24px !important;
  filter: brightness(0) invert(1) !important;
}

.footer-desc {
  max-width: 420px !important;
  color: rgba(244, 248, 255, .7) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.footer-panel {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-links h5 {
  margin: 0 0 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--line-light, rgba(244, 248, 255, .16)) !important;
  color: var(--gold-soft, #e2bb75) !important;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Noto Sans SC", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .3em !important;
  text-transform: uppercase !important;
}

.footer-links ul {
  gap: 8px !important;
}

.footer-links a,
.footer-links li,
.social-label {
  color: rgba(244, 248, 255, .7) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

.footer-links a:hover {
  color: var(--gold, #2BAAD4) !important;
}

.footer-bottom {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  padding-top: 32px !important;
  border-top: 1px solid var(--line-light, rgba(244, 248, 255, .16)) !important;
  color: rgba(244, 248, 255, .4) !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
}

.footer-bottom p,
.footer-record-link {
  color: rgba(244, 248, 255, .48) !important;
  font-size: 11px !important;
}

.footer-records {
  justify-content: flex-end !important;
}

.footer-qrcode {
  width: 116px !important;
  height: 116px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: rgba(244, 248, 255, .95) !important;
  box-shadow: none !important;
}

.footer-qrcode.empty {
  background: rgba(244, 248, 255, .08) !important;
  border: 1px dashed rgba(244, 248, 255, .24) !important;
}

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

@media (max-width: 700px) {
  .footer {
    padding: 84px 24px 32px !important;
  }

  .footer::before {
    left: 24px !important;
    right: 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    margin-bottom: 56px !important;
  }

  .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

/* ─── 2026 final site rail: header, footer and standalone pages align ───── */
body {
  --site-rail: min(1784px, calc(100vw - 96px));
  --site-gutter: max(48px, calc((100vw - var(--site-rail)) / 2));
}

.nav-container,
.footer > .container,
.team-detail-page .team-hero-content,
.team-detail-page .team-detail-main > .container,
.pipeline-detail-page .pl-hero-content,
.pipeline-detail-page .pl-main > .container {
  width: var(--site-rail) !important;
  max-width: var(--site-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer::before {
  left: var(--site-gutter) !important;
  right: var(--site-gutter) !important;
}

.footer-grid {
  grid-template-columns: minmax(360px, 1.65fr) repeat(3, minmax(180px, .8fr)) !important;
  column-gap: clamp(48px, 5vw, 92px) !important;
}

@media (max-width: 1100px) {
  body {
    --site-rail: calc(100vw - 56px);
    --site-gutter: 28px;
  }
}

@media (max-width: 700px) {
  body {
    --site-rail: calc(100vw - 40px);
    --site-gutter: 20px;
  }

  .nav-container,
  .footer > .container,
  .team-detail-page .team-hero-content,
  .team-detail-page .team-detail-main > .container,
  .pipeline-detail-page .pl-hero-content,
  .pipeline-detail-page .pl-main > .container {
    width: var(--site-rail) !important;
    max-width: var(--site-rail) !important;
  }
}

/* ─── 2026 final homepage science rendering pass ────────────────────────── */
.home-page .yimou-science {
  padding: clamp(104px, 9vw, 136px) 0 clamp(112px, 9vw, 144px) !important;
}

.home-page .science-head,
.home-page .journey,
.home-page .science-cta {
  width: var(--site-rail) !important;
  max-width: var(--site-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-page .science-head {
  grid-template-columns: minmax(320px, .44fr) minmax(0, .9fr) !important;
  gap: clamp(56px, 6vw, 96px) !important;
  margin-bottom: clamp(70px, 7vw, 96px) !important;
}

.home-page .journey-track {
  gap: clamp(20px, 2.4vw, 40px) !important;
  align-items: start !important;
}

.home-page .journey-line {
  top: 86px !important;
  left: 8% !important;
  right: 8% !important;
}

.home-page .stage-num {
  margin-bottom: 18px !important;
}

.home-page .stage-visual {
  width: clamp(112px, 7vw, 132px) !important;
  height: clamp(112px, 7vw, 132px) !important;
  margin-bottom: 26px !important;
}

.home-page .stage-visual svg {
  width: 58% !important;
  height: 58% !important;
}

.home-page .stage-title {
  font-size: clamp(18px, 1.35vw, 22px) !important;
  margin-bottom: 8px !important;
}

.home-page .stage-title-en {
  margin-bottom: 14px !important;
}

.home-page .stage-desc {
  max-width: 190px !important;
  font-size: 12px !important;
  line-height: 1.72 !important;
}

.home-page .science-cta {
  margin-top: clamp(72px, 6.4vw, 92px) !important;
  padding-top: clamp(36px, 4vw, 48px) !important;
  border-top-color: rgba(244, 248, 255, .16) !important;
}

.home-page .science-stats {
  gap: clamp(56px, 6vw, 108px) !important;
}

.home-page .science-cta-link {
  color: var(--cream) !important;
  border-color: rgba(120, 214, 232, .78) !important;
  opacity: .94 !important;
}

.home-page .science-cta-link:hover {
  color: var(--gold-soft) !important;
  border-color: var(--gold-soft) !important;
}

@media (max-width: 1100px) {
  .home-page .science-head {
    grid-template-columns: 1fr !important;
  }

  .home-page .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .journey-line {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .home-page .yimou-science {
    padding: 84px 0 96px !important;
  }

  .home-page .journey-track,
  .home-page .science-stats {
    grid-template-columns: 1fr !important;
  }

  .home-page .science-cta {
    align-items: flex-start !important;
  }
}

/* Final homepage rail alignment: match header, subpages and detail pages. */
.home-page {
  --home-hero-edge: var(--site-gutter) !important;
  --home-hero-eye-right: calc(var(--site-gutter) - clamp(120px, 8vw, 190px)) !important;
}

.home-page .yimou-home-hero {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}

.home-page .hero-corner {
  right: var(--site-gutter) !important;
}

.home-page .hero-scroll {
  left: var(--site-gutter) !important;
}

.home-page .yimou-positioning,
.home-page .yimou-news,
.home-page .footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-page .yimou-positioning > .container,
.home-page .yimou-news > .container,
.home-page .footer > .container {
  width: var(--site-rail) !important;
  max-width: var(--site-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-page .section-head,
.home-page .positioning-body,
.home-page .positioning-quote,
.home-page .news-head,
.home-page .news-grid {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-page .footer::before {
  left: var(--site-gutter) !important;
  right: var(--site-gutter) !important;
}

.home-page .yimou-science::after {
  content: none !important;
  display: none !important;
}

/* Final science copy rhythm: controlled title breaks and unified type/color. */
.home-page .home-science-title {
  max-width: 1040px !important;
  color: var(--cream) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: clamp(44px, 4.6vw, 76px) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  text-wrap: normal !important;
  word-break: keep-all !important;
}

.home-page .home-science-title-line {
  display: block;
  white-space: nowrap;
}

.home-page .home-science-title em {
  color: var(--gold) !important;
  font-family: "Fraunces", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.home-page .science-intro {
  max-width: 760px !important;
  color: rgba(244, 248, 255, .68) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.9 !important;
}

.home-page .stage-title {
  color: var(--cream) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.home-page .stage-title-en {
  color: var(--gold-soft) !important;
  font-family: "Fraunces", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: .04em !important;
}

.home-page .stage-desc {
  color: rgba(244, 248, 255, .66) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.home-page .stat-label {
  color: rgba(244, 248, 255, .62) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .home-page .home-science-title-line {
    white-space: normal;
  }
}

/* Final news layout repair: landscape media and compact secondary cards. */
.home-page .news-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) !important;
  gap: clamp(30px, 3.8vw, 56px) clamp(34px, 4vw, 64px) !important;
  align-items: start !important;
}

.home-page .news-card {
  min-height: auto !important;
  overflow: visible !important;
}

.home-page .news-card.featured {
  grid-row: span 4 !important;
}

.home-page .news-card-media {
  aspect-ratio: 16 / 9 !important;
  max-height: clamp(300px, 28vw, 440px) !important;
  margin-bottom: 22px !important;
  background: var(--teal-mid) !important;
}

.home-page .news-card.featured .news-card-media {
  aspect-ratio: 16 / 9 !important;
  max-height: clamp(320px, 30vw, 460px) !important;
}

.home-page .news-card-media img,
.home-page .news-card-media svg {
  object-fit: cover !important;
  object-position: center !important;
}

.home-page .news-card:not(.featured) {
  display: grid !important;
  grid-template-columns: minmax(168px, 38%) minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto 1fr !important;
  column-gap: 24px !important;
  row-gap: 0 !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid var(--line) !important;
}

.home-page .news-card:not(.featured) .news-card-media {
  grid-column: 1 !important;
  grid-row: 1 / span 4 !important;
  aspect-ratio: 4 / 3 !important;
  max-height: none !important;
  margin-bottom: 0 !important;
}

.home-page .news-card:not(.featured) .news-card-meta,
.home-page .news-card:not(.featured) .news-card-title,
.home-page .news-card:not(.featured) .news-card-excerpt,
.home-page .news-card:not(.featured) .news-card-arrow {
  grid-column: 2 !important;
}

.home-page .news-card:not(.featured) .news-card-meta {
  margin-bottom: 10px !important;
  padding-bottom: 8px !important;
}

.home-page .news-card:not(.featured) .news-card-title {
  font-size: clamp(20px, 1.45vw, 25px) !important;
  line-height: 1.45 !important;
}

.home-page .news-card:not(.featured) .news-card-excerpt {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .home-page .news-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured {
    grid-row: auto !important;
  }
}

@media (max-width: 700px) {
  .home-page .news-card:not(.featured) {
    display: flex !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .home-page .news-card:not(.featured) .news-card-media {
    aspect-ratio: 16 / 9 !important;
    margin-bottom: 22px !important;
  }
}

/* News layout v2: feature story across the rail, no empty left column. */
.home-page .news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(34px, 3.4vw, 54px) clamp(28px, 2.4vw, 42px) !important;
}

.home-page .news-card.featured {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
  grid-template-rows: auto auto auto 1fr !important;
  column-gap: clamp(38px, 4.2vw, 72px) !important;
  align-items: start !important;
  padding-bottom: clamp(36px, 3vw, 50px) !important;
  border-bottom: 1px solid var(--line) !important;
}

.home-page .news-card.featured .news-card-media {
  grid-column: 1 !important;
  grid-row: 1 / span 4 !important;
  aspect-ratio: 16 / 9 !important;
  max-height: clamp(360px, 30vw, 520px) !important;
  margin-bottom: 0 !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: 2 !important;
}

.home-page .news-card.featured .news-card-meta {
  margin-top: 4px !important;
}

.home-page .news-card.featured .news-card-title {
  max-width: 760px !important;
  font-size: clamp(30px, 2.4vw, 42px) !important;
  line-height: 1.35 !important;
}

.home-page .news-card.featured .news-card-excerpt {
  max-width: 660px !important;
  font-size: 16px !important;
}

.home-page .news-card:not(.featured) {
  display: flex !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  column-gap: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.home-page .news-card:not(.featured) .news-card-media {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: 16 / 10 !important;
  max-height: none !important;
  margin-bottom: 18px !important;
}

.home-page .news-card:not(.featured) .news-card-meta,
.home-page .news-card:not(.featured) .news-card-title,
.home-page .news-card:not(.featured) .news-card-excerpt,
.home-page .news-card:not(.featured) .news-card-arrow {
  grid-column: auto !important;
}

.home-page .news-card:not(.featured) .news-card-title {
  font-size: clamp(20px, 1.35vw, 26px) !important;
}

@media (max-width: 1100px) {
  .home-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .news-card.featured {
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured .news-card-media,
  .home-page .news-card.featured .news-card-meta,
  .home-page .news-card.featured .news-card-title,
  .home-page .news-card.featured .news-card-excerpt,
  .home-page .news-card.featured .news-card-arrow {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-page .news-card.featured .news-card-media {
    margin-bottom: 22px !important;
  }
}

@media (max-width: 700px) {
  .home-page .news-grid {
    grid-template-columns: 1fr !important;
  }
}

/* News layout v3: full-width feature banner, then balanced cards. */
.home-page .news-card.featured {
  display: flex !important;
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  padding-bottom: clamp(34px, 3vw, 48px) !important;
  border-bottom: 1px solid var(--line) !important;
}

.home-page .news-card.featured .news-card-media {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  height: clamp(340px, 25vw, 460px) !important;
  aspect-ratio: auto !important;
  max-height: none !important;
  margin-bottom: 22px !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: auto !important;
  grid-row: auto !important;
}

.home-page .news-card.featured .news-card-title {
  max-width: 980px !important;
  font-size: clamp(30px, 2.3vw, 42px) !important;
}

.home-page .news-card.featured .news-card-excerpt {
  max-width: 820px !important;
}

/* News layout v5: return to the original mosaic, with safer media sizing. */
.home-page .news-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-auto-flow: row dense !important;
  gap: clamp(32px, 3.2vw, 52px) clamp(28px, 2.4vw, 42px) !important;
  align-items: start !important;
}

.home-page .news-card,
.home-page .news-card.featured,
.home-page .news-card:not(.featured) {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  column-gap: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  min-height: auto !important;
}

.home-page .news-card.featured {
  grid-column: auto !important;
  grid-row: span 2 !important;
}

.home-page .news-card-media,
.home-page .news-card.featured .news-card-media,
.home-page .news-card:not(.featured) .news-card-media {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 22px !important;
  object-fit: cover !important;
}

.home-page .news-card-media,
.home-page .news-card:not(.featured) .news-card-media {
  aspect-ratio: 16 / 10 !important;
  max-height: clamp(220px, 18vw, 320px) !important;
}

.home-page .news-card.featured .news-card-media {
  aspect-ratio: 4 / 3 !important;
  max-height: clamp(360px, 30vw, 520px) !important;
}

.home-page .news-card.featured .news-card-title {
  max-width: none !important;
  font-size: clamp(28px, 2vw, 36px) !important;
  line-height: 1.38 !important;
}

.home-page .news-card.featured .news-card-excerpt {
  max-width: 760px !important;
}

.home-page .news-card:not(.featured) .news-card-title {
  font-size: clamp(20px, 1.35vw, 25px) !important;
  line-height: 1.45 !important;
}

@media (max-width: 1100px) {
  .home-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .news-card.featured {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .home-page .news-card.featured .news-card-media {
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 700px) {
  .home-page .news-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured {
    grid-column: auto !important;
  }
}

body:not(.home-page) .navbar .logo-img,
body:not(.home-page) .navbar:not(.scrolled) .logo-img.default-logo,
body:not(.home-page) .navbar .logo-img:not(.default-logo) {
  filter: none !important;
}

.home-page .hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0A2559;
}

.home-page .hero-bg-media[hidden] {
  display: none !important;
}

.home-page .hero-bg-media video,
.home-page .hero-bg-media img,
.home-page .hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--hero-bg-media-fit, cover);
  object-position: center center;
  opacity: var(--hero-bg-media-opacity, 1);
  filter: saturate(1.04) contrast(1.04);
}

.home-page .hero-bg-media img[hidden],
.home-page .hero-bg-media video[hidden],
.home-page .hero-bg-canvas[hidden] {
  display: none !important;
}

.home-page .hero-bg-scrim {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 18, 54, .82) 0%, rgba(5, 18, 54, .58) 42%, rgba(5, 18, 54, .32) 100%),
    linear-gradient(180deg, rgba(5, 18, 54, .50) 0%, rgba(5, 18, 54, .16) 42%, rgba(5, 18, 54, .28) 100%);
  opacity: var(--hero-bg-overlay-opacity, .42);
}

.home-page .yimou-home-hero.has-bg-media {
  min-height: calc(100vh + 64px) !important;
  min-height: calc(100dvh + 64px) !important;
  height: calc(100vh + 64px) !important;
  height: calc(100dvh + 64px) !important;
  padding-bottom: 0 !important;
  background: #0A2559 !important;
  background-image: none !important;
}

.home-page .yimou-home-hero.has-bg-media .hero-bg-scrim {
  display: block;
}

.home-page .yimou-home-hero.has-bg-media::before {
  z-index: 2;
  opacity: .12;
}

.home-page .yimou-home-hero.has-bg-media::after {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 42%, rgba(43, 170, 212, .14), transparent 28%),
    linear-gradient(90deg, rgba(5, 18, 54, .30), transparent 62%, rgba(5, 18, 54, .20));
}

.home-page .yimou-home-hero.has-bg-media .hero-iris {
  opacity: 0;
  visibility: hidden;
}

.home-page .yimou-home-hero.has-bg-media .hero-content,
.home-page .yimou-home-hero.has-bg-media .hero-corner,
.home-page .yimou-home-hero.has-bg-media .hero-scroll {
  z-index: 5;
}

/* Video hero polish: crop uploaded letterbox videos and return the nav to the logo palette. */
body.home-page .navbar {
  background:
    linear-gradient(180deg, rgba(5, 18, 54, .96) 0%, rgba(10, 37, 89, .90) 100%) !important;
  border-bottom: 1px solid rgba(43, 170, 212, .24) !important;
  box-shadow: 0 10px 34px rgba(2, 9, 45, .22) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
}

body.home-page .navbar .nav-link,
body.home-page .navbar .nav-link:visited,
body.home-page .navbar .nav-link.nav-contact-btn {
  color: rgba(244, 248, 255, .92) !important;
}

body.home-page .navbar .nav-link:hover,
body.home-page .navbar .nav-link.active,
body.home-page .navbar .nav-link.nav-contact-btn:hover {
  color: #78D6E8 !important;
  background: rgba(43, 170, 212, .10) !important;
}

body.home-page .navbar .nav-search-trigger {
  color: rgba(244, 248, 255, .92) !important;
}

body.home-page .navbar .nav-search-trigger:hover {
  color: #78D6E8 !important;
}

body.home-page .navbar .lang-switcher {
  background: rgba(244, 248, 255, .08) !important;
  border-color: rgba(43, 170, 212, .30) !important;
  box-shadow: inset 0 0 0 1px rgba(244, 248, 255, .04) !important;
}

body.home-page .navbar .lang-switch-btn {
  color: rgba(244, 248, 255, .76) !important;
}

body.home-page .navbar .lang-switch-btn.active,
body.home-page .navbar .lang-switch-btn.is-active {
  background: #2BAAD4 !important;
  color: #061942 !important;
  box-shadow: 0 0 18px rgba(43, 170, 212, .32) !important;
}

.home-page .hero-bg-media video {
  transform: translateY(var(--hero-bg-video-y, -2%)) scale(var(--hero-bg-video-scale, 1.20));
  transform-origin: center center;
}

/* 2026 type scale tuning: smaller, heavier display type across the home page. */
.home-page .hero-title {
  max-width: 790px !important;
  margin-bottom: 32px !important;
  font-size: 88px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.home-page .hero-title .hero-hl {
  font-weight: 700 !important;
}

.home-page .hero-sub {
  max-width: 650px !important;
  margin-bottom: 52px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.9 !important;
}

.home-page .hero-eyebrow {
  margin-bottom: 26px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.home-page .btn-primary,
.home-page .btn-ghost {
  font-size: 13px !important;
  font-weight: 700 !important;
}

.home-page .section-title,
.home-page .home-science-title {
  max-width: 900px !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.home-page .section-title em,
.home-page .home-science-title em {
  color: var(--gold) !important;
  display: inline !important;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif !important;
  font-size: 1em !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: inherit !important;
  letter-spacing: 0 !important;
  vertical-align: baseline !important;
}

.home-page .pillar-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
}

.home-page .positioning-quote p {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.58 !important;
  letter-spacing: 0 !important;
}

.home-page .stage-title {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.home-page .news-card.featured .news-card-title {
  font-size: 34px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.home-page .news-card:not(.featured) .news-card-title {
  font-size: 23px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 1400px) {
  .home-page .hero-title {
    max-width: 700px !important;
    font-size: 76px !important;
  }

  .home-page .section-title,
  .home-page .home-science-title {
    font-size: 48px !important;
  }
}

@media (max-width: 900px) {
  .home-page .hero-title {
    max-width: 620px !important;
    font-size: 58px !important;
  }

  .home-page .section-title,
  .home-page .home-science-title {
    font-size: 42px !important;
  }
}

@media (max-width: 700px) {
  .home-page .hero-title {
    font-size: 42px !important;
    line-height: 1.18 !important;
  }

  .home-page .hero-sub {
    font-size: 14px !important;
  }

  .home-page .section-title,
  .home-page .home-science-title {
    font-size: 34px !important;
  }

  .home-page .pillar-title {
    font-size: 21px !important;
  }

  .home-page .positioning-quote p {
    font-size: 24px !important;
  }
}

/* Desktop readability pass: lift reading text, keep legal/footer microcopy restrained. */
@media (min-width: 901px) {
  body.home-page .hero-sub,
  body.home-page .hero-subtitle,
  body.home-page .positioning-body,
  body.home-page .btn-primary,
  body.home-page .btn-ghost {
    font-size: 18px !important;
  }

  body .nav-link,
  body .nav-link span,
  body .lang-switch-btn,
  body .nav-search-shell,
  body .btn-primary,
  body .btn-ghost,
  body .hero-sub,
  body .section-subtitle,
  body .pillar-text,
  body .stage-desc,
  body .stage-title-en,
  body .stat-label,
  body .news-card-excerpt,
  body .news-card-meta {
    font-size: 18px !important;
  }

  body .hero-corner,
  body .hero-corner-label,
  body .hero-eyebrow,
  body .hero-eyebrow span,
  body .hero-eyebrow-num,
  body .hero-scroll span,
  body .section-eyebrow span,
  body .section-eyebrow-num,
  body .orbit-label-num,
  body .orbit-card span,
  body .stage-num,
  body .news-tag,
  body .news-date {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }

  body .hero-eyebrow,
  body .section-eyebrow span,
  body .section-eyebrow-num {
    letter-spacing: 0.18em !important;
  }

  body .footer-desc {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  body .footer-links h5 {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  body .footer-links a,
  body .footer-links li,
  body .social-label {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  body .footer-bottom p,
  body .footer-record-link,
  body #footer-copyright,
  body #footer-icp,
  body #footer-police {
    font-size: 14px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.04em !important;
  }
}

/* Balanced correction after the 18px pass: only reading text grows, UI labels stay refined. */
@media (min-width: 901px) {
  body .nav-link,
  body .nav-link span {
    font-size: 16px !important;
  }

  body .lang-switch-btn {
    font-size: 12px !important;
  }

  body.home-page .hero-sub,
  body.home-page .hero-subtitle,
  body .hero-sub,
  body .section-subtitle,
  body .pillar-text,
  body .stage-desc,
  body .news-card-excerpt,
  body .news-card-meta {
    font-size: 16px !important;
  }

  body.home-page .btn-primary,
  body.home-page .btn-ghost,
  body .btn-primary,
  body .btn-ghost {
    font-size: 14px !important;
  }

  body .hero-corner,
  body .hero-corner-label,
  body .hero-eyebrow,
  body .hero-eyebrow span,
  body .hero-eyebrow-num,
  body .hero-scroll span,
  body .section-eyebrow span,
  body .section-eyebrow-num,
  body .orbit-label-num,
  body .orbit-card span,
  body .stage-num,
  body .news-tag,
  body .news-date,
  body .stage-title-en,
  body .stat-label {
    font-size: 12px !important;
    line-height: 1.65 !important;
  }
}

/* Homepage news final layout: one horizontal lead story, three covered briefs. */
.home-page .yimou-news {
  background:
    radial-gradient(circle at 86% 12%, rgba(43, 170, 212, 0.10), transparent 26%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 100%) !important;
}

.home-page .news-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.home-page .news-card,
.home-page .news-card.featured,
.home-page .news-card:not(.featured) {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(185, 204, 235, 0.72) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 16px 46px rgba(15, 35, 81, 0.07) !important;
  color: inherit !important;
  transform: none !important;
}

.home-page .news-card:hover,
.home-page .news-card.featured:hover,
.home-page .news-card:not(.featured):hover {
  border-color: rgba(43, 170, 212, 0.46) !important;
  box-shadow: 0 24px 70px rgba(15, 35, 81, 0.12) !important;
  transform: translateY(-4px) !important;
}

.home-page .news-card.featured {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr) !important;
  grid-template-rows: auto auto auto 1fr !important;
  gap: 0 !important;
  min-height: 430px !important;
  padding: 0 !important;
  border-color: rgba(43, 170, 212, 0.22) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(43, 170, 212, 0.18), transparent 34%),
    linear-gradient(135deg, #0A2559 0%, #1040A0 58%, #071B45 100%) !important;
}

.home-page .news-card-media,
.home-page .news-card.featured .news-card-media,
.home-page .news-card:not(.featured) .news-card-media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #0A2559 !important;
}

.home-page .news-card.featured .news-card-media {
  grid-column: 1 !important;
  grid-row: 1 / span 4 !important;
  height: 100% !important;
  min-height: 430px !important;
  aspect-ratio: auto !important;
  border-radius: 26px 0 0 26px !important;
}

.home-page .news-card:not(.featured) .news-card-media {
  aspect-ratio: 16 / 9 !important;
  border-bottom: 1px solid rgba(185, 204, 235, 0.72) !important;
}

.home-page .news-card-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(10, 37, 89, 0), rgba(10, 37, 89, 0.12)),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
  background-size: auto, 52px 52px, 52px 52px !important;
  opacity: 0.75 !important;
  pointer-events: none !important;
}

.home-page .news-card-media img,
.home-page .news-card-media svg,
.home-page .news-card.featured .news-card-media img,
.home-page .news-card.featured .news-card-media svg,
.home-page .news-card:not(.featured) .news-card-media img,
.home-page .news-card:not(.featured) .news-card-media svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
  transition: transform .55s ease, filter .55s ease !important;
}

.home-page .news-card:hover .news-card-media img,
.home-page .news-card:hover .news-card-media svg {
  filter: saturate(1.08) contrast(1.02) !important;
  transform: scale(1.035) !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: 2 !important;
  color: rgba(244, 248, 255, 0.86) !important;
}

.home-page .news-card.featured .news-card-meta {
  margin: clamp(44px, 5vw, 72px) clamp(38px, 4vw, 64px) 20px !important;
  padding-bottom: 12px !important;
  border-bottom-color: rgba(244, 248, 255, 0.18) !important;
  color: #8DEBFF !important;
}

.home-page .news-card.featured .news-card-title {
  max-width: 680px !important;
  margin: 0 clamp(38px, 4vw, 64px) 18px !important;
  color: #FFFFFF !important;
  font-size: clamp(28px, 2vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
}

.home-page .news-card.featured .news-card-excerpt {
  max-width: 640px !important;
  margin: 0 clamp(38px, 4vw, 64px) 28px !important;
  color: rgba(244, 248, 255, 0.70) !important;
  font-size: 15px !important;
  line-height: 1.82 !important;
}

.home-page .news-card.featured .news-card-arrow {
  width: fit-content !important;
  margin: auto clamp(38px, 4vw, 64px) clamp(42px, 4vw, 62px) !important;
  padding: 11px 20px !important;
  border: 1px solid rgba(141, 235, 255, 0.42) !important;
  border-radius: 999px !important;
  color: #8DEBFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  opacity: 1 !important;
}

.home-page .news-card:not(.featured) {
  padding: 0 !important;
  border-bottom: 1px solid rgba(185, 204, 235, 0.72) !important;
}

.home-page .news-card:not(.featured) .news-card-meta {
  margin: 22px 24px 12px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(185, 204, 235, 0.72) !important;
  color: #0B8FA8 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.14em !important;
}

.home-page .news-card:not(.featured) .news-card-title {
  margin: 0 24px 12px !important;
  color: #0F2351 !important;
  font-size: clamp(20px, 1.35vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.46 !important;
  letter-spacing: 0 !important;
}

.home-page .news-card:not(.featured) .news-card-excerpt {
  display: -webkit-box !important;
  margin: 0 24px 20px !important;
  color: #425B87 !important;
  font-size: 14px !important;
  line-height: 1.78 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}

.home-page .news-card:not(.featured) .news-card-arrow {
  width: fit-content !important;
  margin: auto 24px 24px !important;
  padding-top: 0 !important;
  color: #1040A0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  opacity: 1 !important;
}

@media (max-width: 1100px) {
  .home-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .news-card.featured {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .home-page .news-card.featured .news-card-media,
  .home-page .news-card.featured .news-card-meta,
  .home-page .news-card.featured .news-card-title,
  .home-page .news-card.featured .news-card-excerpt,
  .home-page .news-card.featured .news-card-arrow {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-page .news-card.featured .news-card-media {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 26px 26px 0 0 !important;
  }
}

@media (max-width: 700px) {
  .home-page .news-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .home-page .news-card.featured .news-card-title {
    font-size: 25px !important;
  }

  .home-page .news-card.featured .news-card-meta,
  .home-page .news-card.featured .news-card-title,
  .home-page .news-card.featured .news-card-excerpt,
  .home-page .news-card.featured .news-card-arrow {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
}

/* Homepage news feature refinement: lighter copy panel and smaller lead image. */
.home-page .news-card.featured {
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr) !important;
  min-height: 360px !important;
  padding: 24px !important;
  border-color: rgba(185, 204, 235, 0.76) !important;
  background:
    radial-gradient(circle at 16% 18%, rgba(43, 170, 212, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)) !important;
}

.home-page .news-card.featured .news-card-media {
  align-self: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: 320px !important;
  aspect-ratio: 16 / 10 !important;
  border: 1px solid rgba(43, 170, 212, 0.20) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 42px rgba(10, 37, 89, 0.10) !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  color: #0F2351 !important;
}

.home-page .news-card.featured .news-card-meta {
  margin: clamp(34px, 4vw, 54px) clamp(42px, 5vw, 88px) 18px !important;
  border-bottom-color: rgba(185, 204, 235, 0.76) !important;
  color: #0B8FA8 !important;
}

.home-page .news-card.featured .news-card-title {
  max-width: 700px !important;
  margin: 0 clamp(42px, 5vw, 88px) 18px !important;
  color: #0F2351 !important;
  font-size: clamp(27px, 1.85vw, 34px) !important;
}

.home-page .news-card.featured .news-card-excerpt {
  max-width: 620px !important;
  margin: 0 clamp(42px, 5vw, 88px) 28px !important;
  color: #425B87 !important;
}

.home-page .news-card.featured .news-card-arrow {
  margin: auto clamp(42px, 5vw, 88px) clamp(34px, 4vw, 54px) !important;
  border-color: rgba(43, 170, 212, 0.34) !important;
  color: #1040A0 !important;
  background: rgba(255, 255, 255, 0.64) !important;
}

.home-page .news-card.featured:hover .news-card-arrow {
  border-color: rgba(43, 170, 212, 0.62) !important;
  color: #0B8FA8 !important;
}

@media (max-width: 1100px) {
  .home-page .news-card.featured {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured .news-card-media {
    max-height: none !important;
  }
}

/* Homepage news layout v3: align lead image exactly to the three-column grid. */
.home-page .news-card.featured {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: auto auto auto 1fr !important;
  column-gap: 28px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-page .news-card.featured:hover {
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.home-page .news-card.featured .news-card-media {
  grid-column: 1 !important;
  grid-row: 1 / span 4 !important;
  height: 100% !important;
  min-height: 320px !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  border: 1px solid rgba(185, 204, 235, 0.72) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 46px rgba(15, 35, 81, 0.08) !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: 2 / -1 !important;
  position: relative !important;
  z-index: 1 !important;
  margin-left: clamp(36px, 4vw, 72px) !important;
  margin-right: clamp(36px, 4vw, 72px) !important;
}

.home-page .news-card.featured .news-card-meta {
  grid-row: 1 !important;
  margin-top: clamp(42px, 4.4vw, 70px) !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
}

.home-page .news-card.featured .news-card-title {
  grid-row: 2 !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

.home-page .news-card.featured .news-card-excerpt {
  grid-row: 3 !important;
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}

.home-page .news-card.featured .news-card-arrow {
  grid-row: 4 !important;
  align-self: end !important;
  margin-top: auto !important;
  margin-bottom: clamp(40px, 4vw, 64px) !important;
}

.home-page .news-card.featured::before {
  content: "" !important;
  grid-column: 2 / -1 !important;
  grid-row: 1 / 5 !important;
  min-height: 320px !important;
  border: 1px solid rgba(185, 204, 235, 0.72) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(43, 170, 212, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)) !important;
  box-shadow: 0 16px 46px rgba(15, 35, 81, 0.07) !important;
}

@media (max-width: 1100px) {
  .home-page .news-card.featured {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured::before {
    content: none !important;
  }

  .home-page .news-card.featured .news-card-media,
  .home-page .news-card.featured .news-card-meta,
  .home-page .news-card.featured .news-card-title,
  .home-page .news-card.featured .news-card-excerpt,
  .home-page .news-card.featured .news-card-arrow {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-page .news-card.featured {
    overflow: hidden !important;
    border: 1px solid rgba(185, 204, 235, 0.72) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 16px 46px rgba(15, 35, 81, 0.07) !important;
  }

  .home-page .news-card.featured .news-card-media {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(185, 204, 235, 0.72) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

/* Homepage news layout v4: one cohesive lead card, not separated image/text blocks. */
.home-page .news-card.featured {
  overflow: hidden !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: 0 !important;
  min-height: 360px !important;
  border: 1px solid rgba(185, 204, 235, 0.76) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(43, 170, 212, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)) !important;
  box-shadow: 0 18px 54px rgba(15, 35, 81, 0.08) !important;
}

.home-page .news-card.featured:hover {
  border-color: rgba(43, 170, 212, 0.42) !important;
  box-shadow: 0 24px 70px rgba(15, 35, 81, 0.12) !important;
  transform: translateY(-4px) !important;
}

.home-page .news-card.featured::before {
  content: none !important;
}

.home-page .news-card.featured .news-card-media {
  grid-column: 1 !important;
  grid-row: 1 / 5 !important;
  min-height: 360px !important;
  height: 100% !important;
  border: 0 !important;
  border-right: 1px solid rgba(185, 204, 235, 0.62) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: 2 / -1 !important;
  margin-left: clamp(44px, 5vw, 84px) !important;
  margin-right: clamp(44px, 5vw, 84px) !important;
}

.home-page .news-card.featured .news-card-meta {
  margin-top: clamp(40px, 4.2vw, 64px) !important;
}

.home-page .news-card.featured .news-card-arrow {
  margin-bottom: clamp(38px, 4vw, 58px) !important;
}

@media (max-width: 1100px) {
  .home-page .news-card.featured {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured .news-card-media {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(185, 204, 235, 0.72) !important;
  }
}

/* Home hero cover fix: the next section overlaps by 72px, so keep the first viewport fully under video. */
.home-page .yimou-home-hero.has-bg-media {
  min-height: calc(100vh + 88px) !important;
  min-height: calc(100svh + 88px) !important;
  min-height: calc(100dvh + 88px) !important;
  height: calc(100vh + 88px) !important;
  height: calc(100svh + 88px) !important;
  height: calc(100dvh + 88px) !important;
}

.home-page .yimou-home-hero.has-bg-media .hero-bg-media {
  inset: -1px -1px -2px !important;
}

/* News image crop: keep the lead cover in the same 16:9 system as the cards below. */
.home-page .news-card.featured {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 2fr) !important;
  grid-template-rows: auto auto auto auto !important;
  min-height: 0 !important;
}

.home-page .news-card.featured .news-card-media {
  grid-row: 1 / -1 !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 24px 0 0 24px !important;
}

.home-page .news-card.featured .news-card-meta {
  margin-top: clamp(28px, 3.4vw, 46px) !important;
  margin-bottom: 14px !important;
}

.home-page .news-card.featured .news-card-title {
  margin-bottom: 14px !important;
}

.home-page .news-card.featured .news-card-excerpt {
  margin-bottom: 20px !important;
}

.home-page .news-card.featured .news-card-arrow {
  margin-bottom: clamp(28px, 3vw, 40px) !important;
}

.home-page .news-card.featured .news-card-meta,
.home-page .news-card.featured .news-card-title,
.home-page .news-card.featured .news-card-excerpt,
.home-page .news-card.featured .news-card-arrow {
  grid-column: 2 !important;
}

.home-page .news-card-media img,
.home-page .news-card-media svg {
  object-position: var(--news-img-x, 50%) var(--news-img-y, 50%) !important;
  transform: scale(var(--news-img-scale, 1)) !important;
  transform-origin: var(--news-img-x, 50%) var(--news-img-y, 50%) !important;
}

.home-page .news-card:hover .news-card-media img,
.home-page .news-card:hover .news-card-media svg {
  transform: scale(var(--news-img-hover-scale, 1.035)) !important;
}

@media (max-width: 1100px) {
  .home-page .news-card.featured {
    grid-template-columns: 1fr !important;
  }

  .home-page .news-card.featured .news-card-media,
  .home-page .news-card.featured .news-card-meta,
  .home-page .news-card.featured .news-card-title,
  .home-page .news-card.featured .news-card-excerpt,
  .home-page .news-card.featured .news-card-arrow {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-page .news-card.featured .news-card-media {
    border-radius: 24px 24px 0 0 !important;
  }
}

/* Final compact footer spacing: keep every page using the same footer rhythm. */
.footer,
.home-page .footer,
.subpage .footer,
.news-page .footer,
.pipeline-detail-page .footer,
.team-detail-page .footer {
  padding-top: clamp(42px, 4vw, 48px) !important;
  padding-bottom: 22px !important;
}

.footer-grid,
.home-page .footer-grid,
.subpage .footer-grid,
.news-page .footer-grid,
.pipeline-detail-page .footer-grid,
.team-detail-page .footer-grid {
  margin-bottom: clamp(24px, 2.6vw, 30px) !important;
}

.footer-bottom,
.home-page .footer-bottom,
.subpage .footer-bottom,
.news-page .footer-bottom,
.pipeline-detail-page .footer-bottom,
.team-detail-page .footer-bottom {
  padding-top: 16px !important;
}

.footer-logo-img,
.home-page .footer-logo-img,
.subpage .footer-logo-img,
.news-page .footer-logo-img,
.pipeline-detail-page .footer-logo-img,
.team-detail-page .footer-logo-img {
  margin-bottom: 14px !important;
}

.footer-links h5,
.home-page .footer-links h5,
.subpage .footer-links h5,
.news-page .footer-links h5,
.pipeline-detail-page .footer-links h5,
.team-detail-page .footer-links h5 {
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
}

@media (max-width: 700px) {
  .footer,
  .home-page .footer,
  .subpage .footer,
  .news-page .footer,
  .pipeline-detail-page .footer,
  .team-detail-page .footer {
    padding-top: 42px !important;
    padding-bottom: 24px !important;
  }

  .footer-grid,
  .home-page .footer-grid,
  .subpage .footer-grid,
  .news-page .footer-grid,
  .pipeline-detail-page .footer-grid,
  .team-detail-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
    margin-bottom: 28px !important;
  }

  .footer-brand,
  .home-page .footer-brand,
  .subpage .footer-brand,
  .news-page .footer-brand,
  .pipeline-detail-page .footer-brand,
  .team-detail-page .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-bottom,
  .home-page .footer-bottom,
  .subpage .footer-bottom,
  .news-page .footer-bottom,
  .pipeline-detail-page .footer-bottom,
  .team-detail-page .footer-bottom {
    padding-top: 14px !important;
  }
}

/* Mobile/tablet fit pass: keep navigation, hero and footer inside the viewport. */
@media (max-width: 1100px) {
  .footer-grid,
  .home-page .footer-grid,
  .subpage .footer-grid,
  .news-page .footer-grid,
  .pipeline-detail-page .footer-grid,
  .team-detail-page .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) !important;
    column-gap: clamp(30px, 5vw, 48px) !important;
    row-gap: 28px !important;
  }

  .footer-brand,
  .home-page .footer-brand,
  .subpage .footer-brand,
  .news-page .footer-brand,
  .pipeline-detail-page .footer-brand,
  .team-detail-page .footer-brand,
  .footer-panel,
  .home-page .footer-panel,
  .subpage .footer-panel,
  .news-page .footer-panel,
  .pipeline-detail-page .footer-panel,
  .team-detail-page .footer-panel {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .footer-social,
  .home-page .footer-social,
  .subpage .footer-social,
  .news-page .footer-social,
  .pipeline-detail-page .footer-social,
  .team-detail-page .footer-social {
    min-width: 0 !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .home-page .yimou-home-hero,
  .pipeline-detail-page .pl-page-hero,
  .team-detail-page .team-hero {
    overflow: hidden !important;
  }

  .nav-links {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: calc(100vw - 32px) !important;
    padding-top: 74px !important;
    border-radius: 0 0 22px 22px !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    background: linear-gradient(180deg, rgba(13, 39, 96, 0.985), rgba(8, 25, 67, 0.985)) !important;
    box-shadow: 0 24px 60px rgba(3, 13, 38, 0.24) !important;
  }

  .hamburger {
    position: relative !important;
    z-index: 1006 !important;
  }

  .nav-links:not(.open) .nav-dropdown {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav-links.open .nav-dropdown {
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .navbar .lang-switcher,
  .home-page .navbar .lang-switcher {
    display: inline-flex !important;
    position: fixed !important;
    top: 88px !important;
    left: 32px !important;
    right: auto !important;
    z-index: 1004 !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
  }

  .navbar:has(.nav-links.open) {
    overflow: visible !important;
  }

  body.nav-open .navbar .lang-switcher,
  body.nav-open.home-page .navbar .lang-switcher,
  .navbar:has(.nav-links.open) .lang-switcher {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body[data-lang="en"].home-page .hero-title {
    max-width: calc(100vw - 40px) !important;
    font-size: clamp(24px, 6.2vw, 44px) !important;
    line-height: 1.08 !important;
  }

  body[data-lang="en"].home-page .hero-title-line {
    white-space: nowrap !important;
  }
}

@media (max-width: 700px) {
  .footer-grid,
  .home-page .footer-grid,
  .subpage .footer-grid,
  .news-page .footer-grid,
  .pipeline-detail-page .footer-grid,
  .team-detail-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 22px !important;
    row-gap: 26px !important;
  }

  .footer-links a,
  .footer-links li,
  .social-label {
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 420px) {
  body[data-lang="en"].home-page .hero-title {
    font-size: clamp(21px, 5.8vw, 25px) !important;
  }
}

/* Final language switcher color system: match the homepage blue-cyan palette. */
.navbar .lang-switcher,
body:not(.home-page) .navbar .lang-switcher,
body.home-page .navbar.nav-light .lang-switcher {
  background: linear-gradient(135deg, rgba(216, 243, 250, .92), rgba(234, 244, 255, .78)) !important;
  border: 1px solid rgba(43, 170, 212, .46) !important;
  box-shadow: 0 10px 28px rgba(10, 37, 89, .10), inset 0 0 0 1px rgba(255, 255, 255, .56) !important;
}

.navbar .lang-switch-btn,
body:not(.home-page) .navbar .lang-switch-btn,
body.home-page .navbar.nav-light .lang-switch-btn {
  color: rgba(15, 35, 81, .82) !important;
}

.navbar .lang-switch-btn.active,
.navbar .lang-switch-btn.is-active,
body:not(.home-page) .navbar .lang-switch-btn.active,
body:not(.home-page) .navbar .lang-switch-btn.is-active,
body.home-page .navbar.nav-light .lang-switch-btn.active,
body.home-page .navbar.nav-light .lang-switch-btn.is-active {
  background: linear-gradient(135deg, #2BAAD4, #1B9EC8) !important;
  color: #061942 !important;
  box-shadow: 0 8px 20px rgba(43, 170, 212, .34) !important;
}

body.home-page .navbar:not(.nav-light) .lang-switcher {
  background: linear-gradient(135deg, rgba(43, 170, 212, .20), rgba(244, 248, 255, .08)) !important;
  border-color: rgba(120, 214, 232, .50) !important;
  box-shadow: inset 0 0 0 1px rgba(244, 248, 255, .08), 0 10px 30px rgba(0, 0, 0, .12) !important;
}

body.home-page .navbar:not(.nav-light) .lang-switch-btn {
  color: rgba(244, 248, 255, .86) !important;
}

body.home-page .navbar:not(.nav-light) .lang-switch-btn.active,
body.home-page .navbar:not(.nav-light) .lang-switch-btn.is-active {
  background: linear-gradient(135deg, #2BAAD4, #78D6E8) !important;
  color: #061942 !important;
  box-shadow: 0 0 20px rgba(43, 170, 212, .38) !important;
}

@media (max-width: 768px) {
  .navbar .lang-switcher,
  .home-page .navbar .lang-switcher,
  body:not(.home-page) .navbar .lang-switcher {
    background: linear-gradient(135deg, rgba(43, 170, 212, .22), rgba(244, 248, 255, .12)) !important;
    border-color: rgba(120, 214, 232, .52) !important;
  }

  .navbar .lang-switch-btn,
  .home-page .navbar .lang-switch-btn,
  body:not(.home-page) .navbar .lang-switch-btn {
    color: rgba(244, 248, 255, .88) !important;
  }

  .navbar .lang-switch-btn.active,
  .navbar .lang-switch-btn.is-active,
  .home-page .navbar .lang-switch-btn.active,
  .home-page .navbar .lang-switch-btn.is-active,
  body:not(.home-page) .navbar .lang-switch-btn.active,
  body:not(.home-page) .navbar .lang-switch-btn.is-active {
    background: linear-gradient(135deg, #2BAAD4, #78D6E8) !important;
    color: #061942 !important;
  }
}

/* Final homepage hero quick links: keep this after all global button passes. */
body.home-page .hero-actions {
  gap: 30px !important;
}

body.home-page .hero-actions .btn-primary,
body.home-page .hero-actions .btn-ghost {
  min-height: 64px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: .045em !important;
}

body.home-page .hero-actions .btn-primary {
  padding: 19px 38px !important;
  background: linear-gradient(135deg, #48D7FF 0%, #20AFCF 100%) !important;
  color: #344154 !important;
  border: none !important;
  box-shadow: 0 14px 34px rgba(6, 23, 51, .30), 0 0 0 1px rgba(210, 250, 255, .22) inset !important;
  text-shadow: none !important;
}

body.home-page .hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #78E7FF 0%, #37C4E0 100%) !important;
  color: #344154 !important;
}

body.home-page .hero-actions .btn-primary .arrow-icon {
  color: #344154 !important;
  text-shadow: none !important;
}

body.home-page .hero-actions .btn-primary:hover .arrow-icon {
  color: #344154 !important;
}

body.home-page .hero-actions .btn-ghost {
  padding: 18px 24px !important;
  color: #F7FEFF !important;
  background: rgba(4, 23, 58, .34) !important;
  border: 1px solid rgba(191, 242, 255, .42) !important;
  border-bottom-color: rgba(191, 242, 255, .78) !important;
  box-shadow: 0 12px 30px rgba(3, 13, 38, .24), inset 0 0 0 1px rgba(255, 255, 255, .06) !important;
  text-shadow: none !important;
}

body.home-page .hero-actions .btn-ghost:hover {
  color: #F7FEFF !important;
  background: rgba(8, 34, 82, .48) !important;
  border-color: rgba(216, 243, 250, .86) !important;
  text-shadow: none !important;
}

body.home-page .hero-actions .btn-ghost .arrow-icon {
  color: #F7FEFF !important;
  text-shadow: none !important;
}

@media (max-width: 700px) {
  body.home-page .hero-actions {
    gap: 14px !important;
  }

  body.home-page .hero-actions .btn-primary,
  body.home-page .hero-actions .btn-ghost {
    min-height: 58px !important;
    font-size: 15px !important;
  }

  body.home-page .hero-actions .btn-primary {
    padding: 17px 30px !important;
  }

  body.home-page .hero-actions .btn-ghost {
    padding: 16px 20px !important;
  }
}
