@font-face {
  font-family: 'Panorama Sans';
  src: url('../fonts/noto-sans-sc-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Panorama Sans';
  src: url('../fonts/noto-sans-sc-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #071c3c;
  --ink-soft: #405777;
  --blue: #1367f6;
  --blue-dark: #06265e;
  --blue-deep: #04132f;
  --cyan: #28d9e6;
  --green: #66f2bc;
  --line: rgba(32, 99, 186, .16);
  --line-dark: rgba(115, 194, 255, .22);
  --surface: #f4f8fd;
  --white: #ffffff;
  --page-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { width: 0; height: 0; display: none; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: 'Panorama Sans', 'Microsoft YaHei', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { content: ''; position: fixed; z-index: 90; top: 0; left: 0; width: 100%; height: 2px; opacity: 0; pointer-events: none; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green)); }
html.is-pjax-loading body::before { opacity: 1; animation: pjaxProgress 1s ease-in-out infinite; }
main { transition: opacity .16s ease, transform .16s ease; }
html.is-pjax-swapping main { opacity: 0; transform: translateY(5px); }
main[tabindex='-1']:focus { outline: 0; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, .78);
  background: rgba(4, 19, 47, .32);
  border-bottom: 1px solid rgba(170, 225, 255, .12);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(4, 19, 47, .92); box-shadow: 0 10px 30px rgba(3, 16, 44, .2); }
.page-no-hero .site-header { background: #061f4e; border-bottom-color: rgba(123, 205, 255, .18); box-shadow: 0 8px 24px rgba(3, 20, 49, .16); }
.page-no-hero main { padding-top: 76px; }
.page-no-hero .main-section { padding-top: 58px; }
.header-inner { width: min(var(--page-width), calc(100% - 48px)); height: 76px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.brand-mark { display: inline-flex; align-items: center; gap: 11px; min-width: 245px; }
.brand-logo-image { width: 46px; height: 46px; flex: 0 0 auto; object-fit: cover; border-radius: 8px; }
.brand-symbol { position: relative; width: 31px; height: 31px; transform: rotate(30deg); border: 2px solid var(--cyan); border-radius: 7px; box-shadow: 0 0 18px rgba(40, 217, 230, .35); }
.brand-symbol::before, .brand-symbol::after { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(102, 242, 188, .9); border-radius: 4px; }
.brand-symbol::after { inset: 10px; background: var(--cyan); border: 0; box-shadow: 0 0 12px rgba(40, 217, 230, .95); }
.brand-copy { display: grid; line-height: 1; gap: 4px; }
.brand-cn { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0; white-space: nowrap; }
.brand-en { color: rgba(186, 222, 250, .72); font-size: 8px; letter-spacing: 1px; white-space: nowrap; }
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 3px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 27px 13px 25px; color: rgba(255, 255, 255, .78); font-size: 14px; white-space: nowrap; transition: color .2s ease; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after { content: ''; position: absolute; right: 13px; bottom: 14px; left: 13px; height: 2px; background: var(--cyan); box-shadow: 0 0 12px rgba(40, 217, 230, .7); }
.nav-chevron { font-size: 11px; opacity: .72; }
.submenu { position: absolute; top: calc(100% - 7px); left: 0; width: 168px; padding: 9px; visibility: hidden; opacity: 0; transform: translateY(8px); background: rgba(3, 19, 49, .96); border: 1px solid rgba(99, 196, 255, .25); box-shadow: 0 18px 35px rgba(3, 15, 38, .32); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.submenu a { display: block; padding: 9px 10px; color: rgba(255, 255, 255, .7); font-size: 13px; }
.submenu a:hover { color: #fff; background: rgba(35, 136, 243, .18); }
.header-action { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; color: #031a41; background: linear-gradient(110deg, var(--cyan), #8df9cf); border: 0; border-radius: 4px; font-size: 13px; font-weight: 600; box-shadow: 0 0 25px rgba(45, 230, 215, .2); }
.header-action:hover { box-shadow: 0 0 25px rgba(45, 230, 215, .45); }
.mobile-menu-button { display: none; width: 38px; height: 38px; padding: 8px; color: #fff; background: transparent; border: 1px solid rgba(255, 255, 255, .28); border-radius: 4px; }
.mobile-menu-button span { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #061d4c 0%, #073f9a 52%, #0c71df 100%);
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 76% 20%, rgba(45, 200, 255, .27), transparent 31%), radial-gradient(circle at 14% 60%, rgba(26, 112, 249, .24), transparent 33%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(160, 220, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(160, 220, 255, .12) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 86%, transparent 100%); }
.hero-grid::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 10%, rgba(67, 240, 226, .3) 10.2%, transparent 10.4%, transparent 64%, rgba(71, 199, 255, .2) 64.2%, transparent 64.4%); }
.hero-shell { position: relative; z-index: 1; width: min(var(--page-width), calc(100% - 48px)); min-height: 620px; margin: 0 auto; padding: 112px 0 113px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); align-items: center; gap: 60px; }
.hero-copy { max-width: 645px; }
.hero-eyebrow, .section-kicker { margin: 0 0 18px; color: var(--cyan); font-size: 11px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase; }
.hero h1 { max-width: 610px; margin: 0 0 22px; font-size: 52px; line-height: 1.18; font-weight: 600; letter-spacing: 0; }
.hero h1 span { display: block; color: #bffaff; }
.hero-description { max-width: 530px; margin: 0; color: rgba(233, 247, 255, .78); font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.button-primary, .button-ghost { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 17px; border-radius: 4px; font-size: 13px; font-weight: 600; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button-primary { color: #06224b; background: linear-gradient(110deg, #36e7e1, #a1f8ca); box-shadow: 0 9px 24px rgba(26, 229, 219, .18); }
.button-ghost { color: #fff; background: rgba(255, 255, 255, .07); border: 1px solid rgba(201, 238, 255, .32); }
.button-primary:hover, .button-ghost:hover { transform: translateY(-2px); }
.button-primary:hover { box-shadow: 0 11px 28px rgba(26, 229, 219, .3); }
.button-ghost:hover { background: rgba(255, 255, 255, .12); }
.hero-visual { position: relative; min-height: 395px; }
.hero-visual::before { content: ''; position: absolute; top: 26px; right: 50px; width: 265px; height: 265px; border: 1px solid rgba(135, 220, 255, .35); border-radius: 50%; box-shadow: 0 0 0 18px rgba(54, 194, 255, .05), 0 0 0 47px rgba(54, 194, 255, .03); animation: rotateRing 24s linear infinite; }
.hero-visual::after { content: ''; position: absolute; top: 52px; right: 76px; width: 218px; height: 218px; border: 1px dashed rgba(112, 241, 211, .52); border-radius: 50%; animation: rotateRingReverse 18s linear infinite; }
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-dashboard { position: absolute; right: 3%; bottom: 19px; width: 335px; padding: 15px 16px; background: rgba(3, 28, 73, .72); border: 1px solid rgba(125, 220, 255, .3); box-shadow: 0 18px 46px rgba(1, 16, 48, .33); backdrop-filter: blur(8px); }
.hero-dashboard::before { content: ''; position: absolute; top: -1px; right: 22px; width: 90px; height: 2px; background: var(--cyan); box-shadow: 0 0 11px var(--cyan); }
.dash-top { display: flex; align-items: center; justify-content: space-between; color: rgba(209, 241, 255, .68); font-size: 10px; }
.dash-top strong { color: #fff; font-size: 12px; font-weight: 600; }
.dash-chart { position: relative; height: 145px; margin-top: 13px; overflow: hidden; background: repeating-linear-gradient(to bottom, rgba(132, 221, 255, .1) 0, rgba(132, 221, 255, .1) 1px, transparent 1px, transparent 29px); }
.dash-chart::before { content: ''; position: absolute; inset: 12px 0 20px; background: linear-gradient(146deg, transparent 0 12%, rgba(64, 236, 207, .1) 12.3% 15%, transparent 15.4% 28%, rgba(35, 149, 253, .18) 28.2% 37%, transparent 37.3% 47%, rgba(67, 238, 219, .15) 47.4% 65%, transparent 65.4% 72%, rgba(42, 147, 255, .22) 72.4% 82%, transparent 82.4%); clip-path: polygon(0 75%, 10% 68%, 18% 76%, 27% 52%, 38% 62%, 47% 26%, 55% 40%, 66% 14%, 78% 36%, 89% 12%, 100% 19%, 100% 100%, 0 100%); }
.dash-chart::after { content: ''; position: absolute; left: 0; right: 0; bottom: 18px; height: 1px; background: linear-gradient(90deg, transparent, rgba(86, 244, 214, .8), transparent); box-shadow: 0 0 12px rgba(86, 244, 214, .75); transform: skewY(-7deg); }
.dash-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.dash-metric { padding: 7px 8px; background: rgba(129, 206, 255, .08); border-left: 2px solid rgba(47, 235, 213, .65); }
.dash-metric small { display: block; color: rgba(192, 226, 246, .65); font-size: 9px; }
.dash-metric b { color: #fff; font-size: 17px; font-weight: 600; }
.hero-stats { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; background: rgba(1, 18, 54, .43); border-top: 1px solid rgba(144, 223, 255, .2); }
.stats-inner { width: min(var(--page-width), calc(100% - 48px)); min-height: 102px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stat-item { position: relative; padding: 14px 28px; text-align: center; }
.stat-item + .stat-item::before { content: ''; position: absolute; top: 18px; bottom: 18px; left: 0; width: 1px; background: rgba(174, 225, 255, .22); }
.stat-value { display: block; color: #fff; font-size: 28px; line-height: 1.2; font-weight: 600; font-variant-numeric: tabular-nums; }
.stat-label { color: rgba(214, 241, 255, .68); font-size: 12px; }

.page-hero .hero-shell { min-height: 480px; padding-top: 135px; padding-bottom: 115px; }
.page-hero .hero-visual { min-height: 255px; }
.page-hero .hero-visual::before { width: 190px; height: 190px; top: 6px; right: 82px; }
.page-hero .hero-visual::after { width: 158px; height: 158px; top: 22px; right: 98px; }
.page-hero .hero-dashboard { bottom: -3px; right: 8%; width: 290px; transform: scale(.88); transform-origin: right bottom; }
.page-hero .hero h1 { font-size: 48px; }

.main-section { width: min(var(--page-width), calc(100% - 48px)); margin: 0 auto; padding: 108px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 42px; }
.section-head.center { display: block; text-align: center; }
.section-head h2 { max-width: 720px; margin: 0; font-size: 36px; line-height: 1.22; font-weight: 600; }
.section-head h2 span { color: var(--blue); }
.section-head p { max-width: 470px; margin: 12px 0 0; color: var(--ink-soft); font-size: 14px; }
.section-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 13px; white-space: nowrap; }
.section-link::after { content: '↗'; font-size: 17px; line-height: 1; }
.section-link:hover { color: #05a39d; }
.eyebrow-blue { color: var(--blue); }
.surface-white,
.consultation {
  width: 100%;
  margin-inline: 0;
  background: var(--white);
}
.section-band { border-top: 1px solid rgba(25, 96, 179, .08); border-bottom: 1px solid rgba(25, 96, 179, .08); }

.overview-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 78px; }
.video-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #061a43; border: 1px solid rgba(21, 105, 210, .25); box-shadow: 0 16px 32px rgba(12, 52, 104, .12); }
.video-frame::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(125deg, rgba(1, 28, 75, .24), transparent 52%, rgba(16, 215, 208, .17)); pointer-events: none; }
.video-frame > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .74; }
.video-caption { position: absolute; z-index: 2; top: 24px; left: 26px; color: rgba(211, 243, 255, .72); font-size: 11px; letter-spacing: 1.6px; }
.video-caption strong { display: block; margin-top: 6px; color: #fff; font-size: 20px; letter-spacing: 0; }
.overview-copy h3 { margin: 0 0 18px; font-size: 29px; line-height: 1.3; font-weight: 600; }
.overview-copy p { margin: 0 0 24px; color: var(--ink-soft); font-size: 15px; }
.feature-list { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: #1e3859; font-size: 14px; }
.feature-list li::before { content: '↗'; flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; display: grid; place-items: center; color: #063273; background: rgba(31, 210, 211, .28); border-radius: 50%; font-size: 12px; }

.partner-strip { width: 100%; overflow: hidden; padding: 20px 0; border: 0; background: #fff; }
.partner-track { display: flex; width: max-content; will-change: transform; animation: partnerMarquee 24s linear infinite; }
.partner-group { flex: 0 0 auto; display: flex; gap: 38px; padding-right: 38px; }
.partner-item { min-width: 145px; min-height: 50px; padding: 0; display: inline-flex; align-items: center; justify-content: center; gap: 11px; color: #2d5276; background: transparent; border: 0; border-radius: 0; font-size: 13px; font-weight: 600; }
.partner-logo-image { width: 31px; height: 31px; flex: 0 0 auto; object-fit: contain; }
.partner-name { white-space: nowrap; }

.transaction-section { background: #f2f7fd; }
.tab-list { display: flex; gap: 5px; margin: 0 0 30px; padding: 0; list-style: none; border-bottom: 1px solid rgba(27, 100, 191, .16); }
.tab-button { position: relative; padding: 14px 22px; color: #617692; background: transparent; border: 0; font-size: 14px; }
.tab-button::after { content: ''; position: absolute; right: 20px; bottom: -1px; left: 20px; height: 2px; background: transparent; }
.tab-button:hover, .tab-button.is-active { color: var(--blue); }
.tab-button.is-active::after { background: var(--blue); }
.transaction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.transaction-card { position: relative; min-height: 264px; padding: 22px; background: #fff; border: 1px solid rgba(24, 99, 190, .1); border-radius: 6px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.transaction-card:hover { transform: translateY(-4px); border-color: rgba(19, 103, 246, .32); box-shadow: 0 16px 30px rgba(11, 59, 130, .1); }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 17px; color: #7790ad; font-size: 12px; }
.badge { display: inline-flex; align-items: center; padding: 4px 8px; color: #077c9a; background: rgba(39, 211, 207, .12); border: 1px solid rgba(39, 211, 207, .23); border-radius: 3px; font-size: 11px; }
.transaction-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.4; font-weight: 600; }
.transaction-card p { margin: 0 0 17px; color: #657993; font-size: 13px; }
.card-org { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 13px; border-top: 1px dashed rgba(45, 105, 174, .16); color: #5b7190; font-size: 12px; }
.card-org a { color: var(--blue); }
.card-org a:hover { color: #00a99f; }

.market-hero { position: relative; overflow: hidden; background: linear-gradient(125deg, #f8fbff 0%, #edf7ff 58%, #dff4fb 100%); border-bottom: 1px solid rgba(24, 103, 190, .12); }
.market-hero::before { content: ''; position: absolute; width: 760px; height: 320px; right: -120px; top: -145px; opacity: .5; background: repeating-linear-gradient(12deg, transparent 0 13px, rgba(19, 103, 246, .1) 14px 15px); transform: rotate(-4deg); border-radius: 50%; pointer-events: none; }
.page-no-hero .market-hero .main-section { padding-top: 62px; padding-bottom: 50px; }
.market-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr); align-items: center; gap: 70px; }
.market-hero-inner > *, .market-heading, .market-search-panel { min-width: 0; }
.market-heading-line { display: flex; align-items: baseline; gap: 12px; }
.market-heading h1 { margin: 0; color: var(--ink); font-size: 40px; line-height: 1.16; font-weight: 600; }
.market-heading-line strong { color: #079ecb; font-family: Arial, sans-serif; font-size: 28px; }
.market-heading-line span { color: #69819e; font-size: 12px; }
.market-heading > p:last-child { max-width: 570px; margin: 15px 0 0; color: #516b89; font-size: 14px; }
.market-search-panel { align-self: end; padding-bottom: 3px; }
.market-search-panel form { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) 76px; min-height: 46px; background: #fff; border: 1px solid rgba(20, 92, 175, .17); border-radius: 5px; box-shadow: 0 8px 24px rgba(22, 77, 139, .06); overflow: hidden; }
.market-search-panel input { min-width: 0; padding: 0 16px; color: var(--ink); background: transparent; border: 0; outline: 0; font: inherit; }
.market-search-panel button { color: #fff; background: var(--blue); border: 0; cursor: pointer; }
.market-hot-search { min-height: 30px; margin-top: 11px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #7890aa; font-size: 11px; }
.market-hot-search button { padding: 3px 7px; color: #44617f; background: rgba(255, 255, 255, .54); border: 0; border-radius: 2px; cursor: pointer; }
.market-hot-search button:hover { color: var(--blue); background: #fff; }
.market-catalog { background: #f5f8fc; }
.page-no-hero .market-catalog .main-section { padding-top: 0; padding-bottom: 104px; }
.market-type-tabs { display: flex; gap: 34px; min-height: 65px; align-items: end; border-bottom: 1px solid rgba(28, 100, 181, .14); }
.market-type-tab { position: relative; min-width: 94px; padding: 21px 4px 16px; display: flex; align-items: baseline; justify-content: center; gap: 7px; color: #657c98; font-size: 14px; }
.market-type-tab::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }
.market-type-tab small { color: #98a9bb; font-family: Arial, sans-serif; font-size: 10px; }
.market-type-tab:hover, .market-type-tab.is-active { color: var(--blue); }
.market-type-tab.is-active::after { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.market-filter-panel { margin-top: 24px; padding: 20px 22px; background: #fff; border: 1px solid rgba(27, 99, 181, .12); border-radius: 6px; box-shadow: 0 7px 22px rgba(24, 70, 124, .04); }
.market-industry-row, .market-category-row { display: grid; grid-template-columns: 78px 1fr; align-items: start; gap: 13px; padding-bottom: 16px; border-bottom: 1px dashed rgba(42, 105, 174, .14); }
.market-category-row { padding-top: 16px; }
.market-industry-row > strong, .market-category-row > strong { padding-top: 4px; color: #304c6d; font-size: 12px; font-weight: 600; }
.market-industry-row > div, .market-category-row > div { display: flex; flex-wrap: wrap; gap: 7px 9px; }
.market-industry-option, .market-category-option { position: relative; cursor: pointer; }
.market-industry-option input, .market-category-option input { position: absolute; opacity: 0; pointer-events: none; }
.market-industry-option span, .market-category-option span { min-height: 26px; padding: 4px 9px; display: inline-flex; align-items: center; color: #5c718c; background: #f5f8fc; border: 1px solid transparent; border-radius: 3px; font-size: 11px; transition: .18s ease; }
.market-industry-option:hover span, .market-category-option:hover span { color: var(--blue); border-color: rgba(19, 103, 246, .18); }
.market-industry-option input:checked + span, .market-category-option input:checked + span { color: #0759c8; background: rgba(19, 103, 246, .09); border-color: rgba(19, 103, 246, .2); }
.market-industry-option input:focus-visible + span, .market-category-option input:focus-visible + span { outline: 2px solid rgba(19, 103, 246, .35); outline-offset: 2px; }
.market-filter-row { min-width: 0; margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(135px, 1fr)) auto; gap: 12px; align-items: end; }
.market-filter-row > * { min-width: 0; }
.market-select { display: grid; gap: 6px; color: #526a86; font-size: 11px; }
.market-select select, .market-result-toolbar select { width: 100%; height: 36px; padding: 0 30px 0 11px; color: #536a84; background: #fff; border: 1px solid rgba(33, 95, 168, .17); border-radius: 4px; outline: 0; font: inherit; }
.market-select select:focus, .market-result-toolbar select:focus { border-color: rgba(19, 103, 246, .5); box-shadow: 0 0 0 3px rgba(19, 103, 246, .07); }
.market-reset { height: 36px; padding: 0 14px; color: var(--blue); background: rgba(19, 103, 246, .06); border: 1px solid rgba(19, 103, 246, .14); border-radius: 4px; cursor: pointer; white-space: nowrap; }
.market-reset:disabled { color: #9aaabc; background: #f7f9fb; border-color: transparent; cursor: default; }
.market-result-toolbar { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.market-result-toolbar p { margin: 0; color: #71849b; font-size: 12px; }
.market-result-toolbar p strong { color: var(--blue); font-size: 16px; }
.market-result-toolbar label { min-width: 152px; display: flex; align-items: center; gap: 8px; color: #687f99; font-size: 11px; white-space: nowrap; }
.market-result-toolbar select { height: 32px; }
.market-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.market-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(29, 93, 169, .13); border-radius: 7px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.market-card:hover { transform: translateY(-3px); border-color: rgba(19, 103, 246, .28); box-shadow: 0 15px 32px rgba(10, 55, 112, .09); }
.market-card-cover { position: relative; min-height: 104px; padding: 18px 72px 16px 18px; display: flex; align-items: flex-start; gap: 12px; overflow: hidden; background: linear-gradient(128deg, #f4faff 0%, #e9f5ff 72%, #d9efff 100%); border-bottom: 1px solid rgba(42, 109, 187, .1); }
.market-card-cover::after { content: ''; position: absolute; width: 148px; height: 70px; right: -39px; bottom: -28px; border: 12px solid rgba(25, 129, 239, .12); transform: skewX(-28deg) rotate(-7deg); }
.market-card-symbol { position: relative; z-index: 1; width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; color: #0876d9; background: rgba(255, 255, 255, .78); border: 1px solid rgba(20, 116, 221, .12); font-size: 15px; font-weight: 600; }
.market-card-title { position: relative; z-index: 1; min-width: 0; }
.market-card-title h3 { margin: 7px 0 0; color: #102a4d; font-size: 17px; line-height: 1.36; font-weight: 600; }
.market-card-tags { min-height: 20px; display: flex; flex-wrap: wrap; gap: 4px; }
.market-card-tags span { padding: 2px 5px; color: #2967b3; background: rgba(36, 118, 236, .08); border-radius: 2px; font-size: 9px; }
.market-card-flags { position: absolute; z-index: 2; top: 0; right: 0; display: grid; justify-items: end; }
.market-featured { padding: 3px 10px; color: #043f63; background: var(--cyan); border-radius: 0 6px 0 4px; font-size: 9px; }
.market-status { margin: 7px 8px 0 0; padding: 2px 5px; color: #687f99; background: rgba(255, 255, 255, .74); border-radius: 2px; font-size: 9px; }
.market-status.is-listed { color: #0877c8; }
.market-status.is-open { color: #07865d; }
.market-card-body { padding: 17px 18px 16px; }
.market-card-body > p { min-height: 54px; margin: 0 0 14px; color: #5b6f88; font-size: 12px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.market-card-facts { margin: 0; display: grid; gap: 6px; }
.market-card-facts div { min-width: 0; display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 7px; font-size: 10px; }
.market-card-facts dt { color: #91a1b4; }
.market-card-facts dd { margin: 0; overflow: hidden; color: #546b86; text-overflow: ellipsis; white-space: nowrap; }
.market-card-value { min-height: 52px; margin-top: 14px; padding-top: 12px; display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 2px 8px; border-top: 1px dashed rgba(39, 99, 170, .14); }
.market-card-value small { color: #8b9bae; font-size: 9px; }
.market-card-value strong { color: var(--blue); font-size: 20px; line-height: 1; }
.market-card-value span { grid-column: 1 / -1; color: #6b819b; font-size: 10px; }
.market-card-footer { margin-top: 12px; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid rgba(40, 100, 170, .1); color: #91a0b2; font-size: 9px; }
.market-card-footer > div { display: flex; align-items: center; gap: 10px; }
.market-card-footer a { color: #3b5b80; }
.market-consult { padding: 0; color: var(--blue); background: transparent; border: 0; cursor: pointer; font: inherit; }
.market-card-footer a:hover, .market-consult:hover { color: #00a597; }
.market-empty { grid-column: 1 / -1; min-height: 270px; padding: 50px 20px; display: grid; place-items: center; align-content: center; text-align: center; background: #fff; border: 1px dashed rgba(31, 101, 181, .2); }
.market-empty strong { color: #244564; font-size: 20px; }
.market-empty p { margin: 8px 0 18px; color: #8192a5; font-size: 12px; }
.market-empty button { padding: 9px 16px; color: #fff; background: var(--blue); border: 0; border-radius: 3px; cursor: pointer; }
.market-pagination { margin-top: 30px; display: flex; justify-content: center; gap: 6px; }
.market-pagination button { min-width: 35px; height: 35px; padding: 0 11px; color: #607691; background: #fff; border: 1px solid rgba(30, 95, 172, .14); border-radius: 3px; cursor: pointer; }
.market-pagination button:hover, .market-pagination button.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.market-pagination button:disabled { opacity: .45; cursor: default; }

.market-detail-section { padding-bottom: 96px; }
.market-detail-back { display: inline-flex; margin-bottom: 18px; color: #5e7895; font-size: 12px; }
.market-detail-back:hover { color: var(--blue); }
.listing-summary { position: relative; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(365px, .85fr); overflow: hidden; background: #fff; border: 1px solid rgba(29, 99, 183, .15); border-radius: 6px; box-shadow: 0 14px 34px rgba(8, 52, 111, .06); }
.listing-summary::before { content: ''; position: absolute; z-index: 0; top: -140px; left: -60px; width: 76%; height: 240px; opacity: .7; background: repeating-radial-gradient(ellipse at 42% 100%, transparent 0 10px, rgba(32, 128, 235, .07) 11px 12px); pointer-events: none; }
.listing-summary-main, .listing-summary-purchase { position: relative; z-index: 1; min-width: 0; padding: 29px 30px; }
.listing-summary-purchase { border-left: 1px solid rgba(31, 99, 178, .13); }
.listing-identity { display: flex; align-items: flex-start; gap: 19px; }
.listing-symbol { width: 82px; height: 82px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #073b85, #1596d4 67%, #37ded8); border: 5px solid #e6f7ff; border-radius: 5px; box-shadow: 0 9px 20px rgba(11, 101, 178, .18); font-size: 29px; font-weight: 600; }
.listing-title-copy { min-width: 0; flex: 1; }
.listing-title-line { display: flex; align-items: center; gap: 10px; }
.listing-title-line .badge { flex: 0 0 auto; }
.listing-title-line h1 { min-width: 0; margin: 0; overflow: hidden; color: #102c50; font-size: 25px; line-height: 1.35; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.listing-meta { margin-top: 7px; display: flex; flex-wrap: wrap; align-items: center; gap: 5px 13px; color: #8192a6; font-size: 10px; }
.listing-meta span + span { padding-left: 13px; border-left: 1px solid rgba(33, 93, 164, .15); }
.listing-meta strong { padding: 2px 7px; color: #087d9d; background: rgba(40, 217, 230, .12); border-radius: 2px; font-weight: 400; }
.listing-org { margin: 9px 0 0; color: #526b88; font-size: 12px; }
.listing-description { margin: 16px 0 0; color: #334e6e; font-size: 12px; line-height: 1.75; }
.listing-metrics { margin-top: 25px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.listing-metrics > div { min-width: 0; display: grid; grid-template-columns: 27px minmax(0, 1fr); align-items: center; column-gap: 8px; }
.listing-metric-icon { grid-row: 1 / span 2; width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue), #37bfd4); border-radius: 50%; font-size: 10px; }
.listing-metrics small { color: #788da6; font-size: 10px; }
.listing-metrics strong { min-width: 0; overflow: hidden; color: #173858; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.listing-purchase-body { display: grid; grid-template-columns: 102px minmax(0, 1fr); gap: 20px; align-items: start; }
.listing-certificate { position: relative; min-height: 126px; padding: 10px 8px; overflow: hidden; display: grid; justify-items: center; align-content: start; color: #4d6380; background: linear-gradient(#fff, #f3f9ff); border: 1px solid rgba(30, 109, 202, .2); text-align: center; }
.listing-certificate::before, .listing-certificate::after { content: ''; position: absolute; width: 16px; height: 16px; border-color: #1b7de8; }
.listing-certificate::before { top: 4px; left: 4px; border-top: 1px solid; border-left: 1px solid; }
.listing-certificate::after { right: 4px; bottom: 4px; border-right: 1px solid; border-bottom: 1px solid; }
.listing-certificate span { color: #59728d; font-size: 8px; }
.listing-certificate strong { width: 39px; height: 39px; margin-top: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #0b56b6, #21b7cd); border-radius: 50%; font-size: 17px; }
.listing-certificate small { margin-top: 6px; color: #8798aa; font-size: 6px; letter-spacing: .3px; }
.listing-certificate i { width: 28px; height: 28px; margin-top: 7px; background: #fff url('../images/qr-consult.png') center / contain no-repeat; }
.listing-price small { display: block; color: #71869f; font-size: 10px; }
.listing-price strong { display: block; margin-top: 2px; color: var(--blue); font-size: 22px; line-height: 1.3; font-weight: 600; }
.listing-purchase-facts { margin: 10px 0 0; display: grid; gap: 6px; }
.listing-purchase-facts div { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 7px; align-items: baseline; }
.listing-purchase-facts dt { color: #7489a1; font-size: 10px; }
.listing-purchase-facts dd { margin: 0; color: #254564; font-size: 11px; overflow-wrap: anywhere; }
.listing-source { margin: 9px 0 0; color: #59738f; font-size: 9px; }
.listing-source span { color: var(--blue); }
.listing-actions { margin-top: 15px; display: flex; align-items: center; gap: 9px; }
.listing-actions button { min-height: 34px; padding: 7px 13px; border-radius: 4px; font-size: 11px; }
.listing-actions .listing-primary-action { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: #fff; background: linear-gradient(110deg, var(--blue), #158fd5); border: 1px solid var(--blue); }
.listing-actions .listing-primary-action:hover { box-shadow: 0 7px 18px rgba(19, 103, 246, .24); }
.listing-secondary-action { color: #4f6782; background: #fff; border: 1px solid rgba(31, 93, 164, .18); }
.listing-secondary-action:hover, .listing-secondary-action.is-active { color: var(--blue); border-color: rgba(19, 103, 246, .45); background: rgba(19, 103, 246, .05); }
.listing-detail-layout { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 2fr) minmax(325px, .92fr); gap: 20px; align-items: start; }
.listing-detail-main, .listing-detail-side { min-width: 0; }
.listing-section-title { position: relative; margin: 0 0 13px; padding-left: 12px; color: #102d52; font-size: 16px; line-height: 1.3; font-weight: 600; }
.listing-section-title::before { content: ''; position: absolute; top: 2px; bottom: 2px; left: 0; width: 3px; background: linear-gradient(var(--blue), var(--cyan)); border-radius: 3px; }
.listing-panel, .listing-side-panel { background: #fff; border: 1px solid rgba(29, 99, 183, .15); border-radius: 6px; }
.listing-panel { overflow: hidden; }
.listing-tabs { padding: 0 20px; display: flex; align-items: center; gap: 5px; border-bottom: 1px solid rgba(31, 94, 168, .13); }
.listing-tabs button { position: relative; flex: 0 0 auto; padding: 17px 14px 14px; color: #526982; background: transparent; border: 0; font-size: 12px; }
.listing-tabs button::after { content: ''; position: absolute; right: 10px; bottom: -1px; left: 10px; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform .18s ease; }
.listing-tabs button:hover, .listing-tabs button.is-active { color: var(--blue); }
.listing-tabs button.is-active::after { transform: scaleX(1); }
.listing-tab-panel { min-height: 350px; padding: 20px; }
.listing-tab-panel[hidden] { display: none; }
.listing-info-group + .listing-info-group { margin-top: 18px; }
.listing-info-group h3, .listing-side-group h3 { margin: 0 0 10px; display: flex; align-items: center; gap: 5px; color: #173552; font-size: 12px; font-weight: 600; }
.listing-info-group h3 span, .listing-side-group h3 span { width: 13px; height: 13px; display: inline-grid; place-items: center; color: var(--blue); border: 1px solid var(--blue); border-radius: 50%; font-family: Arial, sans-serif; font-size: 8px; font-weight: 400; }
.listing-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #f7faff; border: 1px solid rgba(31, 100, 180, .16); border-radius: 5px; }
.listing-info-item { min-width: 0; padding: 11px 13px; display: grid; align-content: start; gap: 3px; border-right: 1px solid rgba(31, 100, 180, .09); border-bottom: 1px solid rgba(31, 100, 180, .09); }
.listing-info-item:nth-child(3n) { border-right: 0; }
.listing-info-item.is-wide { grid-column: span 2; }
.listing-info-item small { color: #6e839b; font-size: 10px; }
.listing-info-item small::before, .listing-side-group dt::before { content: '*'; margin-right: 3px; color: var(--blue); }
.listing-info-item strong { min-width: 0; color: #284763; font-size: 11px; line-height: 1.6; font-weight: 400; overflow-wrap: anywhere; }
.listing-side-panel { padding: 18px; }
.listing-side-group + .listing-side-group { margin-top: 17px; }
.listing-side-group dl { margin: 0; padding: 10px 12px; display: grid; gap: 9px; background: #f7faff; border: 1px solid rgba(31, 100, 180, .16); border-radius: 5px; }
.listing-side-group dl div { min-width: 0; display: grid; grid-template-columns: minmax(105px, .72fr) minmax(0, 1.28fr); gap: 8px; }
.listing-side-group dt { color: #6d829a; font-size: 10px; }
.listing-side-group dd { min-width: 0; margin: 0; color: #274663; font-size: 10px; line-height: 1.55; overflow-wrap: anywhere; }
.listing-side-group dd.is-price { color: var(--blue); font-size: 13px; font-weight: 600; }
.listing-sample-note { margin-bottom: 9px; color: #8293a7; font-size: 10px; }
.listing-sample-table { overflow-x: auto; border: 1px solid rgba(31, 100, 180, .14); border-radius: 4px; }
.listing-sample-table table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 10px; }
.listing-sample-table th, .listing-sample-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(31, 100, 180, .1); }
.listing-sample-table th { color: #45627e; background: #f2f7fc; font-weight: 600; }
.listing-sample-table td { color: #60758d; }
.listing-sample-table tbody tr:last-child td { border-bottom: 0; }

.service-matrix-section { position: relative; overflow: hidden; background: radial-gradient(circle at 50% -18%, rgba(58, 183, 231, .12), transparent 34%), linear-gradient(180deg, #f8fbff, #f1f6fc); }
.service-matrix-section::before { content: ''; position: absolute; top: -210px; left: 50%; width: 1380px; height: 430px; opacity: .72; transform: translateX(-50%); background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 14px, rgba(32, 127, 229, .055) 15px 16px); pointer-events: none; }
.service-matrix-section .main-section { position: relative; z-index: 1; padding-top: 68px; padding-bottom: 104px; }
.service-matrix-heading { margin: 0 auto 43px; text-align: center; }
.service-matrix-heading .section-kicker { margin-bottom: 8px; }
.service-matrix-heading h2 { margin: 0; color: #0b2d58; font-size: 34px; line-height: 1.25; font-weight: 600; }
.service-matrix-heading h2::after { content: ''; display: block; width: 48px; height: 2px; margin: 16px auto 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.service-matrix-heading > p:last-child { max-width: 660px; margin: 16px auto 0; color: #72869e; font-size: 13px; }
.service-matrix-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-matrix-card { position: relative; min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(24, 101, 192, .16); border-radius: 8px; box-shadow: 0 10px 26px rgba(9, 58, 117, .045); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; scroll-margin-top: 105px; }
.service-matrix-card:hover, .service-matrix-card:target { transform: translateY(-4px); border-color: rgba(19, 103, 246, .56); box-shadow: 0 18px 36px rgba(9, 65, 133, .11); }
.service-card-top { position: relative; min-height: 126px; padding: 22px 24px; overflow: hidden; display: flex; align-items: center; gap: 19px; background: linear-gradient(120deg, rgba(224, 242, 255, .86), rgba(246, 251, 255, .98) 74%); }
.service-card-top::before { content: ''; position: absolute; top: -88px; right: -30px; width: 260px; height: 175px; opacity: .9; background: repeating-radial-gradient(ellipse at 100% 100%, transparent 0 9px, rgba(44, 145, 224, .08) 10px 11px); }
.service-card-top::after { content: ''; position: absolute; right: -22px; bottom: -68px; width: 190px; height: 120px; border: 1px solid rgba(40, 217, 230, .19); border-radius: 50%; box-shadow: 0 0 0 13px rgba(40, 217, 230, .035), 0 0 0 27px rgba(19, 103, 246, .025); }
.service-visual { position: relative; z-index: 1; width: 72px; height: 72px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 23px; background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(198, 235, 255, .68)); box-shadow: inset 0 0 0 1px rgba(60, 157, 224, .16), 0 12px 22px rgba(25, 112, 190, .14); transform: rotate(-5deg); }
.service-visual::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(35, 157, 220, .46); border-radius: 50%; box-shadow: inset 0 0 18px rgba(40, 217, 230, .18), 0 0 0 6px rgba(19, 103, 246, .055); }
.service-visual::after { content: ''; position: absolute; right: 8px; bottom: 8px; left: 8px; height: 17px; background: linear-gradient(150deg, rgba(12, 93, 191, .15), rgba(40, 217, 230, .33)); border-radius: 50%; transform: skewX(-18deg); }
.service-visual strong { position: relative; z-index: 2; width: 39px; height: 39px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #0c5dcc, #1e9ce1 62%, #35ddd5); border: 3px solid rgba(255, 255, 255, .82); border-radius: 12px; box-shadow: 0 8px 14px rgba(11, 91, 181, .22); font-family: Arial, sans-serif; font-size: 12px; transform: rotate(5deg); }
.service-matrix-card:nth-child(3n + 2) .service-visual strong { background: linear-gradient(145deg, #154bc4, #168be0 62%, #28cadc); }
.service-matrix-card:nth-child(3n) .service-visual strong { background: linear-gradient(145deg, #07569b, #0fa1bf 62%, #47dfc4); }
.service-card-title { position: relative; z-index: 1; min-width: 0; }
.service-card-title small { display: block; margin-bottom: 4px; color: #2e8dc0; font-size: 10px; letter-spacing: .5px; }
.service-card-title h3 { margin: 0; color: #102d50; font-size: 20px; line-height: 1.35; font-weight: 600; }
.service-card-body { min-height: 176px; padding: 19px 24px 22px; }
.service-card-body ul { margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.service-card-body li { position: relative; padding-left: 16px; color: #526a85; font-size: 12px; line-height: 1.7; }
.service-card-body li::before { content: ''; position: absolute; top: .72em; left: 1px; width: 5px; height: 5px; background: linear-gradient(135deg, var(--blue), var(--cyan)); border-radius: 50%; box-shadow: 0 0 0 3px rgba(19, 103, 246, .055); }
.service-detail-page { background: var(--surface); }
.service-detail-shell { padding-top: 40px; padding-bottom: 100px; }
.service-detail-back { display: inline-flex; margin-bottom: 17px; color: #5e7895; font-size: 12px; }
.service-detail-back:hover { color: var(--blue); }
.service-detail-intro { position: relative; overflow: hidden; display: grid; grid-template-columns: 114px minmax(0, 1fr); gap: 28px; align-items: center; padding: 28px 38px; background: #fff; border: 1px solid rgba(29, 99, 183, .14); border-radius: 6px; box-shadow: 0 12px 30px rgba(9, 58, 117, .055); }
.service-detail-intro::before { content: ''; position: absolute; top: -120px; right: -20px; width: 65%; height: 255px; opacity: .75; background: repeating-radial-gradient(ellipse at 100% 100%, transparent 0 12px, rgba(32, 127, 229, .06) 13px 14px); pointer-events: none; }
.service-detail-visual { position: relative; z-index: 1; width: 106px; height: 106px; transform: none; }
.service-detail-visual::before { inset: 17px; }
.service-detail-visual::after { right: 11px; bottom: 12px; left: 11px; height: 23px; }
.service-detail-visual strong { width: 54px; height: 54px; font-size: 15px; }
.service-detail-copy { position: relative; z-index: 1; min-width: 0; }
.service-detail-category { margin: 0 0 4px; color: #2e8dc0; font-size: 11px; }
.service-detail-copy h1 { margin: 0 0 7px; color: #0d2b4e; font-size: 26px; line-height: 1.35; font-weight: 600; }
.service-detail-copy > strong { color: var(--blue); font-size: 13px; font-weight: 400; }
.service-detail-copy > p:last-of-type { max-width: 850px; margin: 10px 0 0; color: #536b86; font-size: 12px; line-height: 1.85; }
.service-detail-actions { margin-top: 17px; display: flex; align-items: center; gap: 10px; }
.service-detail-actions .button-primary, .service-detail-secondary { min-height: 35px; padding: 8px 16px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 4px; font-size: 11px; }
.service-detail-actions .button-primary { color: #fff; background: linear-gradient(110deg, var(--blue), #138fd4); border: 1px solid var(--blue); }
.service-detail-actions .button-primary:hover { box-shadow: 0 7px 18px rgba(19, 103, 246, .23); }
.service-detail-secondary { color: var(--blue); background: #fff; border: 1px solid var(--blue); }
.service-detail-secondary:hover { color: #fff; background: var(--blue); }
.service-detail-content { margin-top: 25px; padding: 0 20px 36px; background: #fff; border: 1px solid rgba(29, 99, 183, .14); border-radius: 6px; box-shadow: 0 12px 30px rgba(9, 58, 117, .035); }
.service-detail-tabs { display: flex; align-items: center; gap: 5px; border-bottom: 1px solid rgba(31, 94, 168, .13); }
.service-detail-tabs button { position: relative; padding: 17px 15px 14px; color: #526982; background: transparent; border: 0; font-size: 12px; }
.service-detail-tabs button::after { content: ''; position: absolute; right: 9px; bottom: -1px; left: 9px; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform .18s ease; }
.service-detail-tabs button:hover, .service-detail-tabs button.is-active { color: var(--blue); }
.service-detail-tabs button.is-active::after { transform: scaleX(1); }
.service-detail-section { padding: 22px 0 0; scroll-margin-top: 98px; }
.service-detail-section + .service-detail-section { margin-top: 25px; }
.service-detail-section h2 { margin: 0 0 17px; color: #173552; font-size: 15px; font-weight: 600; }
.service-process { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 0 16px 8px; }
.service-process-step { position: relative; min-width: 0; flex: 1; display: grid; justify-items: center; text-align: center; }
.service-process-step:not(:last-child)::after { content: '›'; position: absolute; top: 31px; right: -12px; color: #a9cdfd; font-family: Arial, sans-serif; font-size: 34px; line-height: 1; font-weight: 600; }
.service-process-step > span { width: 69px; height: 69px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #1d75f5, #27c5df); border: 7px solid #eaf3ff; border-radius: 50%; box-shadow: 0 8px 18px rgba(29, 108, 228, .17); font-family: Arial, sans-serif; font-size: 11px; font-weight: 600; }
.service-process-step strong { margin-top: 12px; padding: 4px 9px; color: #fff; background: var(--blue); border-radius: 13px; font-size: 11px; font-weight: 600; }
.service-process-step small { margin-top: 7px; color: #60758d; font-size: 10px; line-height: 1.5; }
.service-value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.service-value-card { position: relative; min-height: 164px; overflow: hidden; padding: 24px 18px 20px; display: grid; justify-items: center; align-content: center; text-align: center; background: linear-gradient(135deg, #f4f9ff, #edf5fc); border: 1px solid rgba(28, 107, 203, .08); border-radius: 5px; }
.service-value-card::before { content: ''; position: absolute; inset: -24px; opacity: .6; background: repeating-radial-gradient(ellipse at 20% 110%, transparent 0 14px, rgba(38, 131, 228, .06) 15px 16px); pointer-events: none; }
.service-value-card > * { position: relative; z-index: 1; }
.service-value-card > span { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--blue), #2bc4da); border-radius: 12px; box-shadow: 0 7px 14px rgba(19, 103, 246, .2); font-family: Arial, sans-serif; font-size: 13px; font-weight: 600; }
.service-value-card h3 { margin: 12px 0 5px; color: #193b63; font-size: 15px; }
.service-value-card p { margin: 0; color: #637993; font-size: 11px; line-height: 1.7; }
.service-feature-panel { min-height: 275px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); overflow: hidden; background: linear-gradient(108deg, #eef7ff, #f8fbff); }
.service-feature-art { position: relative; min-height: 275px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 45% 48%, rgba(83, 203, 255, .34), transparent 22%), linear-gradient(135deg, #eaf5ff, #f5fbff); }
.service-feature-art::before { content: ''; position: absolute; inset: -50px; opacity: .7; background: repeating-radial-gradient(ellipse at 43% 50%, transparent 0 16px, rgba(29, 128, 230, .08) 17px 18px); transform: rotate(-15deg); }
.service-feature-art::after { content: ''; position: absolute; width: 190px; height: 62px; bottom: 33px; left: 50%; background: linear-gradient(135deg, rgba(16, 95, 199, .13), rgba(43, 216, 226, .31)); border-radius: 50%; transform: translateX(-50%) skewX(-21deg); box-shadow: 0 0 0 11px rgba(19, 103, 246, .05), 0 0 0 23px rgba(40, 217, 230, .04); }
.service-feature-art .service-visual { z-index: 2; width: 124px; height: 124px; box-shadow: inset 0 0 0 1px rgba(60, 157, 224, .16), 0 18px 30px rgba(25, 112, 190, .16); }
.service-feature-art .service-visual strong { width: 65px; height: 65px; font-size: 17px; }
.service-feature-art i, .service-feature-art b { position: absolute; z-index: 2; display: block; width: 9px; height: 9px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 5px rgba(40, 217, 230, .1); }
.service-feature-art i { top: 30%; left: 25%; }
.service-feature-art b { right: 23%; bottom: 26%; background: var(--blue); box-shadow: 0 0 0 5px rgba(19, 103, 246, .1); }
.service-feature-list { padding: 27px 35px; display: grid; align-content: center; gap: 13px; }
.service-feature-row { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 10px; align-items: center; }
.service-feature-row > strong { color: #76a7fa; font-family: Arial, sans-serif; font-size: 29px; line-height: 1; }
.service-feature-row h3 { display: inline-flex; width: fit-content; margin: 0 0 4px; padding: 5px 11px; color: #fff; background: linear-gradient(110deg, var(--blue), #198bd7); border-radius: 13px; font-size: 11px; font-weight: 600; }
.service-feature-row p { margin: 0; color: #526b86; font-size: 11px; line-height: 1.6; }

.education-section { color: #fff; background: linear-gradient(135deg, #041633, #06356c 62%, #0a76b7); }
.education-section .section-head h2 { color: #fff; }
.education-section .section-head p { color: rgba(216, 239, 255, .72); }
.education-section .section-link { color: var(--cyan); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.course-card { position: relative; min-height: 255px; padding: 25px; overflow: hidden; background: rgba(4, 24, 64, .7); border: 1px solid rgba(137, 224, 255, .25); border-radius: 5px; }
.course-card::after { content: ''; position: absolute; right: -38px; bottom: -40px; width: 140px; height: 140px; border: 1px solid rgba(97, 244, 213, .45); transform: rotate(45deg); box-shadow: 0 0 0 13px rgba(97, 244, 213, .04); }
.course-level { color: var(--green); font-size: 11px; letter-spacing: 1px; }
.course-card h3 { max-width: 260px; margin: 16px 0 27px; font-size: 20px; line-height: 1.4; font-weight: 600; }
.course-card .course-meta { display: flex; justify-content: space-between; color: rgba(211, 237, 255, .67); font-size: 12px; }
.course-card .course-meta strong { color: #fff; font-weight: 400; }

.industry-journal-section { background: #f4f7fb; }
.industry-journal-section .main-section { padding-top: 86px; padding-bottom: 96px; }
.industry-journal-heading { text-align: center; }
.industry-journal-heading h2 { position: relative; margin: 0; color: #0c1e3b; font-size: 34px; line-height: 1.25; font-weight: 600; }
.industry-journal-heading h2::after { content: ''; display: block; width: 48px; height: 2px; margin: 18px auto 0; background: #237fe3; }
.industry-journal-metrics { display: flex; align-items: center; justify-content: center; gap: 58px; margin-top: 48px; }
.industry-journal-metric { min-width: 110px; text-align: center; }
.industry-journal-metric strong { display: block; color: #2c7dda; font-size: 34px; line-height: 1.2; font-weight: 600; font-variant-numeric: tabular-nums; }
.industry-journal-metric span { display: block; margin-top: 8px; color: #6d7888; font-size: 13px; }
.industry-journal-grid { width: min(1120px, 100%); margin: 62px auto 0; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 42px 18px; }
.industry-journal-company { position: relative; min-width: 0; min-height: 92px; padding: 10px 6px 8px; display: grid; grid-template-rows: 48px 20px; justify-items: center; align-content: start; gap: 8px; color: #536278; border-radius: 5px; text-align: center; font-size: 12px; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.industry-journal-company:hover { color: #0b5bb7; background: rgba(255, 255, 255, .78); box-shadow: 0 10px 24px rgba(30, 82, 143, .08); transform: translateY(-3px); }
.industry-journal-company:focus-visible { outline: 2px solid rgba(35, 127, 227, .7); outline-offset: 3px; }
.industry-journal-company.is-disabled { cursor: default; }
.industry-journal-company.is-disabled:hover { color: #536278; background: transparent; box-shadow: none; transform: none; }
.industry-journal-logo { width: 104px; height: 48px; display: flex; align-items: center; justify-content: center; }
.industry-journal-logo img { width: auto; max-width: 100%; height: auto; max-height: 40px; object-fit: contain; }
.industry-journal-logo-fallback { color: #1978d5; border: 1px solid rgba(35, 127, 227, .22); font-size: 15px; font-weight: 600; }
.industry-journal-name { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.industry-journal-link-icon { position: absolute; top: 5px; right: 5px; width: auto; color: #2b7ed8; opacity: 0; transform: translate(-3px, 3px); transition: opacity .2s ease, transform .2s ease; }
.industry-journal-company:hover .industry-journal-link-icon, .industry-journal-company:focus-visible .industry-journal-link-icon { opacity: 1; transform: translate(0, 0); }
.industry-journal-company.is-disabled .industry-journal-link-icon { display: none; }

.advantage-band { background: #f2f7fd; }
.hex-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: start; }
.hex-card { position: relative; min-height: 254px; padding: 35px 24px 28px; background: #fff; border: 1px solid rgba(17, 102, 201, .16); clip-path: polygon(13% 0, 87% 0, 100% 15%, 100% 85%, 87% 100%, 13% 100%, 0 85%, 0 15%); transition: transform .22s ease, box-shadow .22s ease; }
.hex-card:nth-child(even) { margin-top: 28px; }
.hex-card:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(11, 72, 148, .13); }
.hex-no { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; color: #0d81a5; background: rgba(40, 218, 216, .12); border-radius: 50%; font-size: 11px; }
.hex-card h3 { margin: 22px 0 10px; font-size: 18px; }
.hex-card p { margin: 0; color: #70859f; font-size: 13px; }

.consultation { background: #fff; }
.consult-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 70px; align-items: center; }
.consult-video { position: relative; min-height: 300px; padding: 28px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #052053, #0a76c3); border-radius: 5px; }
.consult-video::before { content: ''; position: absolute; inset: 0; opacity: .32; background: repeating-linear-gradient(100deg, transparent 0 18px, rgba(140, 226, 255, .15) 19px, transparent 20px); }
.consult-video > video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.consult-video .video-label { position: relative; z-index: 1; color: rgba(218, 246, 255, .75); font-size: 11px; letter-spacing: 1px; }
.consult-video h3 { position: relative; z-index: 1; max-width: 320px; margin: 42px 0 0; font-size: 25px; line-height: 1.3; }
.consult-video .video-time { position: absolute; z-index: 1; right: 28px; bottom: 24px; color: var(--cyan); font-size: 12px; }
.consult-copy blockquote { margin: 0 0 24px; color: #203b5d; font-size: 20px; line-height: 1.6; font-weight: 600; }
.consult-copy blockquote::before { content: '“'; display: block; height: 26px; color: var(--blue); font-family: Georgia, serif; font-size: 54px; line-height: .8; }
.consult-person { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.person-avatar { width: 42px; height: 42px; display: grid; place-items: center; color: #075485; background: linear-gradient(135deg, #b6f4f4, #d8fce6); border-radius: 50%; font-size: 13px; font-weight: 600; }
.person-copy strong { display: block; font-size: 14px; }
.person-copy span { color: #8192a7; font-size: 12px; }
.consult-logo { margin-left: auto; color: #3260a0; font-size: 12px; letter-spacing: 1.4px; }

.dark-section { color: #fff; background: #061938; }
.dark-section .section-head p { color: rgba(207, 231, 250, .65); }
.news-list { display: grid; border-top: 1px solid rgba(142, 214, 255, .2); }
.news-row { display: grid; grid-template-columns: 150px 125px minmax(0, 1fr) 22px; gap: 20px; align-items: center; min-height: 90px; padding: 16px 0; color: rgba(215, 238, 255, .75); border-bottom: 1px solid rgba(142, 214, 255, .16); }
.news-row:hover { color: #fff; }
.news-date { font-family: 'Arial', sans-serif; font-size: 12px; }
.news-type { color: var(--cyan); font-size: 12px; }
.news-title { font-size: 17px; font-weight: 600; }
.news-arrow { font-size: 19px; color: var(--cyan); }

.page-content { background: var(--surface); }
.about-story-section { width: 100%; background: #fff; }
.about-story-section .main-section { padding-top: 96px; padding-bottom: 110px; }
.about-story-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 72px; align-items: center; }
.about-story-layout > * { min-width: 0; }
.about-story-media { position: relative; min-height: 330px; aspect-ratio: 16 / 9; overflow: hidden; padding: 31px; color: #fff; background: linear-gradient(118deg, #062455, #087ac8); border-radius: 5px; box-shadow: 0 18px 38px rgba(7, 55, 113, .13); }
.about-story-media::before { content: ''; position: absolute; inset: 0; z-index: 1; opacity: .3; background: repeating-linear-gradient(99deg, transparent 0 22px, rgba(156, 224, 255, .19) 23px, transparent 24px); pointer-events: none; }
.about-story-media::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(2, 25, 66, .34), transparent 75%); pointer-events: none; }
.about-story-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-story-media[data-video] { cursor: pointer; }
.about-story-label { position: relative; z-index: 2; color: rgba(218, 243, 255, .74); font-size: 11px; letter-spacing: 1.4px; }
.about-story-copy { min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.about-story-quote-mark { height: 38px; color: #1675ee; font-family: Georgia, serif; font-size: 62px; line-height: .9; }
.about-story-copy blockquote { margin: 6px 0 30px; color: #17375b; font-size: 19px; line-height: 1.8; font-weight: 600; }
.about-story-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 22px; border-top: 1px solid rgba(35, 102, 181, .14); }
.about-story-signature strong, .about-story-signature span { display: block; }
.about-story-signature strong { color: #153557; font-size: 14px; }
.about-story-signature span { margin-top: 4px; color: #8292a5; font-size: 12px; }
.about-story-logo { margin-left: auto; display: inline-flex; align-items: center; gap: 10px; }
.about-story-logo .brand-symbol, .about-story-logo .brand-logo-image { width: 42px; height: 42px; flex: 0 0 auto; }
.about-story-logo > span:last-child { display: grid; gap: 3px; line-height: 1; }
.about-story-logo strong { color: #164c88; font-size: 14px; }
.about-story-logo small { color: #7592b4; font-size: 8px; letter-spacing: 1px; }
.subtle-panel { padding: 31px; background: #fff; border: 1px solid rgba(28, 105, 193, .12); border-radius: 5px; }
.content-two-col { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 22px; align-items: start; }
.content-two-col h2, .subtle-panel h2 { margin: 0 0 16px; font-size: 27px; }
.content-two-col p, .subtle-panel p { color: #647b96; font-size: 14px; }
.timeline { position: relative; display: grid; gap: 0; margin-top: 30px; }
.timeline::before { content: ''; position: absolute; top: 10px; bottom: 10px; left: 72px; width: 1px; background: linear-gradient(var(--cyan), rgba(19, 103, 246, .1)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 57px 1fr; gap: 31px; padding-bottom: 28px; }
.timeline-year { color: var(--blue); font-size: 14px; font-family: Arial, sans-serif; font-weight: 600; }
.timeline-copy { position: relative; padding: 0 0 0 20px; color: #35516f; font-size: 14px; }
.timeline-copy::before { content: ''; position: absolute; top: 7px; left: -5px; width: 9px; height: 9px; background: var(--cyan); border: 3px solid #d9fbfb; border-radius: 50%; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 6px 11px; color: #17618d; background: rgba(31, 205, 209, .1); border-radius: 3px; font-size: 12px; }

.detail-wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) 330px; gap: 24px; }
.detail-card { padding: 34px; background: #fff; border: 1px solid rgba(28, 105, 193, .12); border-radius: 5px; }
.detail-card h2 { margin: 0 0 12px; font-size: 30px; line-height: 1.3; }
.detail-card .lead { margin: 0 0 28px; color: #647b96; }
.detail-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0; }
.detail-kpi { padding: 14px; background: #f2f7fd; border-left: 2px solid var(--cyan); }
.detail-kpi small { display: block; color: #7f93ab; font-size: 11px; }
.detail-kpi strong { color: #124b97; font-size: 17px; }
.detail-side { padding: 25px; color: #d9f2ff; background: linear-gradient(160deg, #05204e, #0a65b1); border-radius: 5px; }
.detail-side h3 { margin: 0 0 18px; font-size: 18px; }
.detail-side ul { margin: 0; padding: 0; list-style: none; }
.detail-side li { padding: 11px 0; border-bottom: 1px solid rgba(164, 223, 255, .18); color: rgba(223, 245, 255, .75); font-size: 13px; }
.detail-side li::before { content: '↗'; margin-right: 8px; color: var(--cyan); }

.education-list { display: grid; gap: 14px; }
.education-row { display: grid; grid-template-columns: 116px minmax(0, 1fr) 145px 115px; gap: 20px; align-items: center; padding: 21px 24px; background: #fff; border: 1px solid rgba(28, 105, 193, .12); border-radius: 5px; }
.education-row:hover { border-color: rgba(19, 103, 246, .3); }
.education-level { color: var(--blue); font-size: 12px; }
.education-row h3 { margin: 0; font-size: 18px; }
.education-row span { color: #7890a9; font-size: 12px; }
.qr-trigger { display: inline-flex; align-items: center; justify-content: center; padding: 9px 11px; color: #08777f; background: rgba(36, 213, 209, .12); border: 1px solid rgba(36, 213, 209, .24); border-radius: 4px; font-size: 12px; }
.qr-trigger:hover { color: #064e75; background: rgba(36, 213, 209, .23); }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.journal-card { min-height: 260px; padding: 23px; color: #fff; background: linear-gradient(135deg, #072454, #0e6bb1); border-radius: 5px; }
.journal-card:nth-child(2) { background: linear-gradient(135deg, #062a55, #168aa1); }
.journal-card:nth-child(3) { background: linear-gradient(135deg, #11245e, #3268c3); }
.journal-issue { color: rgba(204, 237, 255, .72); font-family: Arial, sans-serif; font-size: 12px; }
.journal-theme { margin-top: 32px; color: var(--green); font-size: 11px; }
.journal-card h3 { margin: 9px 0 13px; font-size: 20px; line-height: 1.4; }
.journal-card p { margin: 0; color: rgba(222, 241, 255, .72); font-size: 13px; }

.conference-list { display: grid; gap: 12px; }
.conference-row { display: grid; grid-template-columns: 150px 100px minmax(0, 1fr) 75px; align-items: center; gap: 18px; padding: 21px 24px; background: #fff; border: 1px solid rgba(28, 105, 193, .12); border-radius: 5px; }
.conference-date { color: var(--blue); font-family: Arial, sans-serif; font-size: 13px; font-weight: 600; }
.conference-city { color: #7990a9; font-size: 12px; }
.conference-row h3 { margin: 0 0 4px; font-size: 18px; }
.conference-row p { margin: 0; color: #7086a0; font-size: 13px; }
.conference-status { justify-self: end; padding: 5px 9px; color: #098287; background: rgba(45, 216, 205, .12); border-radius: 3px; font-size: 11px; }

.news-hub-section { position: relative; overflow: hidden; background: radial-gradient(circle at 50% -12%, rgba(53, 183, 231, .13), transparent 31%), linear-gradient(180deg, #f8fbff, #f1f6fc); }
.news-hub-section::before { content: ''; position: absolute; top: -245px; left: 50%; width: 1450px; height: 470px; opacity: .7; transform: translateX(-50%); background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 14px, rgba(32, 127, 229, .052) 15px 16px); pointer-events: none; }
.news-hub-section .main-section { position: relative; z-index: 1; padding-top: 62px; padding-bottom: 104px; }
.news-hub-heading { margin: 0 auto 35px; text-align: center; }
.news-hub-heading .section-kicker { margin-bottom: 8px; }
.news-hub-heading h1 { margin: 0; color: #0b2d58; font-size: 34px; line-height: 1.25; font-weight: 600; }
.news-hub-heading h1::after { content: ''; display: block; width: 48px; height: 2px; margin: 16px auto 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.news-hub-heading > p:last-child { max-width: 660px; margin: 15px auto 0; color: #72869e; font-size: 13px; }
.news-feature-slider { position: relative; width: min(1100px, 100%); min-height: 390px; margin: 0 auto; overflow: hidden; background: #0c4ac6; border-radius: 8px; box-shadow: 0 17px 38px rgba(6, 54, 121, .16); }
.news-feature-slide { min-height: 390px; display: none; grid-template-columns: minmax(0, 2.05fr) minmax(300px, .95fr); }
.news-feature-slide.is-active { display: grid; animation: fadeIn .32s ease; }
.news-feature-media { position: relative; min-width: 0; min-height: 390px; overflow: hidden; background: #092d76; }
.news-feature-media::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(2, 16, 54, .82)); pointer-events: none; }
.news-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 5.5s ease; }
.news-feature-slide.is-active .news-feature-media img { transform: scale(1.025); }
.news-feature-caption { position: absolute; z-index: 2; right: 24px; bottom: 18px; left: 24px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; color: #fff; }
.news-feature-caption > span { padding: 4px 8px; color: #042d69; background: var(--cyan); border-radius: 3px; font-size: 10px; font-weight: 600; }
.news-feature-caption h3 { min-width: 0; margin: 0; overflow: hidden; font-size: 16px; line-height: 1.4; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.news-feature-caption time { color: rgba(230, 245, 255, .76); font-size: 10px; }
.news-feature-copy { position: relative; min-width: 0; padding: 42px 31px 82px; color: #fff; background: linear-gradient(145deg, #1367f6, #087fc5 64%, #09aab2); }
.news-feature-copy::before { content: ''; position: absolute; top: -58px; right: -80px; width: 260px; height: 260px; border: 1px solid rgba(155, 242, 255, .22); border-radius: 50%; box-shadow: 0 0 0 18px rgba(155, 242, 255, .035), 0 0 0 41px rgba(155, 242, 255, .025); }
.news-quote-mark { position: relative; z-index: 1; display: block; height: 42px; color: rgba(188, 238, 255, .36); font-family: Georgia, serif; font-size: 68px; line-height: .75; }
.news-feature-copy small { position: relative; z-index: 1; color: rgba(215, 245, 255, .7); font-size: 9px; letter-spacing: 1px; }
.news-feature-copy h3 { position: relative; z-index: 1; margin: 12px 0 10px; font-size: 20px; line-height: 1.45; font-weight: 600; }
.news-feature-copy p { position: relative; z-index: 1; margin: 0; color: rgba(227, 247, 255, .78); font-size: 12px; line-height: 1.8; }
.news-slider-controls { position: absolute; z-index: 4; right: 25px; bottom: 21px; display: flex; align-items: center; gap: 8px; }
.news-slider-controls > button { width: 29px; height: 29px; display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; font-family: Arial, sans-serif; font-size: 20px; line-height: 1; }
.news-slider-controls > button:hover { background: rgba(255, 255, 255, .18); }
.news-slider-dots { margin-right: 7px; display: flex; gap: 5px; }
.news-slider-dots button { width: 21px; height: 2px; padding: 0; opacity: .48; background: #fff; border: 0; transition: opacity .2s ease, width .2s ease; }
.news-slider-dots button.is-active { width: 34px; opacity: 1; }
.news-category-tabs { width: min(1100px, 100%); margin: 35px auto 21px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(29, 99, 183, .14); }
.news-category-tabs button { position: relative; padding: 11px 13px 10px; color: #526982; background: transparent; border: 0; font-size: 12px; }
.news-category-tabs button::after { content: ''; position: absolute; right: 10px; bottom: -1px; left: 10px; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform .18s ease; }
.news-category-tabs button:hover, .news-category-tabs button.is-active { color: var(--blue); }
.news-category-tabs button.is-active::after { transform: scaleX(1); }
.news-gallery-grid { width: min(1100px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-gallery-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(28, 105, 193, .12); border-radius: 7px; box-shadow: 0 9px 23px rgba(9, 58, 117, .04); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.news-gallery-card:hover { transform: translateY(-4px); border-color: rgba(19, 103, 246, .4); box-shadow: 0 17px 33px rgba(9, 58, 117, .1); }
.news-gallery-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #092b65; }
.news-gallery-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.news-gallery-card:hover .news-gallery-media img { transform: scale(1.035); }
.news-gallery-media span { position: absolute; top: 11px; left: 11px; padding: 4px 8px; color: #fff; background: rgba(6, 39, 94, .78); border: 1px solid rgba(141, 224, 255, .28); border-radius: 3px; backdrop-filter: blur(6px); font-size: 9px; }
.news-gallery-body { min-height: 183px; padding: 17px 18px 16px; display: flex; flex-direction: column; }
.news-gallery-body h2 { min-height: 44px; margin: 0 0 8px; display: -webkit-box; overflow: hidden; color: #153759; font-size: 15px; line-height: 1.5; font-weight: 600; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.news-gallery-body p { margin: 0; display: -webkit-box; overflow: hidden; color: #667d96; font-size: 11px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-gallery-body time { margin-top: auto; padding-top: 13px; color: #96a6b7; font-size: 9px; }
.news-gallery-empty { grid-column: 1 / -1; min-height: 220px; display: grid; place-items: center; color: #8394a7; background: #fff; border: 1px dashed rgba(28, 105, 193, .18); }
.news-pagination { margin-top: 30px; display: flex; justify-content: center; gap: 6px; }
.news-pagination button { min-width: 34px; height: 34px; padding: 0 10px; color: #607691; background: #fff; border: 1px solid rgba(30, 95, 172, .14); border-radius: 3px; }
.news-pagination button:hover, .news-pagination button.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.news-pagination button:disabled { opacity: .42; cursor: default; }

.site-footer { color: rgba(218, 238, 255, .72); background: #04152f; }
.footer-cta { position: relative; overflow: hidden; background: linear-gradient(110deg, #064ea3, #09a1bf 55%, #0e70b3); }
.footer-cta::after { content: ''; position: absolute; top: -60px; right: 12%; width: 410px; height: 190px; border: 1px solid rgba(174, 249, 255, .28); transform: skewX(-31deg) rotate(-10deg); box-shadow: 0 0 0 15px rgba(106, 239, 222, .05), 0 0 0 32px rgba(106, 239, 222, .04); }
.footer-cta-inner { position: relative; z-index: 1; width: min(var(--page-width), calc(100% - 48px)); min-height: 450px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.footer-cta h2 { margin: 0 0 8px; color: #fff; font-size: 28px; }
.footer-cta p { margin: 0; color: rgba(223, 247, 255, .76); font-size: 14px; }
.qr-mini { position: relative; width: 74px; height: 74px; flex: 0 0 auto; display: grid; place-items: center; padding: 7px; background: #fff; border-radius: 4px; }
.qr-mini::before { content: ''; width: 100%; height: 100%; background-color: #fff; background-image: var(--qr-image, url('../images/qr-consult.png')); background-position: center; background-size: contain; background-repeat: no-repeat; }
.footer-main { width: min(var(--page-width), calc(100% - 48px)); margin: 0 auto; padding: 62px 0 38px; }
.footer-top { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 35px; padding-bottom: 42px; border-bottom: 1px solid rgba(157, 215, 255, .14); }
.footer-brand p { max-width: 220px; margin: 18px 0 0; color: rgba(187, 216, 239, .62); font-size: 12px; }
.footer-column h3 { margin: 0 0 17px; color: #fff; font-size: 14px; }
.footer-column a { display: block; width: fit-content; margin: 0 0 8px; color: rgba(182, 211, 237, .62); font-size: 12px; }
.footer-column a:hover { color: var(--cyan); }
.friend-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; padding: 28px 0; border-bottom: 1px solid rgba(157, 215, 255, .14); }
.friend-links label { display: block; margin-bottom: 7px; color: rgba(173, 209, 237, .58); font-size: 11px; }
.friend-links select { width: 100%; padding: 8px 10px; color: rgba(220, 241, 255, .82); background: #092449; border: 1px solid rgba(137, 208, 255, .2); border-radius: 3px; font-size: 12px; outline: 0; }
.footer-bottom { padding-top: 23px; color: rgba(156, 192, 223, .52); font-size: 11px; text-align: center; }

.modal { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(1, 13, 34, .7); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(400px, 100%); padding: 30px; text-align: center; background: #fff; border-radius: 6px; box-shadow: 0 25px 70px rgba(0, 15, 40, .35); }
.modal-card h3 { margin: 0 0 7px; font-size: 21px; }
.modal-card p { margin: 0 0 20px; color: #71859c; font-size: 13px; }
.qr-large { width: 180px; height: 180px; margin: 0 auto 17px; padding: 12px; background: #fff url('../images/qr-consult.png') center / 156px 156px no-repeat; border: 1px solid #e0eaf4; }
.modal-close { position: absolute; top: 11px; right: 12px; width: 28px; height: 28px; color: #617692; background: transparent; border: 0; font-size: 24px; line-height: 1; }

.back-top { position: fixed; right: 22px; bottom: 23px; z-index: 45; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--blue); border: 0; border-radius: 50%; box-shadow: 0 8px 20px rgba(14, 97, 204, .28); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.back-top.is-visible { opacity: 1; visibility: visible; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes partnerMarquee { to { transform: translate3d(-25%, 0, 0); } }
@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes rotateRingReverse { to { transform: rotate(-360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pjaxProgress { 0% { transform: scaleX(0); transform-origin: left; } 55% { transform: scaleX(.72); transform-origin: left; } 56% { transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }
@keyframes heroGridDrift { to { background-position: 48px 48px; } }
@keyframes heroScan { 0% { left: -22%; opacity: 0; } 18% { opacity: .8; } 70% { opacity: .8; } 100% { left: 104%; opacity: 0; } }
@keyframes orbitGlow { 0%, 100% { opacity: .72; filter: drop-shadow(0 0 14px rgba(77, 210, 255, .2)); } 50% { opacity: 1; filter: drop-shadow(0 0 25px rgba(77, 228, 255, .45)); } }
@keyframes orbitPulse { 0%, 100% { box-shadow: 0 0 20px rgba(62, 192, 255, .1), inset 0 0 18px rgba(60, 210, 255, .06); } 50% { box-shadow: 0 0 36px rgba(62, 210, 255, .26), inset 0 0 28px rgba(60, 225, 255, .14); } }
@keyframes orbitMeridianA { to { transform: rotate(360deg); } }
@keyframes orbitMeridianB { to { transform: rotate(-360deg); } }
@keyframes orbitLongitudeA { from { transform: rotate(46deg); } to { transform: rotate(406deg); } }
@keyframes orbitLongitudeB { from { transform: rotate(-46deg); } to { transform: rotate(-406deg); } }
@keyframes orbitLatitude { 0%, 100% { opacity: .42; transform: translateY(-2px); } 50% { opacity: 1; transform: translateY(3px); } }
@keyframes orbitHaloA { from { transform: rotate(14deg); } to { transform: rotate(374deg); } }
@keyframes orbitHaloB { from { transform: rotate(68deg); } to { transform: rotate(-292deg); } }
@keyframes orbitAssemblySpin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .main-nav { gap: 0; }
  .nav-link { padding-right: 8px; padding-left: 8px; font-size: 13px; }
  .header-inner { gap: 14px; }
  .brand-mark { min-width: 235px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(355px, .8fr); gap: 28px; }
  .hero h1 { font-size: 45px; }
  .hex-grid { grid-template-columns: repeat(3, 1fr); }
  .hex-card:nth-child(even) { margin-top: 0; }
  .hex-card:nth-child(2), .hex-card:nth-child(5) { margin-top: 28px; }
  .market-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr); gap: 38px; }
  .market-filter-row { grid-template-columns: repeat(2, minmax(180px, 1fr)) auto; }
  .market-reset { grid-column: 3; grid-row: 1 / span 2; align-self: end; }
  .listing-summary { grid-template-columns: minmax(0, 1.45fr) minmax(350px, .85fr); }
  .listing-summary-main, .listing-summary-purchase { padding: 25px; }
  .listing-detail-layout { grid-template-columns: minmax(0, 1.75fr) minmax(310px, .95fr); }
  .listing-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-info-item:nth-child(3n) { border-right: 1px solid rgba(31, 100, 180, .09); }
  .listing-info-item:nth-child(2n) { border-right: 0; }
  .footer-top { grid-template-columns: 1.2fr repeat(4, 1fr); gap: 22px; }
}

@media (max-width: 840px) {
  .header-inner { height: 68px; }
  .main-nav, .header-action { display: none; }
  .mobile-menu-button { display: block; margin-left: auto; }
  .site-header.menu-open .main-nav { position: absolute; top: 68px; right: 16px; left: 16px; display: grid; gap: 0; padding: 9px; background: rgba(3, 19, 49, .98); border: 1px solid rgba(99, 196, 255, .25); }
  .site-header.menu-open .nav-item { border-bottom: 1px solid rgba(162, 220, 255, .1); }
  .site-header.menu-open .nav-link { width: 100%; padding: 12px 11px; }
  .site-header.menu-open .nav-link.active::after { right: auto; bottom: 0; left: 11px; width: 34px; }
  .site-header.menu-open .submenu { position: static; display: grid; grid-template-columns: repeat(2, 1fr); width: auto; padding: 0 0 6px 11px; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; background: transparent; }
  .site-header.menu-open .submenu a { padding: 7px 8px; font-size: 12px; }
  .hero, .hero-shell { min-height: auto; }
  .hero-shell { display: block; padding: 125px 0 172px; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 540px; font-size: 42px; }
  .hero-visual { min-height: 320px; margin-top: 25px; }
  .hero-dashboard { right: 7%; width: 310px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 12px 0; }
  .stat-item { padding: 10px 15px; }
  .stat-item:nth-child(odd)::before { display: none; }
  .stat-item:nth-child(n + 3)::before { display: block; top: 8px; bottom: 8px; }
  .main-section { padding: 78px 0; }
  .overview-layout, .consult-layout, .about-story-layout, .content-two-col, .detail-wrap { grid-template-columns: 1fr; gap: 35px; }
  .about-story-media { min-height: 310px; }
  .service-matrix-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-grid, .transaction-grid { grid-template-columns: repeat(2, 1fr); }
  .market-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .market-search-panel { max-width: 600px; align-self: auto; }
  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-summary { grid-template-columns: 1fr; }
  .listing-summary-purchase { border-top: 1px solid rgba(31, 99, 178, .13); border-left: 0; }
  .listing-purchase-body { grid-template-columns: 112px minmax(0, 1fr); }
  .listing-detail-layout { grid-template-columns: 1fr; gap: 25px; }
  .service-detail-intro { grid-template-columns: 92px minmax(0, 1fr); gap: 21px; padding: 25px; }
  .service-detail-visual { width: 88px; height: 88px; }
  .service-detail-visual strong { width: 47px; height: 47px; }
  .service-feature-panel { grid-template-columns: 1fr; }
  .service-feature-art { min-height: 225px; }
  .news-feature-slide { grid-template-columns: 1fr; }
  .news-feature-slider, .news-feature-slide { min-height: 0; }
  .news-feature-media { min-height: 340px; }
  .news-feature-copy { min-height: 210px; padding: 30px 28px 74px; }
  .news-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-journal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 14px; }
  .consult-video { min-height: 260px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .friend-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .header-inner, .hero-shell, .stats-inner, .main-section, .footer-cta-inner, .footer-main { width: min(calc(100% - 32px), var(--page-width)); }
  .main-section { width: auto; margin-right: 16px; margin-left: 16px; }
  .header-inner { min-width: 0; }
  .brand-mark { min-width: 0; flex: 1 1 auto; }
  .brand-logo-image { width: 40px; height: 40px; }
  .mobile-menu-button { flex: 0 0 auto; }
  .brand-en { display: none; }
  .hero-shell { padding-top: 113px; padding-bottom: 158px; }
  .hero h1, .page-hero .hero h1 { max-width: 100%; font-size: 32px; line-height: 1.24; overflow-wrap: anywhere; word-break: break-all; }
  .hero-description { font-size: 14px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-visual { min-height: 260px; }
  .hero-visual::before { top: 8px; right: 31px; width: 168px; height: 168px; }
  .hero-visual::after { top: 24px; right: 47px; width: 136px; height: 136px; }
  .hero-dashboard { right: 0; bottom: 0; width: min(278px, 86%); transform: scale(.78); transform-origin: right bottom; }
  .page-hero .hero-shell { padding-bottom: 150px; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head h2 { font-size: 28px; }
  .section-head .section-link { margin-top: 16px; }
  .transaction-grid, .course-grid, .journal-grid { grid-template-columns: 1fr; }
  .service-matrix-section .main-section { padding-top: 55px; padding-bottom: 70px; }
  .service-matrix-heading { margin-bottom: 32px; }
  .service-matrix-heading h2 { font-size: 28px; }
  .service-matrix-heading > p:last-child { font-size: 12px; }
  .service-matrix-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card-top { min-height: 112px; padding: 18px 20px; }
  .service-visual { width: 64px; height: 64px; }
  .service-card-title h3 { font-size: 18px; }
  .service-card-body { min-height: 0; padding: 17px 20px 20px; }
  .service-detail-shell { padding-top: 34px; padding-bottom: 68px; }
  .service-detail-intro { grid-template-columns: 1fr; justify-items: center; gap: 13px; padding: 22px 18px 24px; text-align: center; }
  .service-detail-visual { width: 82px; height: 82px; }
  .service-detail-visual strong { width: 44px; height: 44px; }
  .service-detail-copy h1 { font-size: 23px; }
  .service-detail-copy > p:last-of-type { font-size: 12px; text-align: left; }
  .service-detail-actions { justify-content: center; flex-wrap: wrap; }
  .service-detail-content { padding: 0 14px 25px; }
  .service-detail-tabs { overflow-x: auto; }
  .service-detail-tabs button { flex: 0 0 auto; padding-right: 12px; padding-left: 12px; }
  .service-detail-section { padding-top: 19px; }
  .service-process { padding: 0 8px; display: grid; grid-template-columns: 1fr; gap: 17px; }
  .service-process-step { grid-template-columns: 53px minmax(0, 1fr); grid-template-rows: auto auto; justify-items: start; column-gap: 11px; text-align: left; }
  .service-process-step:not(:last-child)::after { content: '↓'; top: auto; right: auto; bottom: -18px; left: 20px; font-size: 24px; }
  .service-process-step > span { grid-row: 1 / span 2; width: 53px; height: 53px; border-width: 5px; }
  .service-process-step strong { margin-top: 2px; }
  .service-process-step small { margin-top: 3px; }
  .service-value-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-value-card { min-height: 140px; }
  .service-feature-art { min-height: 195px; }
  .service-feature-art .service-visual { width: 94px; height: 94px; }
  .service-feature-art .service-visual strong { width: 52px; height: 52px; }
  .service-feature-list { padding: 22px 19px; }
  .service-feature-row { grid-template-columns: 32px minmax(0, 1fr); gap: 8px; }
  .service-feature-row > strong { font-size: 24px; }
  .news-hub-section .main-section { padding-top: 52px; padding-bottom: 70px; }
  .news-hub-heading { margin-bottom: 29px; }
  .news-hub-heading h1 { font-size: 29px; }
  .news-hub-heading > p:last-child { font-size: 12px; }
  .news-feature-media { min-height: 0; aspect-ratio: 16 / 9; }
  .news-feature-caption { right: 15px; bottom: 12px; left: 15px; grid-template-columns: auto minmax(0, 1fr); gap: 8px; }
  .news-feature-caption h3 { font-size: 13px; }
  .news-feature-caption time { display: none; }
  .news-feature-copy { min-height: 205px; padding: 25px 20px 68px; }
  .news-feature-copy h3 { font-size: 17px; }
  .news-slider-controls { right: 18px; bottom: 17px; }
  .news-slider-dots button { width: 14px; }
  .news-slider-dots button.is-active { width: 25px; }
  .news-category-tabs { margin-top: 27px; overflow-x: auto; }
  .news-category-tabs button { flex: 0 0 auto; padding-right: 11px; padding-left: 11px; }
  .news-gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .news-gallery-body { min-height: 170px; }
  .industry-journal-section .main-section { padding-top: 62px; padding-bottom: 68px; }
  .industry-journal-heading h2 { font-size: 28px; }
  .industry-journal-metrics { gap: 24px; margin-top: 38px; }
  .industry-journal-metric { min-width: 0; }
  .industry-journal-metric strong { font-size: 29px; }
  .industry-journal-grid { width: calc(100vw - 32px); max-width: calc(100vw - 32px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; margin-top: 46px; }
  .industry-journal-company { min-height: 84px; grid-template-rows: 42px 18px; padding-right: 2px; padding-left: 2px; font-size: 11px; }
  .industry-journal-logo { width: min(88px, 100%); height: 42px; }
  .industry-journal-logo img { max-height: 34px; }
  .tab-list { overflow-x: auto; }
  .tab-button { flex: 0 0 auto; padding-right: 16px; padding-left: 16px; }
  .page-no-hero .market-hero .main-section { padding-top: 45px; padding-bottom: 40px; }
  .market-heading, .market-search-panel { width: calc(100vw - 32px); max-width: calc(100vw - 32px); }
  .market-heading h1 { font-size: 32px; }
  .market-heading > p:last-child { max-width: 100%; white-space: normal; overflow-wrap: anywhere; word-break: break-all; }
  .market-heading-line strong { font-size: 23px; }
  .market-search-panel form { width: 100%; grid-template-columns: minmax(0, 1fr); }
  .market-search-panel input { width: 100%; min-height: 46px; }
  .market-search-panel form > button { width: 100%; min-height: 40px; }
  .market-filter-panel, .market-result-toolbar, .market-grid { width: calc(100vw - 32px); max-width: calc(100vw - 32px); }
  .market-type-tabs { gap: 18px; overflow-x: auto; }
  .market-type-tab { flex: 0 0 auto; }
  .market-filter-panel { padding: 17px 16px; }
  .market-industry-row, .market-category-row { grid-template-columns: 1fr; gap: 8px; }
  .market-filter-row { grid-template-columns: 1fr; }
  .market-reset { grid-column: auto; grid-row: auto; }
  .market-result-toolbar { padding: 16px 0; align-items: flex-start; flex-direction: column; gap: 11px; }
  .market-result-toolbar label { width: 100%; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card-body > p { min-height: 0; }
  .market-card-footer { align-items: flex-start; flex-direction: column; }
  .market-detail-section { padding-bottom: 68px; }
  .market-detail-back { margin-bottom: 14px; }
  .listing-summary-main, .listing-summary-purchase { padding: 20px; }
  .listing-identity { gap: 13px; }
  .listing-symbol { width: 59px; height: 59px; border-width: 3px; font-size: 21px; }
  .listing-title-line { display: block; }
  .listing-title-line .badge { display: inline-flex; margin-bottom: 7px; }
  .listing-title-line h1 { font-size: 21px; white-space: normal; }
  .listing-meta { gap: 5px 9px; }
  .listing-meta span + span { padding-left: 9px; }
  .listing-description { margin-left: -72px; }
  .listing-metrics { grid-template-columns: 1fr; gap: 11px; }
  .listing-purchase-body { grid-template-columns: 90px minmax(0, 1fr); gap: 14px; }
  .listing-certificate { min-height: 116px; }
  .listing-purchase-facts div { grid-template-columns: 66px minmax(0, 1fr); }
  .listing-actions { align-items: stretch; }
  .listing-actions button { flex: 1; }
  .listing-tabs { padding: 0 8px; overflow-x: auto; }
  .listing-tabs button { padding: 15px 12px 13px; }
  .listing-tab-panel, .listing-side-panel { padding: 16px; }
  .listing-info-grid { grid-template-columns: 1fr; }
  .listing-info-item, .listing-info-item:nth-child(2n), .listing-info-item:nth-child(3n) { border-right: 0; }
  .listing-info-item.is-wide { grid-column: span 1; }
  .listing-side-group dl div { grid-template-columns: 1fr; gap: 2px; }
  .hex-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .hex-card { min-height: 230px; padding: 28px 18px 24px; }
  .hex-card:nth-child(2), .hex-card:nth-child(5) { margin-top: 0; }
  .hex-card h3 { margin-top: 16px; font-size: 16px; }
  .hex-card p { font-size: 12px; }
  .news-row { grid-template-columns: 1fr 1fr 20px; gap: 8px; }
  .news-title { grid-column: 1 / -1; grid-row: 2; font-size: 15px; }
  .news-date { font-size: 11px; }
  .education-row { grid-template-columns: 1fr; gap: 9px; padding: 18px; }
  .education-row .qr-trigger { justify-self: start; }
  .conference-row { grid-template-columns: 1fr 1fr; gap: 9px; }
  .conference-row h3, .conference-row p { grid-column: 1 / -1; }
  .conference-status { grid-column: 2; grid-row: 1; }
  .detail-card { padding: 23px; }
  .detail-kpis { grid-template-columns: 1fr; }
  .about-story-section .main-section { padding-top: 58px; padding-bottom: 68px; }
  .about-story-media { min-height: 0; aspect-ratio: 16 / 9; padding: 24px; }
  .about-story-copy { min-height: 0; }
  .about-story-copy blockquote { font-size: 16px; line-height: 1.75; }
  .about-story-footer { align-items: flex-end; gap: 16px; }
  .about-story-logo { max-width: 150px; }
  .about-story-logo strong { font-size: 13px; }
  .footer-cta-inner { min-height: 210px; align-items: flex-start; padding: 38px 0; }
  .footer-cta h2 { max-width: 260px; font-size: 23px; }
  .footer-cta::after { right: -120px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 25px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .friend-links { grid-template-columns: 1fr; }
  .back-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .partner-track { animation-duration: 24s !important; animation-iteration-count: infinite !important; }
  .hero-orbit { animation-duration: 2.8s !important; animation-iteration-count: infinite !important; }
  .orbit-motion { animation-duration: 5s !important; animation-iteration-count: infinite !important; animation-timing-function: linear !important; }
  .orbit-sphere, .orbit-sphere::before, .orbit-sphere::after, .orbit-longitude, .orbit-latitude, .orbit-halo { animation-iteration-count: infinite !important; }
  .orbit-sphere { animation-duration: 2.6s !important; }
  .orbit-sphere::before, .orbit-longitude.longitude-b, .orbit-halo-a { animation-duration: 4.2s !important; }
  .orbit-sphere::after, .orbit-longitude.longitude-a { animation-duration: 6s !important; }
  .orbit-halo-b { animation-duration: 3.6s !important; }
  .orbit-latitude { animation-duration: 2.8s !important; }
}

/* 首页 Banner：按参考图统一为短横幅、方形粒子与线框球体 */
.hero {
  min-height: 620px;
  background: linear-gradient(104deg, #102d5a 0%, #17447d 34%, #1d5ca3 65%, #287fd0 100%);
}
.hero::before {
  background: linear-gradient(90deg, rgba(2, 19, 48, .18), transparent 43%, rgba(80, 168, 244, .1));
}
.hero-grid {
  opacity: .48;
  background-image: linear-gradient(rgba(153, 208, 255, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(153, 208, 255, .14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: none;
  animation: heroGridDrift 16s linear infinite;
}
.hero-grid::after { content: ''; position: absolute; top: 0; right: auto; bottom: 0; left: -22%; width: 18%; display: block; background: linear-gradient(90deg, transparent, rgba(94, 235, 255, .2), transparent); filter: blur(2px); animation: heroScan 6s ease-in-out infinite; }
.hero .particle-canvas { z-index: 0; inset: 0; width: 100%; height: 100%; }
.hero-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 530px;
  padding: 148px 0 167px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-copy { max-width: 600px; padding-left: 105px; }
.hero-eyebrow { margin-bottom: 10px; color: rgba(201, 231, 255, .66); font-size: 10px; }
.hero-eyebrow:empty { display: none; }
.hero h1 { max-width: none; margin: 0 0 10px; font-size: 36px; line-height: 1.22; color: #fff; white-space: nowrap; text-shadow: 0 3px 12px rgba(3, 27, 67, .22); }
.hero-description { margin: 0; color: rgba(218, 235, 252, .7); font-size: 14px; }
.hero-actions { gap: 12px; margin-top: 24px; }
.hero .button-primary, .hero .button-ghost { min-width: 104px; min-height: 42px; justify-content: center; padding: 9px 18px; border-radius: 22px; font-size: 13px; }
.hero .button-primary { color: #fff; background: #4e9dea; box-shadow: 0 7px 20px rgba(52, 137, 230, .32); }
.hero .button-ghost { color: #fff; background: transparent; border: 1px solid rgba(224, 240, 255, .68); }
.hero-visual { min-height: 215px; margin: 0; }
.hero-visual::before, .hero-visual::after { display: none; }
.hero-dashboard { display: none; }
.hero-orbit { position: absolute; top: 7px; right: 76px; width: 310px; height: 210px; opacity: .82; filter: drop-shadow(0 0 18px rgba(77, 210, 255, .28)); animation: orbitGlow 4.8s ease-in-out infinite; }
.orbit-motion { position: absolute; inset: 0; transform-origin: 50% 50%; animation: orbitAssemblySpin 5s linear infinite; animation-play-state: running; will-change: transform; }
.orbit-sphere { position: absolute; top: 31px; left: 72px; width: 155px; height: 155px; border: 1px solid rgba(154, 231, 255, .78); border-radius: 50%; background: radial-gradient(circle at 43% 39%, rgba(96, 185, 255, .2), transparent 64%); box-shadow: 0 0 26px rgba(62, 192, 255, .13), inset 0 0 22px rgba(60, 210, 255, .08); animation: orbitPulse 3.6s ease-in-out infinite; }
.orbit-sphere::before, .orbit-sphere::after { content: ''; position: absolute; inset: 9px 49px; border: 1px solid rgba(147, 224, 255, .66); border-radius: 50%; animation: orbitMeridianA 4.2s linear infinite; }
.orbit-sphere::after { inset: 9px 35px; border-color: rgba(92, 242, 222, .6); animation-name: orbitMeridianB; animation-duration: 6s; }
.orbit-longitude, .orbit-latitude { position: absolute; display: block; border: 1px solid rgba(147, 224, 255, .62); border-radius: 50%; }
.orbit-longitude { inset: 9px 24px; }
.longitude-a { transform: rotate(46deg); animation: orbitLongitudeA 6s linear infinite; }
.longitude-b { transform: rotate(-46deg); animation: orbitLongitudeB 4.2s linear infinite; }
.orbit-latitude { right: 9px; left: 9px; height: 44px; }
.latitude-a { top: 24px; animation: orbitLatitude 2.8s ease-in-out infinite; }
.latitude-b { top: 55px; height: 35px; animation: orbitLatitude 2.8s ease-in-out .8s infinite reverse; }
.latitude-c { bottom: 23px; animation: orbitLatitude 2.8s ease-in-out 1.6s infinite; }
.orbit-halo { position: absolute; display: block; border: 2px solid rgba(131, 221, 255, .62); border-radius: 50%; }
.orbit-halo-a { inset: 59px 10px 64px; transform: rotate(14deg); animation: orbitHaloA 4.2s linear infinite; }
.orbit-halo-b { inset: 49px 43px 48px; transform: rotate(68deg); animation: orbitHaloB 3.6s linear infinite; }
.hero-stats { height: 90px; background: rgba(10, 44, 91, .88); border-top: 0; }
.stats-inner { min-height: 90px; }
.stat-item { padding: 11px 28px; }
.stat-item + .stat-item::before { background: rgba(139, 195, 243, .12); }
.stat-value { color: #4d9df0; font-size: 27px; }
.stat-label { color: rgba(217, 235, 250, .56); font-size: 11px; }

@media (max-width: 840px) {
  .hero { min-height: 598px; }
  .hero-shell { min-height: 466px; padding: 112px 0 125px; }
  .hero-copy { max-width: 470px; padding-left: 0; }
  .hero h1 { font-size: 36px; }
  .hero-visual { min-height: 190px; margin-top: 5px; }
  .hero-orbit { top: 0; right: 4%; transform: scale(.82); transform-origin: right top; }
  .hero-stats { height: 132px; }
  .stats-inner { min-height: 132px; }
}

@media (max-width: 560px) {
  .page-no-hero main { padding-top: 68px; }
  .page-no-hero .main-section { padding-top: 38px; }
  .hero { min-height: 590px; }
  .hero-shell { min-height: 458px; padding: 100px 0 126px; }
  .hero h1 { font-size: 29px; white-space: nowrap; word-break: normal; }
  .hero-description { font-size: 13px; }
  .hero-actions { margin-top: 20px; }
  .hero .button-primary, .hero .button-ghost { min-width: 98px; min-height: 39px; padding: 8px 15px; }
  .hero-visual { min-height: 180px; }
  .hero-orbit { right: -16px; transform: scale(.7); }
  .stat-value { font-size: 23px; }
  .hero-stats { overflow: hidden; }
  .stats-inner { width: 100%; max-width: 100%; padding-right: 16px; padding-left: 16px; }
  .stat-item { min-width: 0; padding-right: 8px; padding-left: 8px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
}
