:root{
  --codex-primary:#2457d6;
  --codex-primary-dark:#0b2d73;
  --codex-accent:#ff9b2f;
  --codex-bg:#f6fbff;
  --codex-surface:#ffffff;
  --codex-text:#16325f;
  --codex-muted:#677792;
  --codex-border:rgba(22,50,95,.08);
  --codex-shadow:0 20px 50px rgba(18,36,74,.10);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  padding-top:118px;
  background:linear-gradient(180deg,#f8fbff 0%,#edf4ff 48%,#fbf6ed 100%);
  color:var(--codex-text);
  font-family:"Microsoft YaHei","PingFang SC",Arial,sans-serif;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

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

a:hover{
  color:var(--codex-primary);
}

button,
input,
select,
textarea{
  font:inherit;
}

ul,
ol{
  margin:0;
  padding:0;
  list-style:none;
}

main,
section,
article,
aside,
nav{
  display:block;
}

.container{
  width:min(1760px, calc(100% - 40px));
  max-width:1760px;
  margin:0 auto;
}

.hua-navbar{
  position:fixed;
  inset:0 0 auto;
  z-index:999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 8px 28px rgba(16,36,74,.08);
  border-bottom:1px solid rgba(22,50,95,.05);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.hua-navbar.slideUp{
  transform:translateY(-100%);
}

.header-top{
  font-size:12px;
  line-height:1.5;
  color:#5d6e8b;
  border-bottom:1px solid rgba(22,50,95,.06);
  background:rgba(255,255,255,.72);
}

.header-top-inner{
  min-height:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.header-main{
  min-height:92px;
  display:flex;
  align-items:center;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:255px;
}

.brand img{
  width:auto;
  height:46px;
}

.brand-copy strong{
  display:block;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  color:var(--codex-text);
}

.brand-copy em{
  display:block;
  margin-top:4px;
  font-style:normal;
  font-size:11px;
  letter-spacing:1.6px;
  color:#7c8aa7;
}

.nav-list{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  margin:0;
  padding:0;
  list-style:none;
}

.nav-list > li{
  position:relative;
}

.nav-list > li > a{
  display:block;
  padding:13px 18px;
  border-radius:999px;
  font-size:14px;
  color:#20355f;
  transition:all .2s ease;
}

.nav-list > li.current > a,
.nav-list > li:hover > a{
  background:rgba(36,87,214,.09);
  color:var(--codex-primary);
}

.nav-list .dot{
  display:none;
}

.nav-list .sub-nav{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  min-width:150px;
  margin:0;
  padding:8px 0;
  list-style:none;
  background:#fff;
  border:1px solid var(--codex-border);
  border-radius:16px;
  box-shadow:0 18px 50px rgba(16,36,74,.14);
  opacity:0;
  visibility:hidden;
  transform:translateX(-50%) translateY(4px);
  transition:all .2s ease;
  z-index:40;
}

.nav-list li:hover > .sub-nav{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.nav-list .sub-nav li a{
  display:block;
  padding:10px 16px;
  white-space:nowrap;
  color:#28406f;
}

.nav-list .sub-nav li a:hover{
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
}

.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.nav-search{
  position:relative;
}

.nav-search .s-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--codex-border);
  border-radius:999px;
  background:#fff;
  color:var(--codex-primary);
  cursor:pointer;
}

.nav-search .s-form{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  z-index:50;
  padding:14px;
  background:#fff;
  border:1px solid var(--codex-border);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(16,36,74,.16);
}

.nav-search .sform{
  position:relative;
  width:290px;
}

.nav-search .sinput{
  width:100%;
  height:44px;
  padding:0 56px 0 16px;
  border:1px solid #dbe6fb;
  border-radius:999px;
  background:#f7faff;
  color:#17315d;
}

.nav-search .sform button{
  position:absolute;
  top:4px;
  right:4px;
  width:36px;
  height:36px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--codex-primary),#3d74f2);
  color:#fff;
}

.nav-button{
  display:none;
}

.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--codex-border);
  border-radius:999px;
  background:#fff;
}

.menu-btn span{
  position:relative;
  display:block;
  width:16px;
  height:2px;
  background:var(--codex-primary);
}

.menu-btn span::before,
.menu-btn span::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:inherit;
}

.menu-btn span::before{
  top:-5px;
}

.menu-btn span::after{
  top:5px;
}

.hua-overlay{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(7,16,35,.6);
  backdrop-filter:blur(2px);
}

.canvas-close{
  position:absolute;
  top:16px;
  right:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  background:#f1f5ff;
  color:var(--codex-primary);
}

.page-shell{
  padding:16px 0 72px;
}

.home-shell{
  padding-top:0;
}

.home-content{
  position:relative;
  z-index:1;
}

.hero-shell{
  position:relative;
  overflow:hidden;
  width:100%;
  min-height:680px;
  margin:0 0 34px;
  display:flex;
  align-items:center;
  border-radius:0;
  background:
    linear-gradient(112deg, rgba(4,16,48,.95) 0%, rgba(8,47,121,.92) 45%, rgba(27,93,214,.82) 100%);
  box-shadow:0 28px 80px rgba(16,36,74,.12);
}

.hero-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.14) 0, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 82% 24%, rgba(80,156,255,.28) 0, rgba(80,156,255,0) 34%),
    linear-gradient(90deg, rgba(4,14,38,.92) 0%, rgba(7,26,74,.72) 42%, rgba(19,65,155,.18) 100%);
  pointer-events:none;
}

.hero-shell::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(90deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  opacity:.7;
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  min-height:680px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 560px;
  align-items:center;
  gap:88px;
}

.hero-copy{
  position:relative;
  max-width:780px;
  padding:0;
  color:#fff;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(36,87,214,.16);
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.about-visual .section-pill{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  color:#fff;
}

.hero-copy h1{
  margin:18px 0 18px;
  font-size:68px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-1.5px;
}

.hero-desc{
  max-width:640px;
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,.84);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg,#ffb03f 0%,#ff8f22 100%);
  color:#fff;
  box-shadow:0 16px 30px rgba(255,153,41,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
}

.hero-visual{
  position:relative;
  min-height:420px;
}

.hero-screen{
  position:absolute;
  inset:24px 0 auto auto;
  width:540px;
  min-height:340px;
  padding:24px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.20);
  background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(236,244,255,.74));
  box-shadow:0 34px 80px rgba(3,12,34,.28);
  backdrop-filter:blur(14px);
}

.screen-bar{
  display:flex;
  gap:8px;
}

.screen-bar span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#6f91ff;
}

.screen-bar span:nth-child(2){
  background:#59c7ff;
}

.screen-bar span:nth-child(3){
  background:#ffaf45;
}

.screen-title{
  margin-top:24px;
  font-size:13px;
  letter-spacing:.22em;
  color:#54709e;
}

.screen-chart{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
}

.screen-chart span{
  display:block;
  height:88px;
  border-radius:20px;
  background:linear-gradient(135deg,#2457d6,#59a9ff);
  box-shadow:0 16px 34px rgba(36,87,214,.22);
}

.screen-chart span:nth-child(2){
  height:126px;
  background:linear-gradient(135deg,#0b2d73,#3486ff);
}

.screen-chart span:nth-child(3){
  height:126px;
  background:linear-gradient(135deg,#65bfff,#cfe7ff);
}

.screen-chart span:nth-child(4){
  height:88px;
  background:linear-gradient(135deg,#ff9b2f,#ffd38c);
}

.screen-list{
  display:grid;
  gap:10px;
  margin-top:22px;
}

.screen-list i{
  display:block;
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(36,87,214,.32), rgba(36,87,214,.04));
}

.screen-list i:nth-child(2){
  width:78%;
}

.screen-list i:nth-child(3){
  width:58%;
}

.hero-metric{
  position:absolute;
  z-index:2;
  width:150px;
  padding:18px 18px 16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.15);
  box-shadow:0 22px 48px rgba(3,12,34,.22);
  backdrop-filter:blur(12px);
  color:#fff;
}

.hero-metric strong{
  display:block;
  font-size:28px;
  line-height:1.1;
}

.hero-metric span{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:rgba(255,255,255,.76);
}

.metric-a{
  left:0;
  top:78px;
}

.metric-b{
  right:26px;
  bottom:18px;
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:2;
  display:flex;
  gap:10px;
  transform:translateX(-50%);
}

.hero-dots span{
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.56);
  background:transparent;
}

.hero-dots span.is-active{
  background:#fff;
  box-shadow:0 0 0 4px rgba(255,255,255,.18);
}

.about-shell{
  margin-top:10px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:22px;
}

.about-card,
.about-visual,
.feature-card,
.news-card,
.page-banner,
.card-surface,
.article-shell,
.pagination,
.widget,
.entry-related-posts{
  background:var(--codex-surface);
  box-shadow:var(--codex-shadow);
}

.about-card{
  min-height:390px;
  padding:38px 38px 40px;
  border-radius:30px;
  border:1px solid rgba(20,42,82,.05);
}

.about-card h2{
  margin:18px 0 10px;
  font-size:48px;
  line-height:1.05;
  font-weight:800;
  color:#12254d;
}

.about-subhead{
  margin-bottom:18px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8090aa;
}

.about-card p{
  font-size:15px;
  line-height:1.95;
  color:#51617e;
}

.about-more{
  margin-top:28px;
}

.about-visual{
  position:relative;
  overflow:hidden;
  min-height:390px;
  padding:34px;
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(16,50,125,.96), rgba(4,21,61,.98) 70%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 36%);
}

.about-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08), transparent 28%);
}

.about-visual-inner{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:18px;
  height:100%;
  color:#fff;
}

.about-visual-head h3{
  margin:14px 0 8px;
  font-size:34px;
  line-height:1.15;
  font-weight:800;
}

.about-visual-head p{
  max-width:420px;
  font-size:14px;
  line-height:1.85;
  color:rgba(255,255,255,.82);
}

.about-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:auto;
}

.about-mini-card{
  min-height:142px;
  padding:20px 18px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.10);
  box-shadow:0 16px 30px rgba(5,14,40,.15);
}

.about-mini-card strong{
  display:block;
  font-size:26px;
  line-height:1.2;
  color:#fff;
}

.about-mini-card span{
  display:block;
  margin-top:14px;
  font-size:15px;
  line-height:1.7;
  font-weight:700;
  color:#fff;
}

.about-mini-card p{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.65;
  color:rgba(255,255,255,.76);
}

.section-block{
  margin-top:52px;
}

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

.section-head-center{
  justify-content:center;
  text-align:center;
}

.section-kicker{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.section-head h2{
  font-size:34px;
  line-height:1.2;
  font-weight:800;
  color:#13264f;
}

.section-head p{
  margin-top:8px;
  font-size:14px;
  line-height:1.8;
  color:#6f7d96;
}

.section-head a{
  color:var(--codex-primary);
}

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

.feature-card{
  display:block;
  min-height:190px;
  padding:28px 26px;
  border-radius:26px;
  border:1px solid rgba(20,42,82,.05);
  transition:transform .2s ease,box-shadow .2s ease;
}

.feature-card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 42px rgba(18,36,74,.12);
}

.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#2f62e2,#5a7ef5);
  color:#fff;
  font-size:22px;
}

.feature-card:nth-child(4n+2) .feature-icon{
  background:linear-gradient(135deg,#1f8dd6,#4cc0ff);
}

.feature-card:nth-child(4n+3) .feature-icon{
  background:linear-gradient(135deg,#0c5aa6,#2f7ef6);
}

.feature-card:nth-child(4n+4) .feature-icon{
  background:linear-gradient(135deg,#5c79ff,#86a2ff);
}

.feature-card h3{
  margin-top:18px;
  font-size:20px;
  line-height:1.3;
  font-weight:700;
  color:#13264f;
}

.feature-card p{
  margin-top:10px;
  font-size:14px;
  line-height:1.8;
  color:#61708f;
}

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

.news-card{
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(20,42,82,.05);
}

.news-card .cover{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
}

.news-card .cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.news-card:hover .cover img{
  transform:scale(1.04);
}

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

.news-card .tag{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(36,87,214,.1);
  color:var(--codex-primary);
  font-size:12px;
}

.news-card h3{
  margin:12px 0 10px;
  font-size:18px;
  line-height:1.55;
  font-weight:700;
  color:#13264f;
}

.news-card p{
  font-size:14px;
  line-height:1.8;
  color:#61708f;
}

.news-meta{
  display:flex;
  gap:14px;
  margin-top:14px;
  font-size:12px;
  color:#8a97ad;
}

.page-banner{
  position:relative;
  overflow:hidden;
  width:calc(100% - 48px);
  max-width:1320px;
  margin:0 auto 24px;
  border-radius:32px;
  background:linear-gradient(135deg,#0a2d7d 0%,#0c4bb4 52%,#163c8b 100%);
  box-shadow:0 26px 60px rgba(16,36,74,.14);
}

.page-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.12), transparent 28%),
    radial-gradient(circle at 22% 76%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(90deg, rgba(4,14,38,.28) 0%, rgba(9,29,79,.58) 56%, rgba(19,65,155,.25) 100%);
}

.page-banner .container{
  position:relative;
  z-index:1;
  width:100%;
  max-width:none;
  padding:0 48px;
}

.page-banner-inner{
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:34px 0;
  color:#fff;
}

.page-banner-inner h1{
  margin:14px 0 12px;
  font-size:40px;
  line-height:1.15;
  font-weight:800;
}

.page-banner-inner p{
  max-width:760px;
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,.82);
}

.breadcrumb{
  margin:0 0 18px;
  font-size:12px;
  line-height:1.8;
  color:#7d8aa5;
}

.breadcrumb .crumb-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:4px;
}

.breadcrumb a{
  color:#5a6d92;
}

.site-main{
  padding:0 0 72px;
}

.content-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  align-items:start;
}

.content-layout .list-article,
.content-layout .le-sidebar{
  float:none;
  width:auto;
}

.list-article{
  min-width:0;
}

.le-sidebar{
  position:static;
  top:auto;
}

.card-body{
  padding:28px;
}

.list-archive-header .card-body{
  border-radius:24px;
}

.archive-navbar{
  margin-top:18px;
}

.archive-navbar ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.archive-navbar li a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:#f1f5ff;
  color:#23406f;
}

.archive-navbar li a.active,
.archive-navbar li a:hover{
  background:linear-gradient(135deg,var(--codex-primary),#456ef0);
  color:#fff;
}

.article-item{
  overflow:hidden;
  border-radius:24px;
}

.article-item ul{
  padding:0;
}

.article-item ul li{
  display:flex;
  gap:20px;
  padding:22px 24px;
  border-bottom:1px solid rgba(22,50,95,.06);
  background:#fff;
}

.article-item ul li:last-child{
  border-bottom:none;
}

.list-image{
  flex:0 0 240px;
}

.item-img-inner{
  display:block;
  overflow:hidden;
  border-radius:18px;
  aspect-ratio:16/10;
}

.item-img-inner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.list-main{
  min-width:0;
  flex:1;
}

.item-title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.45;
  font-weight:700;
}

.item-title a{
  color:#13264f;
}

.item-title a:hover{
  color:var(--codex-primary);
}

.item-excerpt{
  margin-bottom:14px;
  font-size:14px;
  line-height:1.85;
  color:#61708f;
}

.item-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px 18px;
  font-size:12px;
  color:#8a97ad;
}

.item-meta a,
.item-meta i{
  color:inherit;
}

.pagination{
  margin-top:18px;
  padding:18px;
  border-radius:24px;
  text-align:center;
}

.pagination a,
.pagination b,
.pagination .thisclass{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 12px;
  margin:0 3px;
  border-radius:999px;
  background:#f3f7ff;
  color:#274168;
}

.pagination a:hover,
.pagination .thisclass,
.pagination b{
  background:linear-gradient(135deg,var(--codex-primary),#456ef0);
  color:#fff;
}

.widget{
  margin-bottom:18px;
  padding:0;
  overflow:hidden;
  border-radius:24px;
}

.widget-title{
  margin:0;
  padding:18px 20px;
  font-size:18px;
  font-weight:800;
  color:#13264f;
  border-bottom:1px solid rgba(22,50,95,.06);
}

.list-grid li{
  display:flex;
  gap:12px;
  padding:16px 20px;
  border-bottom:1px solid rgba(22,50,95,.06);
}

.list-grid li:last-child{
  border-bottom:none;
}

.list-grid .item-img{
  flex:0 0 108px;
  border-radius:14px;
  overflow:hidden;
}

.list-grid .item-img img{
  width:100%;
  height:72px;
  object-fit:cover;
}

.list-grid .item-content{
  min-width:0;
}

.list-grid .item-title{
  margin:0 0 6px;
  font-size:14px;
  line-height:1.55;
}

.list-grid .item-date{
  margin:0;
  font-size:12px;
  color:#8a97ad;
}

.hot-item li{
  padding:13px 20px;
  border-bottom:1px solid rgba(22,50,95,.06);
}

.hot-item li:last-child{
  border-bottom:none;
}

.hot-item li a{
  display:block;
  font-size:14px;
  line-height:1.65;
  color:#273d66;
}

.hot-item li a:hover{
  color:var(--codex-primary);
}

.tagcloud{
  padding:18px 18px 20px;
}

.tagcloud a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  margin:0 6px 8px 0;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(22,50,95,.08);
  background:#f7faff;
}

.tagcloud a:hover{
  color:var(--codex-primary);
  border-color:rgba(36,87,214,.18);
}

.article-shell,
.article-content,
.newsDetail{
  overflow:hidden;
  border-radius:24px;
}

.article-detail,
.newsDetail-in{
  padding:30px;
}

.detail-title,
.newsTitle{
  margin:0 0 18px;
  font-size:34px;
  line-height:1.28;
  font-weight:800;
  color:#13264f;
}

.infos,
.newsST{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  padding-bottom:18px;
  margin-bottom:22px;
  border-bottom:1px solid rgba(22,50,95,.06);
  color:#7d8aa5;
  font-size:13px;
}

.article-body,
.newsContent{
  font-size:16px;
  line-height:1.9;
  color:#314466;
}

.article-body img,
.newsContent img{
  max-width:100%;
  height:auto;
  border-radius:16px;
}

.tip.error{
  margin-top:20px;
  padding:16px 18px;
  border-radius:18px;
  background:#f7faff;
  color:#52617e;
}

.entry-tag{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.entry-tag a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#f3f7ff;
  color:#2a4572;
}

.entry-tag a:hover{
  background:var(--codex-primary);
  color:#fff;
}

.article-nav,
.pre-next{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.article-nav-entry,
.news-prev,
.news-next{
  min-height:74px;
  padding:18px 20px;
  border-radius:18px;
  background:#f7faff;
}

.article-nav-entry a,
.news-prev a,
.news-next a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.entry-page-info .title{
  color:#13264f;
  font-weight:600;
}

.entry-related-posts{
  margin-top:24px;
  border-radius:24px;
  overflow:hidden;
}

.entry-related-posts .widget-title{
  border-bottom:1px solid rgba(22,50,95,.06);
}

.article-relevant ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  padding:20px;
}

.article-relevant li{
  padding:14px 16px;
  border-radius:16px;
  background:#f7faff;
}

.article-relevant li a{
  display:block;
  color:#273d66;
  line-height:1.7;
}

.article-relevant li a:hover{
  color:var(--codex-primary);
}

.footer{
  margin-top:58px;
  padding:52px 0 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(72,138,255,.20), transparent 28%),
    linear-gradient(135deg,#08173d 0%,#0f2f6d 70%,#163a7c 100%);
  color:rgba(255,255,255,.74);
}

.footer a{
  color:#fff;
}

.footer-inner{
  display:grid;
  gap:24px;
}

.footer-top{
  display:grid;
  grid-template-columns:390px minmax(0,1fr);
  gap:34px;
  align-items:start;
}

.footer-brand{
  max-width:390px;
}

.footer-brand img{
  width:auto;
  height:46px;
  margin-bottom:16px;
}

.footer-brand p{
  line-height:1.9;
}

.footer-panels{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}

.footer-panel{
  min-height:190px;
  padding:22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:rgba(255,255,255,.06);
}

.footer-panel h3{
  margin:0 0 12px;
  font-size:16px;
  font-weight:800;
  color:#fff;
}

.footer-panel ul{
  margin:0;
  padding:0;
}

.footer-panel li{
  margin-bottom:8px;
}

.footer-panel li a{
  color:rgba(255,255,255,.74);
}

.footer-panel li a:hover{
  color:#fff;
}

.footer-nav-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:2px 14px;
}

.footer-site-card p{
  margin:0;
  line-height:1.9;
}

.footer-map{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  margin-top:16px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
}

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:13px;
}

.rollbar{
  position:fixed;
  right:24px;
  bottom:28px;
  z-index:998;
}

.rollbar .rollbar-item{
  display:flex !important;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:999px;
  background:#fff;
  color:var(--codex-primary);
  box-shadow:0 16px 30px rgba(16,36,74,.18);
}

.rollbar .rollbar-item:hover{
  color:var(--codex-accent);
}

.is-reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease,transform .6s ease;
}

.is-reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width:1199px){
  body{
    padding-top:110px;
  }

  .container{
    width:calc(100% - 32px);
  }

  .hero-shell,
  .hero-inner{
    min-height:620px;
  }

  .hero-inner{
    grid-template-columns:minmax(0,1fr) 470px;
    gap:48px;
  }

  .hero-copy h1{
    font-size:54px;
  }

  .hero-screen{
    width:450px;
  }

  .hero-metric{
    width:132px;
  }

  .about-card h2{
    font-size:42px;
  }

  .feature-grid,
  .news-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .about-mini-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-top{
    grid-template-columns:1fr;
  }

  .content-layout{
    grid-template-columns:1fr;
  }

  .le-sidebar{
    position:static;
  }

  .list-image{
    flex-basis:220px;
  }
}

@media (max-width:900px){
  body{
    padding-top:96px;
  }

  .header-top{
    display:none;
  }

  .header-main{
    min-height:78px;
    justify-content:space-between;
  }

  .brand{
    min-width:0;
  }

  .brand-copy em{
    display:none;
  }

  .nav-list{
    position:fixed;
    top:0;
    right:-290px;
    width:260px;
    height:100vh;
    padding:92px 16px 24px;
    overflow-y:auto;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
    background:#fff;
    box-shadow:-20px 0 40px rgba(14,29,54,.18);
    transition:right .28s ease;
    z-index:101;
  }

  .nav-list.show{
    right:0;
  }

  .nav-list > li{
    padding-right:36px;
  }

  .nav-list > li > a{
    padding:12px 16px;
    border-radius:14px;
  }

  .nav-list .dot{
    position:absolute;
    top:8px;
    right:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:10px;
    background:#f3f7ff;
    color:var(--codex-primary);
  }

  .nav-list .sub-nav{
    position:static;
    margin:4px 0 0;
    padding:0 0 0 12px;
    background:transparent;
    border:none;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .nav-right{
    gap:10px;
  }

  .nav-search .s-form{
    right:-40px;
  }

  .nav-button{
    display:block;
  }

  .menu-btn{
    display:flex;
  }

  .hero-shell{
    min-height:0;
    padding:54px 0 44px;
    margin-bottom:24px;
  }

  .hero-inner{
    min-height:0;
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-copy h1{
    font-size:44px;
  }

  .hero-desc{
    font-size:15px;
  }

  .hero-visual{
    min-height:320px;
  }

  .hero-screen{
    position:relative;
    inset:auto;
    width:100%;
    min-height:300px;
  }

  .hero-metric{
    display:none;
  }

  .about-shell{
    grid-template-columns:1fr;
  }

  .about-card,
  .about-visual{
    min-height:0;
  }

  .about-visual{
    min-height:280px;
  }

  .about-mini-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .about-card h2{
    font-size:34px;
  }

  .feature-grid,
  .news-grid,
  .article-relevant ul,
  .footer-panels{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .page-banner{
    width:calc(100% - 36px);
  }

  .page-banner .container{
    padding:0 28px;
  }

  .page-banner-inner{
    min-height:160px;
    padding:28px 0;
  }

  .page-banner-inner h1{
    font-size:32px;
  }

  .article-item ul li{
    flex-direction:column;
  }

  .list-image{
    flex-basis:auto;
  }

  .article-nav,
  .pre-next{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  body{
    padding-top:90px;
  }

  .container{
    width:calc(100% - 28px);
  }

  .hero-shell{
    padding:42px 0 34px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .hero-actions{
    width:100%;
  }

  .hero-actions .btn{
    flex:1 1 150px;
  }

  .hero-visual{
    min-height:260px;
  }

  .hero-screen{
    min-height:250px;
    padding:18px;
    border-radius:24px;
  }

  .screen-chart span{
    height:66px;
  }

  .screen-chart span:nth-child(2),
  .screen-chart span:nth-child(3){
    height:92px;
  }

  .about-card{
    padding:24px 20px 26px;
  }

  .about-card h2{
    font-size:28px;
  }

  .feature-card,
  .news-card{
    border-radius:20px;
  }

  .about-mini-grid{
    grid-template-columns:1fr;
  }

  .news-grid,
  .feature-grid,
  .footer-panels,
  .footer-nav-list,
  .article-relevant ul{
    grid-template-columns:1fr;
  }

  .page-banner{
    width:calc(100% - 28px);
  }

  .page-banner .container{
    padding:0 18px;
  }

  .page-banner-inner h1{
    font-size:28px;
  }

  .newsDetail-in,
  .article-detail{
    padding:22px;
  }

  .detail-title,
  .newsTitle{
    font-size:28px;
  }

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

/* Yuanxing 2026 refresh overrides */
.hero-shell{
  margin:0;
  min-height:760px;
  padding:28px 0 0;
}

.hero-shell .container{
  width:min(1840px, calc(100% - 48px));
  max-width:1840px;
}

.hero-inner{
  min-height:auto;
  padding:36px 0 148px;
  grid-template-columns:minmax(0,1fr) 620px;
  gap:56px;
}

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

.hero-copy h1{
  max-width:760px;
  margin:20px 0 18px;
  font-size:78px;
  line-height:1.02;
}

.hero-desc{
  max-width:720px;
  font-size:18px;
  line-height:1.9;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.hero-points span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:13px;
  letter-spacing:.04em;
}

.hero-visual{
  min-height:500px;
  display:grid;
  align-content:center;
  gap:18px;
}

.hero-panel{
  position:relative;
  z-index:2;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 30px 70px rgba(4,12,36,.24);
  backdrop-filter:blur(14px);
}

.hero-panel-main{
  padding:28px 28px 26px;
  background:linear-gradient(145deg, rgba(255,255,255,.94), rgba(233,242,255,.78));
}

.hero-panel-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
}

.hero-panel-head strong{
  font-size:24px;
  line-height:1.2;
  font-weight:800;
  color:#143061;
}

.hero-panel-head span{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6d82a6;
}

.hero-panel-body{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.hero-panel-line{
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:18px 18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(18,53,108,.08);
}

.hero-panel-line strong{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#0f3c9c,#3f87ff);
  color:#fff;
  font-size:18px;
  line-height:1;
}

.hero-panel-line span{
  display:block;
  padding-top:4px;
  font-size:14px;
  line-height:1.8;
  color:#4f6285;
}

.hero-panel-side{
  margin-left:74px;
  padding:22px 24px;
  background:rgba(255,255,255,.14);
  color:#fff;
}

.hero-side-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero-chip-cluster{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.hero-chip-cluster span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#103165;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 28px rgba(6,18,54,.12);
}

.hero-side-note{
  margin:16px 0 0;
  font-size:13px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}

.hero-metric,
.hero-dots{
  display:none;
}

.hero-band{
  position:relative;
  z-index:3;
  margin-top:-88px;
}

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

.hero-band-item{
  min-height:136px;
  padding:26px 26px 24px;
  border-radius:28px;
  border:1px solid rgba(16,44,92,.06);
  background:rgba(255,255,255,.95);
  box-shadow:0 22px 50px rgba(16,36,74,.12);
}

.hero-band-item strong{
  display:block;
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  color:#112751;
}

.hero-band-item span{
  display:block;
  margin-top:12px;
  font-size:14px;
  line-height:1.85;
  color:#5e7091;
}

.overview-band{
  padding:34px 0 10px;
}

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

.overview-card{
  min-height:240px;
  padding:32px 30px 30px;
  border-radius:30px;
  border:1px solid rgba(20,42,82,.05);
  background:rgba(255,255,255,.95);
  box-shadow:var(--codex-shadow);
}

.overview-kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.overview-card h2{
  margin:18px 0 14px;
  font-size:30px;
  line-height:1.2;
  font-weight:800;
  color:#13264f;
}

.overview-card p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#5f7191;
}

.home-content{
  padding-top:12px;
}

.home-feature-block .feature-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}

.home-feature-block .feature-card{
  min-height:212px;
}

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

.tech-card{
  display:block;
  min-height:230px;
  padding:28px 28px 30px;
  border-radius:28px;
  border:1px solid rgba(18,47,98,.08);
  background:linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
  box-shadow:0 20px 48px rgba(16,36,74,.10);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.tech-card:hover{
  transform:translateY(-2px);
  border-color:rgba(36,87,214,.18);
  box-shadow:0 24px 54px rgba(16,36,74,.14);
}

.tech-card-meta{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tech-card h3{
  margin:18px 0 12px;
  font-size:28px;
  line-height:1.2;
  font-weight:800;
  color:#13264f;
}

.tech-card p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#5f7191;
}

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

.presence-card{
  min-height:220px;
  padding:30px;
  border-radius:28px;
  border:1px solid rgba(20,42,82,.06);
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  box-shadow:var(--codex-shadow);
}

.presence-card strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#123e9f,#4a93ff);
  color:#fff;
  font-size:20px;
  line-height:1;
}

.presence-card h3{
  margin:18px 0 12px;
  font-size:24px;
  line-height:1.25;
  font-weight:800;
  color:#13264f;
}

.presence-card p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#607192;
}

.product-layout{
  align-items:start;
}

.product-summary{
  overflow:hidden;
  border-radius:28px;
}

.product-summary-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:24px;
  align-items:start;
}

.product-summary-copy h2{
  margin:12px 0 12px;
  font-size:32px;
  line-height:1.2;
  font-weight:800;
  color:#13264f;
}

.product-summary-copy p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#61708f;
}

.product-chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.product-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d3e7d;
  font-size:14px;
  font-weight:700;
  transition:all .2s ease;
}

.product-chip:hover,
.product-chip.is-active{
  background:linear-gradient(135deg,var(--codex-primary),#5a82ff);
  color:#fff;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}

.product-card{
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(20,42,82,.05);
  background:#fff;
  box-shadow:var(--codex-shadow);
}

.product-card-media{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
}

.product-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.product-card:hover .product-card-media img{
  transform:scale(1.04);
}

.product-card-body{
  padding:22px 22px 24px;
}

.product-card-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
}

.product-card-body h3{
  margin:14px 0 10px;
  font-size:22px;
  line-height:1.35;
  font-weight:800;
  color:#13264f;
}

.product-card-body p{
  margin:0;
  font-size:14px;
  line-height:1.85;
  color:#627291;
}

.product-direction-block{
  margin-top:26px;
}

.empty-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:240px;
  padding:26px;
  border-radius:28px;
  border:1px dashed rgba(36,87,214,.20);
  background:linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  color:#55708f;
  font-size:15px;
  line-height:1.9;
  text-align:center;
  grid-column:1 / -1;
}

.widget-note p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#61708f;
}

.product-detail-shell .article-detail{
  padding-bottom:28px;
}

.product-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:22px 0 28px;
}

.product-gallery-grid li{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(20,42,82,.06);
  background:#fff;
  box-shadow:0 16px 36px rgba(16,36,74,.08);
}

.product-gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width: 1480px){
  .hero-inner{
    grid-template-columns:minmax(0,1fr) 560px;
    gap:40px;
  }

  .hero-copy h1{
    font-size:66px;
  }

  .home-feature-block .feature-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 1180px){
  .hero-shell{
    min-height:auto;
    padding-top:20px;
  }

  .hero-shell .container{
    width:min(100%, calc(100% - 32px));
    max-width:none;
  }

  .hero-inner{
    grid-template-columns:1fr;
    padding:28px 0 108px;
  }

  .hero-copy{
    max-width:none;
  }

  .hero-copy h1{
    max-width:none;
    font-size:58px;
  }

  .hero-visual{
    min-height:auto;
  }

  .hero-panel-side{
    margin-left:0;
  }

  .hero-band{
    margin-top:-58px;
  }

  .hero-band-inner,
  .overview-grid,
  .tech-grid,
  .presence-grid,
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .product-summary-body{
    grid-template-columns:1fr;
  }

  .product-chip-list{
    justify-content:flex-start;
  }
}

@media (max-width: 767px){
  body{
    padding-top:92px;
  }

  .hero-shell{
    padding-top:10px;
  }

  .hero-inner{
    padding:18px 0 84px;
  }

  .hero-copy h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .hero-desc{
    font-size:15px;
  }

  .hero-panel-main,
  .hero-panel-side,
  .hero-band-item,
  .overview-card,
  .presence-card,
  .tech-card{
    border-radius:24px;
  }

  .hero-panel-line{
    grid-template-columns:48px minmax(0,1fr);
    padding:16px;
  }

  .hero-panel-line strong{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .hero-band{
    margin-top:-42px;
  }

  .hero-band-inner,
  .overview-grid,
  .home-feature-block .feature-grid,
  .tech-grid,
  .presence-grid,
  .product-grid,
  .product-gallery-grid{
    grid-template-columns:1fr;
  }

  .page-banner{
    width:calc(100% - 24px);
  }

  .page-banner .container{
    padding:0 24px;
  }

  .page-banner-inner h1{
    font-size:32px;
  }

  .product-summary-copy h2,
  .overview-card h2,
  .tech-card h3{
    font-size:24px;
  }
}

/* Homepage v2 matching reference layout */
.ux-home{
  background:#f4f7fd;
}

.ux-home .container{
  width:min(1480px, calc(100% - 40px));
  max-width:1480px;
}

.ux-home .hua-navbar{
  background:rgba(255,255,255,.97);
}

.ux-home .header-top{
  background:#f4f7fd;
}

.ux-home .header-top-inner{
  min-height:28px;
  color:#70819f;
}

.ux-home .header-top-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.ux-home .header-top-links a{
  color:#70819f;
}

.ux-home .header-main{
  min-height:82px;
  gap:22px;
}

.ux-home .brand{
  min-width:228px;
}

.ux-home .brand img{
  height:44px;
}

.ux-home .brand-copy strong{
  font-size:17px;
}

.ux-home .nav-list{
  gap:4px;
}

.ux-home .nav-list > li > a{
  padding:11px 12px;
  border-radius:999px;
  color:#20345e;
  font-size:14px;
}

.ux-home .nav-list > li.current > a,
.ux-home .nav-list > li:hover > a{
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
}

.ux-home .nav-right{
  gap:10px;
}

.ux-home .nav-search .s-btn{
  width:42px;
  height:42px;
}

.ux-home .nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#1f63e7 0%,#0f45b6 100%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(31,99,231,.24);
}

.ux-home-main{
  padding-bottom:0;
}

.ux-hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(5,16,41,.98) 0%, rgba(9,31,80,.95) 44%, rgba(16,93,226,.88) 100%);
}

.ux-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 28%, rgba(92,186,255,.34), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(109,221,255,.28), transparent 16%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:auto, auto, 72px 72px, 72px 72px;
  background-position:center, center, center, center;
  mask-image:linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  pointer-events:none;
}

.ux-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) 480px;
  gap:56px;
  align-items:center;
  min-height:600px;
  padding:58px 0 96px;
}

.ux-hero-copy{
  color:#fff;
}

.ux-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#dbe9ff;
  font-size:12px;
  letter-spacing:.1em;
}

.ux-hero-copy h1{
  margin:22px 0 14px;
  font-size:64px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-1.8px;
}

.ux-hero-copy p{
  max-width:620px;
  margin:0;
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,.78);
}

.ux-home .hero-actions{
  display:flex;
  gap:14px;
  margin-top:28px;
}

.ux-home .hero-actions .btn{
  min-width:128px;
}

.ux-home .btn-secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
}

.ux-hero-art{
  position:relative;
  min-height:420px;
}

.ux-chip{
  position:relative;
  width:100%;
  height:420px;
  border-radius:28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(107,220,255,.24), transparent 42%),
    linear-gradient(145deg, rgba(23,48,104,.92), rgba(8,23,60,.92));
  box-shadow:0 36px 72px rgba(0,0,0,.26);
  overflow:hidden;
}

.ux-chip::before{
  content:"";
  position:absolute;
  inset:28px;
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(103,214,255,.12), rgba(38,97,255,.10)),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:auto, 32px 32px, 32px 32px;
  border:1px solid rgba(120,180,255,.16);
}

.ux-chip::after{
  content:"";
  position:absolute;
  inset:108px 96px;
  border-radius:18px;
  border:1px solid rgba(114,203,255,.28);
  box-shadow:
    0 0 0 12px rgba(31,104,255,.10),
    0 0 80px rgba(45,135,255,.34);
}

.ux-chip-core{
  position:absolute;
  inset:150px 132px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:
    linear-gradient(180deg, rgba(21,53,111,.9), rgba(7,20,50,.95));
  color:#6ec9ff;
  font-size:54px;
  font-weight:800;
  letter-spacing:.08em;
  box-shadow:
    0 0 0 12px rgba(50,140,255,.10),
    0 0 52px rgba(76,181,255,.42);
}

.ux-chip-glow{
  position:absolute;
  width:100px;
  height:100px;
  border-radius:26px;
  border:1px solid rgba(120,208,255,.24);
  box-shadow:0 0 36px rgba(70,172,255,.35);
}

.ux-chip-glow-a{
  left:24px;
  top:120px;
}

.ux-chip-glow-b{
  right:24px;
  top:20px;
}

.ux-feature-strip{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:0;
  margin-top:-44px;
  padding:14px 10px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 22px 40px rgba(12,26,51,.12);
}

.ux-feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
}

.ux-feature-item + .ux-feature-item{
  border-left:1px solid rgba(25,54,105,.08);
}

.ux-feature-item i{
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:16px;
  background:linear-gradient(135deg,#2d6fff,#5b88ff);
  color:#fff;
  font-size:20px;
  box-shadow:0 12px 26px rgba(45,111,255,.24);
}

.ux-feature-item strong{
  display:block;
  font-size:16px;
  line-height:1.4;
  color:#163362;
}

.ux-feature-item p{
  margin-top:6px;
  font-size:12px;
  line-height:1.6;
  color:#7a8aa6;
}

.ux-section{
  padding:54px 0 0;
}

.ux-section-head{
  margin-bottom:20px;
  text-align:center;
}

.ux-section-head h2{
  margin:0;
  font-size:30px;
  line-height:1.2;
  color:#12264f;
  font-weight:800;
}

.ux-section-head p{
  margin:10px auto 0;
  max-width:660px;
  font-size:14px;
  line-height:1.85;
  color:#6d7f99;
}

.ux-section-head--row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  text-align:left;
}

.ux-section-head--row a{
  color:var(--codex-primary);
  font-weight:700;
}

.ux-product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}

.ux-product-card{
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 36px rgba(15,30,61,.09);
  transition:transform .2s ease, box-shadow .2s ease;
}

.ux-product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 40px rgba(15,30,61,.14);
}

.ux-product-media{
  position:relative;
  height:130px;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(120,214,255,.28), transparent 24%),
    linear-gradient(135deg,#163167,#091632);
}

.ux-product-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.55;
}

.ux-product-media span{
  position:absolute;
  left:16px;
  bottom:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:14px;
  font-weight:700;
  backdrop-filter:blur(12px);
}

.ux-product-media-2{
  background:linear-gradient(135deg,#0b2a73,#0a62e6);
}

.ux-product-media-3{
  background:linear-gradient(135deg,#09315b,#0a406f 46%,#0d7bde);
}

.ux-product-media-4{
  background:linear-gradient(135deg,#0f2040,#143f76 55%,#0b89d6);
}

.ux-product-body{
  padding:18px 18px 20px;
}

.ux-product-body h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.35;
  color:#14284f;
  font-weight:800;
}

.ux-product-body p{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.8;
  color:#667892;
}

.ux-product-body em{
  color:var(--codex-primary);
  font-style:normal;
  font-size:13px;
  font-weight:700;
}

.ux-news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.ux-news-card{
  display:block;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 36px rgba(15,30,61,.09);
}

.ux-news-media{
  position:relative;
  min-height:160px;
  overflow:hidden;
}

.ux-news-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(113,209,255,.25), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(113,255,222,.18), transparent 18%),
    linear-gradient(135deg,#0a2557 0%, #0b63d7 100%);
}

.ux-news-card:nth-child(2n) .ux-news-media::before{
  background:
    radial-gradient(circle at 24% 24%, rgba(112,207,255,.2), transparent 22%),
    linear-gradient(135deg,#143b7d 0%, #0f68dc 100%);
}

.ux-news-card:nth-child(3n) .ux-news-media::before{
  background:
    radial-gradient(circle at 24% 24%, rgba(255,255,255,.12), transparent 22%),
    linear-gradient(135deg,#0c2b62 0%, #1651b3 100%);
}

.ux-news-card:nth-child(4n) .ux-news-media::before{
  background:
    radial-gradient(circle at 30% 30%, rgba(112,239,255,.18), transparent 22%),
    linear-gradient(135deg,#0a1e4f 0%, #0d4fbd 100%);
}

.ux-date{
  position:absolute;
  left:16px;
  top:16px;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:16px;
  background:#fff;
  color:#1b3f7f;
  box-shadow:0 12px 24px rgba(0,0,0,.15);
}

.ux-date strong{
  font-size:18px;
  line-height:1;
}

.ux-date em{
  margin-top:2px;
  font-size:10px;
  font-style:normal;
  line-height:1;
  opacity:.7;
}

.ux-news-tag{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 10px;
  margin-bottom:10px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
}

.ux-news-body{
  padding:16px 18px 18px;
}

.ux-news-body h3{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.45;
  color:#13264f;
  font-weight:800;
}

.ux-news-body p{
  margin:0;
  font-size:13px;
  line-height:1.8;
  color:#6b7d96;
}

.ux-stats-band{
  margin-top:58px;
  padding:30px 0;
  background:linear-gradient(90deg,#1150c7 0%,#0f5fd4 50%,#0c46a8 100%);
}

.ux-stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.ux-stat-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  min-height:132px;
  padding:22px 24px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.06);
  color:#fff;
}

.ux-stat-card strong{
  font-size:20px;
  line-height:1.25;
  font-weight:800;
}

.ux-stat-card span{
  margin-top:8px;
  font-size:13px;
  line-height:1.7;
  opacity:.85;
}

.ux-about-section{
  padding-bottom:70px;
}

.ux-app-about{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}

.ux-app-panel,
.ux-about-panel{
  background:#fff;
  border-radius:20px;
  box-shadow:0 18px 36px rgba(15,30,61,.09);
}

.ux-app-panel{
  padding:20px;
}

.ux-app-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}

.ux-app-card{
  min-height:88px;
  padding:18px 16px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid rgba(20,42,82,.06);
}

.ux-app-card strong{
  display:block;
  font-size:15px;
  line-height:1.4;
  color:#162c57;
}

.ux-app-card span{
  display:block;
  margin-top:8px;
  font-size:12px;
  line-height:1.6;
  color:#71829d;
}

.ux-about-panel{
  overflow:hidden;
}

.ux-about-visual{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  padding:22px;
  background:
    radial-gradient(circle at 28% 18%, rgba(139,214,255,.18), transparent 20%),
    linear-gradient(135deg,#dbe8f8 0%,#f6f9fd 100%);
}

.ux-about-visual::before{
  content:"";
  position:absolute;
  right:24px;
  bottom:24px;
  width:170px;
  height:170px;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(207,221,240,.68)),
    linear-gradient(90deg, rgba(20,42,82,.06) 1px, transparent 1px),
    linear-gradient(rgba(20,42,82,.06) 1px, transparent 1px);
  background-size:auto, 18px 18px, 18px 18px;
  box-shadow:0 16px 34px rgba(27,53,93,.12);
}

.ux-about-visual::after{
  content:"";
  position:absolute;
  right:60px;
  bottom:60px;
  width:82px;
  height:82px;
  border-radius:18px;
  background:linear-gradient(135deg,#1d57cb,#69a8ff);
  box-shadow:0 16px 34px rgba(29,87,203,.32);
}

.ux-about-visual span{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(19,41,85,.84);
  color:#fff;
  font-size:12px;
  letter-spacing:.12em;
}

.ux-about-body{
  padding:22px;
}

.ux-about-body h2{
  margin:0 0 12px;
  font-size:26px;
  line-height:1.2;
  color:#13264f;
  font-weight:800;
}

.ux-about-body p{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.9;
  color:#64748d;
}

.footer-v2{
  background:linear-gradient(180deg,#06152c 0%,#081223 100%);
  color:#d9e7ff;
}

.ux-home .footer .container{
  width:min(1480px, calc(100% - 40px));
  max-width:1480px;
}

.footer-v2 .footer-top{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:26px;
}

.footer-v2 .footer-brand{
  max-width:260px;
}

.footer-v2 .footer-brand p{
  color:#8ea4ca;
}

.footer-v2 .footer-panels{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:18px;
}

.footer-v2 .footer-panel{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.footer-v2 .footer-panel h3{
  color:#fff;
}

.footer-v2 .footer-nav-list li a,
.footer-v2 .footer-panel li a{
  color:#b9c9e6;
}

.footer-qr-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.footer-qr{
  position:relative;
  width:108px;
  height:108px;
  margin:12px 0 10px;
  border-radius:12px;
  background:
    radial-gradient(circle at 25% 25%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 75% 25%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 25% 75%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 75% 75%, #fff 0 7px, transparent 8px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    #fff;
  background-size:100% 100%,100% 100%,100% 100%,100% 100%,14px 14px,14px 14px,100% 100%;
  box-shadow:0 16px 36px rgba(0,0,0,.22);
}

.footer-qr::before{
  content:"";
  position:absolute;
  inset:28px;
  border-radius:8px;
  background:
    linear-gradient(90deg,#09162b 0 16px,transparent 16px 20px,#09162b 20px 36px,transparent 36px 100%);
}

.footer-qr-panel p{
  color:#8ea4ca;
  text-align:center;
}

.footer-v2 .footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  color:#91a6c6;
}

.ux-home .page-banner{
  width:min(1480px, calc(100% - 40px));
}

@media (max-width: 1180px){
  .ux-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
    padding:42px 0 96px;
  }

  .ux-hero-copy h1{
    font-size:54px;
  }

  .ux-feature-strip,
  .ux-product-grid,
  .ux-news-grid,
  .ux-stats-grid,
  .footer-v2 .footer-panels{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ux-app-about,
  .footer-v2 .footer-top{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .ux-home .container{
    width:calc(100% - 24px);
  }

  .ux-home .header-main{
    gap:14px;
  }

  .ux-home .nav-list{
    display:none;
  }

  .ux-home .nav-cta{
    display:none;
  }

  .ux-hero-grid{
    min-height:auto;
    padding:34px 0 84px;
  }

  .ux-hero-copy h1{
    font-size:38px;
    letter-spacing:-1px;
  }

  .ux-hero-copy p{
    font-size:15px;
  }

  .ux-chip{
    height:300px;
  }

  .ux-chip-core{
    inset:112px 90px;
    font-size:40px;
  }

  .ux-feature-strip,
  .ux-product-grid,
  .ux-news-grid,
  .ux-stats-grid,
  .ux-app-grid,
  .footer-v2 .footer-panels{
    grid-template-columns:1fr;
  }

  .ux-feature-strip{
    margin-top:-30px;
    padding:10px;
  }

  .ux-feature-item + .ux-feature-item{
    border-left:none;
    border-top:1px solid rgba(25,54,105,.08);
  }

  .ux-section-head--row{
    flex-direction:column;
    align-items:start;
  }
}

/* Homepage v3 aligned to reference UI */
.ux-home{
  background:
    radial-gradient(circle at 50% -10%, rgba(53,122,255,.10), transparent 28%),
    linear-gradient(180deg,#ffffff 0%, #f6f9ff 42%, #ffffff 100%);
}

.ux-home .container{
  width:min(1320px, calc(100% - 40px));
  max-width:1320px;
}

.ux-home .header-top{
  background:linear-gradient(180deg,#fbfdff 0%, #f4f7fc 100%);
  border-bottom:1px solid rgba(17,53,120,.06);
}

.ux-home .header-top-inner{
  min-height:34px;
  font-size:12px;
  color:#7c8ba4;
}

.ux-home .header-top-links{
  gap:20px;
}

.ux-home .header-top-links a:hover{
  color:var(--codex-primary);
}

.ux-home .header-main{
  min-height:86px;
}

.ux-home .brand{
  min-width:236px;
}

.ux-home .brand img{
  height:50px;
}

.ux-home .brand-copy strong{
  font-size:18px;
}

.ux-home .brand-copy em{
  letter-spacing:1.4px;
}

.ux-home .nav-list{
  gap:8px;
}

.ux-home .nav-list > li > a{
  padding:12px 10px 19px;
  border-radius:0;
  background:transparent;
  position:relative;
  font-size:15px;
  font-weight:600;
}

.ux-home .nav-list > li.current > a,
.ux-home .nav-list > li:hover > a{
  background:transparent;
  color:var(--codex-primary);
}

.ux-home .nav-list > li.current > a::after,
.ux-home .nav-list > li:hover > a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:6px;
  width:28px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#1854d8,#4c83ff);
  transform:translateX(-50%);
}

.ux-home .nav-search .s-btn{
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  box-shadow:none;
}

.ux-home .nav-cta{
  height:40px;
  padding:0 22px;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(20,87,214,.22);
}

.ux-hero{
  position:relative;
  margin:0;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(3,19,57,.98) 0%, rgba(6,33,96,.96) 44%, rgba(14,84,218,.88) 100%);
}

.ux-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 28%, rgba(105,214,255,.26), transparent 18%),
    radial-gradient(circle at 93% 16%, rgba(135,222,255,.20), transparent 11%),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:auto, auto, 62px 62px, 62px 62px;
  opacity:.85;
  pointer-events:none;
}

.ux-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(2,10,30,.42) 0%, rgba(2,10,30,.06) 48%, transparent 100%);
}

.ux-hero-grid{
  position:relative;
  z-index:1;
  grid-template-columns:minmax(0,1fr) 560px;
  gap:48px;
  min-height:520px;
  padding:48px 0 108px;
}

.ux-eyebrow{
  min-height:32px;
  padding:0 14px;
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.10);
  color:#d8e8ff;
  font-size:12px;
}

.ux-hero-copy h1{
  margin:18px 0 16px;
  font-size:64px;
  line-height:1.12;
  letter-spacing:-1.4px;
}

.ux-hero-copy p{
  max-width:560px;
  font-size:19px;
  line-height:1.82;
  color:rgba(255,255,255,.82);
}

.ux-home .hero-actions{
  margin-top:32px;
}

.ux-home .hero-actions .btn{
  min-width:138px;
  height:48px;
  font-size:14px;
}

.ux-home .btn-primary{
  background:linear-gradient(135deg,#1a5ee4 0%,#256ff2 100%);
  box-shadow:0 18px 34px rgba(26,94,228,.26);
}

.ux-home .btn-secondary{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.32);
}

.ux-hero-art{
  min-height:420px;
}

.ux-hero-board{
  position:relative;
  width:100%;
  height:420px;
  border-radius:28px;
  background:
    radial-gradient(circle at 70% 46%, rgba(85,204,255,.18), transparent 16%),
    radial-gradient(circle at 48% 45%, rgba(17,153,255,.22), transparent 24%),
    linear-gradient(145deg, rgba(13,36,88,.86), rgba(7,20,57,.62));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}

.ux-hero-board::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.8;
}

.ux-hero-board::after{
  content:"";
  position:absolute;
  left:82px;
  right:52px;
  top:120px;
  bottom:74px;
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(33,119,255,.18), rgba(13,43,110,.04)),
    linear-gradient(90deg, rgba(74,179,255,.18), rgba(74,179,255,0));
  transform:skewX(-12deg);
  filter:drop-shadow(0 18px 28px rgba(6,20,58,.42));
}

.ux-chip{
  position:absolute;
  right:58px;
  top:92px;
  width:310px;
  height:214px;
  border-radius:26px;
  background:
    linear-gradient(135deg, rgba(40,140,255,.84), rgba(7,38,114,.96)),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.18), transparent 32%);
  box-shadow:
    0 34px 66px rgba(2,12,34,.34),
    0 0 0 1px rgba(124,220,255,.16) inset;
  transform:perspective(900px) rotateX(52deg) rotateZ(-28deg);
}

.ux-chip::before{
  content:"";
  position:absolute;
  inset:22px;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(0,202,255,.18), rgba(0,98,255,.22)),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size:auto, 26px 26px, 26px 26px;
}

.ux-chip::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:32px;
  border:1px solid rgba(109,229,255,.22);
  box-shadow:0 0 48px rgba(66,192,255,.26);
}

.ux-chip-core{
  position:absolute;
  inset:54px 70px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(16,51,124,.96), rgba(7,20,56,.98));
  color:#8fe7ff;
  font-size:58px;
  font-weight:800;
  letter-spacing:.08em;
  box-shadow:
    0 0 0 10px rgba(55,165,255,.10),
    0 0 46px rgba(72,188,255,.34);
}

.ux-chip-glow{
  position:absolute;
  width:84px;
  height:84px;
  border-radius:22px;
  border:1px solid rgba(117,221,255,.20);
  background:rgba(123,230,255,.08);
  box-shadow:0 0 28px rgba(76,204,255,.24);
}

.ux-chip-glow-a{
  left:-26px;
  top:78px;
}

.ux-chip-glow-b{
  right:-20px;
  top:-18px;
}

.ux-hero-cube{
  position:absolute;
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(95,231,255,.78), rgba(17,112,255,.10)),
    linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.06));
  box-shadow:
    inset 0 0 0 1px rgba(153,239,255,.52),
    0 0 26px rgba(88,214,255,.30);
}

.ux-hero-cube-a{
  width:52px;
  height:52px;
  left:84px;
  top:182px;
}

.ux-hero-cube-b{
  width:60px;
  height:60px;
  right:16px;
  top:24px;
}

.ux-hero-cube-c{
  width:40px;
  height:40px;
  right:118px;
  top:126px;
}

.ux-feature-strip{
  margin-top:-40px;
  padding:12px 18px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 26px 60px rgba(10,31,74,.12);
}

.ux-feature-item{
  gap:16px;
  padding:18px 18px;
}

.ux-feature-item i{
  width:52px;
  height:52px;
  border-radius:18px;
  box-shadow:none;
}

.ux-feature-item--blue i{
  background:linear-gradient(135deg,#2f73ff 0%,#3e94ff 100%);
}

.ux-feature-item--violet i{
  background:linear-gradient(135deg,#4252ff 0%,#7a65ff 100%);
}

.ux-feature-item--green i{
  background:linear-gradient(135deg,#33cc8b 0%,#77e2b0 100%);
}

.ux-feature-item--orange i{
  background:linear-gradient(135deg,#ff8c3a 0%,#ffb15c 100%);
}

.ux-feature-item strong{
  font-size:18px;
}

.ux-feature-item p{
  font-size:13px;
  line-height:1.7;
}

.ux-section{
  padding-top:58px;
}

.ux-section-head{
  margin-bottom:26px;
}

.ux-section-head h2{
  display:inline-block;
  position:relative;
  padding-bottom:14px;
  font-size:34px;
}

.ux-section-head h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:36px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#1959db,#4b88ff);
  transform:translateX(-50%);
}

.ux-section-head--row h2::after{
  left:0;
  transform:none;
}

.ux-section-head p{
  max-width:740px;
  font-size:15px;
}

.ux-product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.ux-product-card{
  border:1px solid rgba(17,48,102,.06);
  border-radius:20px;
  box-shadow:0 18px 38px rgba(16,35,79,.08);
}

.ux-product-media{
  height:172px;
  border-radius:20px 20px 0 0;
  background:linear-gradient(135deg,#04122f 0%,#0d57d1 100%);
}

.ux-product-media::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:30px 30px;
}

.ux-product-card--chip .ux-product-media::after,
.ux-product-card--vision .ux-product-media::after,
.ux-product-card--data .ux-product-media::after,
.ux-product-card--solution .ux-product-media::after{
  content:"";
  position:absolute;
}

.ux-product-card--chip .ux-product-media::after{
  left:50%;
  top:50%;
  width:112px;
  height:112px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(34,118,255,.94), rgba(6,35,97,.98)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(137,219,255,.18),
    0 0 0 12px rgba(77,157,255,.10),
    0 20px 30px rgba(3,11,30,.38);
  transform:translate(-50%,-50%) rotate(45deg);
}

.ux-product-card--vision .ux-product-media::after{
  left:50%;
  top:50%;
  width:144px;
  height:86px;
  border-radius:999px;
  border:2px solid rgba(103,212,255,.85);
  box-shadow:
    0 0 0 12px rgba(53,120,255,.10),
    0 0 42px rgba(84,196,255,.30);
  transform:translate(-50%,-50%);
}

.ux-product-card--vision .ux-product-media{
  background:linear-gradient(135deg,#051a43 0%,#0b3e96 50%,#0b6eea 100%);
}

.ux-product-card--data .ux-product-media::after{
  left:50%;
  top:50%;
  width:168px;
  height:96px;
  border-radius:50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 50%, rgba(98,230,255,.42), transparent 28%),
    linear-gradient(180deg, rgba(15,66,145,.22), rgba(15,66,145,.02));
  border:2px solid rgba(109,224,255,.68);
  box-shadow:0 0 36px rgba(72,200,255,.26);
  transform:translate(-50%,-50%);
}

.ux-product-card--data .ux-product-media{
  background:linear-gradient(135deg,#051733 0%,#0a2f73 46%,#0f72de 100%);
}

.ux-product-card--solution .ux-product-media::after{
  left:50%;
  top:50%;
  width:178px;
  height:110px;
  border-radius:12px;
  background:
    linear-gradient(180deg, rgba(13,28,65,.92), rgba(8,18,46,.98));
  box-shadow:
    inset 0 0 0 1px rgba(114,211,255,.18),
    0 22px 34px rgba(3,11,30,.34);
  transform:translate(-50%,-50%);
}

.ux-product-card--solution .ux-product-media{
  background:linear-gradient(135deg,#081731 0%,#0d2f61 54%,#0f86d6 100%);
}

.ux-product-body{
  padding:20px 20px 22px;
}

.ux-product-body h3{
  font-size:20px;
}

.ux-product-body p{
  font-size:14px;
}

.ux-news-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.ux-news-card{
  border:1px solid rgba(16,42,92,.06);
  border-radius:18px;
  box-shadow:0 16px 34px rgba(16,35,79,.08);
}

.ux-news-media{
  min-height:164px;
  background:linear-gradient(135deg,#08214c 0%,#0c5fd8 100%);
}

.ux-news-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ux-news-media img[src*="not_adv.jpg"]{
  display:none;
}

.ux-news-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(4,11,31,.16) 0%, rgba(4,11,31,.40) 100%);
}

.ux-news-card--link .ux-news-media::before{
  background:
    radial-gradient(circle at 26% 30%, rgba(113,219,255,.24), transparent 20%),
    linear-gradient(135deg,#143b7d 0%, #0f68dc 100%);
}

.ux-news-card--cooperate .ux-news-media::before{
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(135deg,#0c2b62 0%, #1651b3 100%);
}

.ux-date{
  z-index:2;
  width:58px;
  height:58px;
}

.ux-date strong{
  font-size:18px;
}

.ux-date strong:first-child{
  letter-spacing:0;
}

.ux-news-tag{
  min-height:26px;
  padding:0 12px;
  margin-bottom:12px;
}

.ux-news-body{
  padding:18px 18px 20px;
}

.ux-news-body h3{
  font-size:18px;
  line-height:1.5;
}

.ux-news-body p{
  font-size:13px;
  line-height:1.85;
}

.ux-stats-band{
  margin-top:56px;
  padding:30px 0;
  background:linear-gradient(90deg,#0f48bd 0%, #0f67db 52%, #0f48bd 100%);
}

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

.ux-stat-card{
  align-items:center;
  min-height:112px;
  padding:18px;
  border-radius:16px;
  text-align:center;
  background:rgba(255,255,255,.04);
}

.ux-stat-card strong{
  font-size:42px;
  line-height:1.05;
}

.ux-stat-card span{
  margin-top:10px;
  font-size:15px;
}

.ux-app-about{
  grid-template-columns:1.16fr .84fr;
  gap:22px;
}

.ux-app-panel,
.ux-about-panel{
  border-radius:18px;
  box-shadow:0 16px 34px rgba(16,35,79,.08);
}

.ux-app-panel{
  padding:24px;
}

.ux-app-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.ux-app-card{
  min-height:98px;
  padding:18px 18px;
  border-radius:14px;
}

.ux-app-card strong{
  font-size:17px;
}

.ux-app-card span{
  font-size:13px;
}

.ux-about-panel{
  display:grid;
  grid-template-columns:260px 1fr;
}

.ux-about-visual{
  min-height:100%;
  padding:20px;
  align-items:flex-start;
  background:
    linear-gradient(160deg,#f4f8ff 0%,#e6eefb 100%);
}

.ux-about-visual::before{
  right:20px;
  bottom:18px;
  width:138px;
  height:188px;
  border-radius:10px;
  background:
    linear-gradient(90deg, rgba(98,124,170,.10) 1px, transparent 1px),
    linear-gradient(rgba(98,124,170,.10) 1px, transparent 1px),
    linear-gradient(180deg,#dfe9f8 0%, #bdd0ee 100%);
  background-size:18px 18px, 18px 18px, auto;
}

.ux-about-visual::after{
  right:58px;
  bottom:36px;
  width:84px;
  height:132px;
  border-radius:8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(180deg,#8fb2e3 0%, #5f88c8 100%);
  background-size:14px 14px, 14px 14px, auto;
  box-shadow:0 12px 24px rgba(61,96,151,.20);
}

.ux-about-visual span{
  background:#163b82;
}

.ux-about-body{
  padding:28px 24px;
}

.ux-about-body h2{
  font-size:34px;
}

.ux-about-body p{
  font-size:15px;
}

.footer-v2{
  margin-top:0;
  background:linear-gradient(180deg,#07162f 0%, #091224 100%);
}

.footer-v2 .footer-top{
  grid-template-columns:300px 1fr;
}

.footer-v2 .footer-panels{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.footer-v2 .footer-panel{
  background:transparent;
  border:none;
}

.footer-v2 .footer-brand{
  max-width:none;
}

.footer-v2 .footer-brand img{
  max-width:176px;
}

.footer-v2 .footer-brand p{
  margin-top:16px;
  line-height:1.9;
}

.footer-qr{
  width:118px;
  height:118px;
}

@media (max-width: 1180px){
  .ux-home .container{
    width:calc(100% - 32px);
  }

  .ux-hero-grid{
    grid-template-columns:1fr;
    gap:26px;
    min-height:auto;
    padding:42px 0 90px;
  }

  .ux-hero-copy h1{
    font-size:52px;
  }

  .ux-product-grid,
  .ux-news-grid,
  .ux-stats-grid,
  .ux-app-grid,
  .footer-v2 .footer-panels{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ux-about-panel,
  .ux-app-about,
  .footer-v2 .footer-top{
    grid-template-columns:1fr;
  }

  .ux-about-visual{
    min-height:220px;
  }
}

@media (max-width: 767px){
  .ux-home .container{
    width:calc(100% - 24px);
  }

  .ux-home .header-top-links{
    display:none;
  }

  .ux-hero-grid{
    padding:32px 0 72px;
  }

  .ux-hero-copy h1{
    font-size:40px;
  }

  .ux-hero-copy p{
    font-size:15px;
  }

  .ux-hero-board{
    height:320px;
  }

  .ux-chip{
    right:28px;
    top:84px;
    width:220px;
    height:160px;
  }

  .ux-chip-core{
    inset:40px 48px;
    font-size:40px;
  }

  .ux-feature-strip,
  .ux-product-grid,
  .ux-news-grid,
  .ux-stats-grid,
  .ux-app-grid,
  .footer-v2 .footer-panels{
    grid-template-columns:1fr;
  }

  .ux-stat-card strong{
    font-size:34px;
  }

  .ux-section-head h2{
    font-size:28px;
  }
}

/* Dynamic content cleanup */
.ux-product-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.ux-product-link{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(29,78,188,.10);
  background:linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  color:#1e447f;
  font-size:14px;
  font-weight:700;
  transition:all .2s ease;
}

.ux-product-link:hover{
  border-color:rgba(29,78,188,.24);
  box-shadow:0 12px 26px rgba(17,51,108,.10);
  transform:translateY(-1px);
}

.ux-home .ux-product-grid,
.ux-home .ux-news-grid--dynamic,
.recommend-article-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.ux-home .ux-news-grid--dynamic{
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.ux-home .ux-product-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  transition:transform .2s ease, box-shadow .2s ease;
}

.ux-home .ux-product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 40px rgba(16,35,79,.12);
}

.ux-home .ux-product-media{
  position:relative;
  display:block;
  overflow:hidden;
  height:220px;
  background:linear-gradient(135deg,#051631 0%,#0d4ec1 100%);
}

.ux-home .ux-product-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 76% 24%, rgba(132,225,255,.20), transparent 18%),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:auto, 28px 28px, 28px 28px;
}

.ux-home .ux-product-media img{
  position:absolute;
  inset:0;
  z-index:2;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ux-product-placeholder{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:42px;
  max-width:max-content;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:14px;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.ux-home .ux-product-body{
  flex:1;
}

.ux-home .ux-product-body h3{
  margin:12px 0 10px;
  font-size:20px;
  line-height:1.45;
}

.ux-home .ux-product-body h3 a{
  color:#13264f;
}

.ux-home .ux-product-body h3 a:hover{
  color:var(--codex-primary);
}

.ux-home .ux-product-body p{
  margin:0;
  color:#61708f;
  line-height:1.82;
}

.ux-home .ux-product-body em{
  display:inline-flex;
  color:var(--codex-primary);
  font-size:13px;
  font-style:normal;
  font-weight:700;
}

.ux-card-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
  color:#8798b6;
  font-size:13px;
  line-height:1.4;
}

.ux-card-foot time,
.ux-news-time{
  color:#8798b6;
  font-size:13px;
  font-family:Arial, "Microsoft Yahei", sans-serif;
  white-space:nowrap;
}

.ux-news-time{
  display:block;
  margin-top:14px;
}

.ux-product-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
}

.ux-empty-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:250px;
  padding:32px;
  border:1px dashed rgba(25,84,202,.18);
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
  color:#547091;
  text-align:center;
  line-height:1.9;
  grid-column:1 / -1;
}

.ux-empty-panel--news{
  min-height:220px;
}

.list-archive-desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.9;
  color:#627291;
}

.article-seo-hero{
  overflow:hidden;
  margin-bottom:22px;
  border-radius:30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(118,220,255,.22), transparent 18%),
    linear-gradient(135deg,#081a44 0%, #10367b 52%, #0f5dd3 100%);
  color:#fff;
}

.article-seo-hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:28px;
  align-items:center;
  padding:36px;
}

.article-seo-copy h1{
  margin:14px 0 16px;
  font-size:38px;
  line-height:1.25;
  font-weight:800;
  color:#fff;
}

.article-seo-copy p{
  margin:0;
  max-width:720px;
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.95;
}

.article-seo-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.article-seo-meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.article-seo-cover{
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  box-shadow:0 24px 44px rgba(2,10,31,.24);
}

.article-seo-cover img{
  display:block;
  width:100%;
  height:320px;
  object-fit:cover;
}

.article-seo-shell{
  overflow:hidden;
  border-radius:28px;
}

.article-seo-shell .article-detail{
  padding:36px 38px 40px;
}

.article-seo-shell .article-body{
  font-size:17px;
  line-height:2.02;
  color:#314466;
}

.article-seo-shell .article-body > * + *{
  margin-top:1.15em;
}

.article-seo-shell .article-body h2,
.article-seo-shell .article-body h3,
.article-seo-shell .article-body h4{
  margin-top:1.6em;
  margin-bottom:.65em;
  color:#13264f;
  font-weight:800;
  line-height:1.4;
}

.article-seo-shell .article-body h2{
  font-size:30px;
}

.article-seo-shell .article-body h3{
  font-size:24px;
}

.article-seo-shell .article-body p{
  margin:0;
}

.article-seo-shell .article-body ul,
.article-seo-shell .article-body ol{
  padding-left:1.4em;
}

.article-seo-shell .article-body blockquote{
  margin:1.5em 0;
  padding:18px 22px;
  border-left:4px solid var(--codex-primary);
  border-radius:18px;
  background:linear-gradient(180deg,#f7faff 0%,#eff5ff 100%);
  color:#466086;
}

.article-seo-shell .article-body a{
  color:var(--codex-primary);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.article-seo-shell .article-body table{
  width:100%;
  border-collapse:collapse;
  margin:1.5em 0;
  overflow:hidden;
  border-radius:18px;
}

.article-seo-shell .article-body table td,
.article-seo-shell .article-body table th{
  padding:12px 14px;
  border:1px solid rgba(22,50,95,.08);
}

.article-seo-shell .article-body table th{
  background:#f3f7ff;
  color:#17315d;
}

.entry-page-info{
  min-width:0;
}

.entry-page-info .label{
  display:block;
  margin-bottom:6px;
  color:#8190a9;
  font-size:12px;
}

.entry-page-info .title{
  display:block;
  line-height:1.65;
}

.article-related-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  padding:20px;
}

.article-related-item{
  display:flex;
  gap:14px;
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(22,50,95,.06);
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.article-related-thumb{
  flex:0 0 124px;
  overflow:hidden;
  border-radius:16px;
}

.article-related-thumb img{
  width:100%;
  height:92px;
  object-fit:cover;
}

.article-related-copy{
  min-width:0;
  flex:1;
}

.article-related-copy span{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
}

.article-related-copy h4{
  margin:12px 0 8px;
  font-size:18px;
  line-height:1.5;
  font-weight:800;
}

.article-related-copy h4 a{
  color:#13264f;
}

.article-related-copy h4 a:hover{
  color:var(--codex-primary);
}

.article-related-copy p{
  margin:0;
  color:#61708f;
  font-size:13px;
  line-height:1.82;
}

.article-relevant--list ul{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.article-relevant--list li{
  position:relative;
  padding-left:20px;
}

.article-relevant--list li::before{
  content:"";
  position:absolute;
  left:12px;
  top:22px;
  width:5px;
  height:5px;
  border-radius:999px;
  background:var(--codex-primary);
}

.article-layout .product-summary{
  margin-bottom:22px;
}

.article-summary-body{
  grid-template-columns:minmax(0,1fr) 380px;
}

.article-summary-copy h2{
  margin:12px 0 12px;
  font-size:32px;
  line-height:1.25;
  font-weight:800;
  color:#13264f;
}

.article-summary-copy p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#61708f;
}

.article-chip-list{
  align-content:flex-start;
}

.article-summary-metas{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-content:flex-start;
  gap:12px;
}

.article-summary-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:#eef4ff;
  color:#23406f;
  font-size:14px;
  font-weight:700;
}

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

.article-card-media{
  aspect-ratio:16/10;
}

.article-card-body h3{
  margin:14px 0 10px;
  font-size:22px;
  line-height:1.4;
  font-weight:800;
  color:#13264f;
}

.article-card-body h3 a{
  color:#13264f;
}

.article-card-body h3 a:hover{
  color:var(--codex-primary);
}

.article-card-body p{
  margin:0;
  color:#61708f;
  font-size:14px;
  line-height:1.85;
}

.article-card-meta{
  margin-top:16px;
}

.article-item--compact{
  overflow:visible;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.article-item--compact .pagination{
  margin-top:24px;
}

.article-detail-summary{
  margin-bottom:22px;
}

.article-detail-shell .article-detail{
  padding-bottom:30px;
}

.article-cover-panel{
  overflow:hidden;
  margin:22px 0 26px;
  border-radius:24px;
  border:1px solid rgba(20,42,82,.06);
  background:#fff;
  box-shadow:0 18px 38px rgba(16,35,79,.08);
}

.article-cover-panel img{
  width:100%;
  max-height:460px;
  object-fit:cover;
}

.article-related-grid{
  padding:20px;
}

.article-relevant--cards ul{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.product-recommend-block{
  margin-top:28px;
}

.recommend-article-card{
  border:1px solid rgba(20,42,82,.06);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--codex-shadow);
  overflow:hidden;
}

.recommend-article-body{
  display:flex;
  flex-direction:column;
  min-height:220px;
  padding:22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(76,148,255,.10), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
}

.recommend-article-tag{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(36,87,214,.08);
  color:var(--codex-primary);
  font-size:12px;
  font-weight:700;
}

.recommend-article-card h3{
  margin:14px 0 12px;
  font-size:20px;
  line-height:1.45;
  color:#13264f;
}

.recommend-article-card p{
  margin:0;
  color:#61708f;
  font-size:14px;
  line-height:1.85;
}

.recommend-article-card em{
  margin-top:auto;
  padding-top:16px;
  color:#7a8ca9;
  font-size:12px;
  font-style:normal;
}

.side-article-list li{
  padding:14px 20px;
  border-bottom:1px solid rgba(22,50,95,.06);
}

.side-article-list li:last-child{
  border-bottom:none;
}

.side-article-list a{
  display:block;
  color:#23395f;
  font-size:14px;
  line-height:1.7;
  font-weight:700;
}

.side-article-list a:hover{
  color:var(--codex-primary);
}

.side-article-list span{
  display:block;
  margin-top:6px;
  color:#8b99af;
  font-size:12px;
}

.side-empty{
  color:#7285a3;
}

.site-map-links,
.tag-cloud-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:18px 20px 22px;
}

.site-map-links a,
.tag-cloud-links a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(22,50,95,.08);
  background:#f7faff;
  color:#28406f;
  font-size:13px;
  transition:all .2s ease;
}

.site-map-links a:hover,
.site-map-links a.active,
.tag-cloud-links a:hover,
.tag-cloud-links a.active{
  color:var(--codex-primary);
  border-color:rgba(36,87,214,.18);
}

.site-map-links a.is-child{
  background:#fff;
  color:#61708f;
}

.tag-cloud-links{
  padding-top:16px;
}

.tag-cloud-links a{
  background:
    linear-gradient(135deg, rgba(36,87,214,.08), rgba(29,191,185,.08));
  color:#31527e;
}

.tag-cloud-links a:hover{
  transform:translateY(-2px);
  background:#fff;
  box-shadow:0 10px 22px rgba(28,58,111,.10);
}

.footer-brand-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.footer-brand-links a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#e4eeff;
  font-size:13px;
}

.footer-top--enhanced{
  grid-template-columns:320px 1fr;
  gap:24px;
}

.footer-top--compact{
  grid-template-columns:300px 1fr;
  gap:28px;
  align-items:start;
}

.footer-brand-card{
  max-width:none;
  min-height:100%;
  padding:28px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(71,141,255,.20), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
}

.footer-brand-card img{
  margin-bottom:18px;
}

.footer-panels--enhanced{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.footer-panels--compact{
  grid-template-columns:minmax(150px,.72fr) minmax(260px,1.28fr) minmax(240px,1fr);
  gap:26px;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(255,255,255,.035);
}

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

.footer-panels--compact .footer-panel h3{
  position:relative;
  margin-bottom:16px;
  padding-bottom:12px;
  font-size:17px;
}

.footer-panels--compact .footer-panel h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:34px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#58a6ff,#39d5c2);
}

.footer-panels--compact .footer-nav-list,
.footer-panels--compact .footer-article-list{
  gap:9px;
}

.footer-culture{
  display:grid;
  gap:14px;
}

.footer-culture p{
  margin:0;
  color:#aebfdd;
  font-size:14px;
  line-height:1.9;
}

.footer-culture a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#e5efff;
  font-size:13px;
  transition:all .2s ease;
}

.footer-culture a:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.footer-map-showcase{
  margin-top:8px;
  padding:30px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 88% 16%, rgba(70,144,255,.16), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
}

.footer-map-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px 28px;
  margin-bottom:22px;
}

.footer-map-kicker{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#cfe1ff;
  font-size:12px;
  letter-spacing:.08em;
}

.footer-map-head h3{
  margin:12px 0 0;
  font-size:28px;
  line-height:1.2;
  color:#fff;
}

.footer-map-head p{
  max-width:420px;
  margin:0;
  color:#8ea4ca;
  font-size:14px;
  line-height:1.85;
}

.footer-sitemap-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px;
}

.footer-sitemap-group{
  min-height:120px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.footer-sitemap-title{
  display:block;
  margin-bottom:14px;
  color:#fff;
  font-size:16px;
  font-weight:800;
  line-height:1.4;
}

.footer-sitemap-title:hover{
  color:#fff;
}

.footer-sitemap-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer-sitemap-links a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#c5d5f3;
  font-size:12px;
  transition:all .2s ease;
}

.footer-sitemap-links a:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.footer-map-strip{
  margin-top:18px;
  padding:22px 24px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(255,255,255,.025);
}

.footer-map-head--compact{
  align-items:flex-start;
  margin-bottom:18px;
}

.footer-map-head--compact h3{
  margin-top:10px;
  font-size:24px;
}

.footer-map-head--compact p{
  max-width:320px;
}

.footer-sitemap-grid--compact{
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
}

.footer-sitemap-grid--compact .footer-sitemap-group{
  padding:16px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  background:rgba(255,255,255,.04);
  min-height:0;
}

.footer-sitemap-grid--compact .footer-sitemap-title{
  margin-bottom:12px;
  font-size:15px;
}

.footer-sitemap-grid--compact .footer-sitemap-links{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}

.footer-sitemap-grid--compact .footer-sitemap-links a{
  justify-content:flex-start;
  min-height:28px;
  padding:0;
  border-radius:0;
  background:transparent;
  color:#9fb3d7;
}

.footer-sitemap-grid--compact .footer-sitemap-links a:hover{
  background:transparent;
  color:#fff;
}

.footer-v2 .footer-brand{
  max-width:none;
}

.footer-v2 .footer-brand p{
  max-width:320px;
}

.footer-nav-list--single{
  grid-template-columns:1fr;
}

.footer-article-list{
  display:grid;
  gap:10px;
}

.footer-article-list li a{
  color:#c3d4f2;
  line-height:1.75;
}

.footer-article-list li a:hover{
  color:#fff;
}

.footer-sitemap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-sitemap a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#d1dff5;
  font-size:12px;
}

.footer-sitemap a.is-child{
  color:#a9bddf;
}

.footer-empty{
  color:#9db0ce;
}

.footer-v2 .footer-panel{
  min-height:auto;
}

.footer-v2 .footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px 20px;
}

@media (max-width: 1180px){
  .footer-top--enhanced{
    grid-template-columns:1fr;
  }

  .footer-top--compact,
  .footer-panels--compact{
    grid-template-columns:1fr;
  }

  .footer-panels--enhanced{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-map-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .article-seo-hero-inner{
    grid-template-columns:1fr;
  }

  .article-summary-body{
    grid-template-columns:1fr;
  }

  .article-summary-metas{
    justify-content:flex-start;
  }

  .recommend-article-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .footer-map-showcase{
    padding:22px;
  }

  .footer-top--compact,
  .footer-panels--compact{
    grid-template-columns:1fr;
  }

  .footer-panels--enhanced{
    grid-template-columns:1fr;
  }

  .footer-map-head h3{
    font-size:24px;
  }

  .article-seo-hero-inner,
  .article-seo-shell .article-detail{
    padding:24px;
  }

  .article-seo-copy h1{
    font-size:30px;
  }

  .article-related-list,
  .article-card-grid,
  .article-relevant--cards ul,
  .article-relevant--list ul{
    grid-template-columns:1fr;
  }

  .ux-product-links,
  .site-map-links,
  .tag-cloud-links,
  .footer-brand-links,
  .footer-sitemap{
    gap:8px;
  }

  .recommend-article-grid{
    grid-template-columns:1fr;
  }

  .ux-home .ux-product-media{
    height:196px;
  }

  .footer-v2 .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
