* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #0b1220;
    background: #f7f9ff url("./img/bg.png") repeat;
    overflow-x: hidden;
}

:root{
    --bg: #f7f9ff;
    --ink: #0b1220;
    --muted: rgba(11,18,32,.68);
    --line: rgba(11,18,32,.12);
    --primary: #0a63ff;
    --primary2: #2f8bff;
    --card: rgba(255,255,255,.85);
    --shadow: 0 20px 60px rgba(10, 26, 78, .12);
    --radius: 18px;
    /*--container: 1160px;*/
    --container: 1800px;
}

a{
    color: inherit;
    text-decoration: none;
}

.container{
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.topbar{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,.78) url("./img/bg_topbar.png") no-repeat center / cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.topbar__inner{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}
.topbar__divider{
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11,18,32,.15), transparent);
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}
.brand__logo{
    height: 30px;
    width: auto;
}

.nav{
    display: flex;
    gap: 18px;
    align-items: center;
}
.nav__link{
    font-size: 14px;
    color: rgba(11,18,32,.74);
    padding: 8px 10px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}
.nav__link:hover{
    background: rgba(10,99,255,.08);
    color: var(--primary);
}
.nav__link.is-active{
    background: rgba(10,99,255,.12);
    color: var(--primary);
    font-weight: 600;
}
.nav__toggle{
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(11,18,32,.12);
    background: rgba(255,255,255,.7);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}
.nav__toggle span{
    display: block;
    height: 2px;
    background: rgba(11,18,32,.72);
    border-radius: 2px;
}
.nav__toggle span + span{ margin-top: 6px; }

.nav__lang{
    position: relative;
    display: inline-block;
    width: 100px;
    height: 40px;
    margin-left: 40px;
    border-left: 1px solid rgba(11,18,32,.10);
    flex-shrink: 0;
}
.nav__langBtn{
    position: absolute;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(11,18,32,.38);
    cursor: pointer;
    padding: 2px 0;
    border-radius: 0;
    line-height: 1;
    transition: color .2s ease;
}
.nav__langBtn[data-lang="zh"]{
    top: 3px;
    left: 30px;
}
.nav__langBtn[data-lang="en"]{
    bottom: 3px;
    right: 30px;
}
.nav__langBtn:hover{
    color: rgba(11,18,32,.72);
}
.nav__langBtn.is-active{
    color: rgba(11,18,32,.88);
    font-weight: 700;
    border-bottom: 1.5px solid rgba(11,18,32,.72);
}
.nav__langSep{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background: transparent;
    font-size: 22px;
    color: rgba(11,18,32,.22);
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.nav__langSep::after{
    content: "/";
}

.homeHero{
    min-height: 100vh;
    position: relative;
    background: #071327;
    opacity: 0.8;
    overflow: hidden;
}
.homeHero__video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.homeHero__bg{
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 360px at 50% 40%, rgba(255,255,255,.08), transparent 60%),
      radial-gradient(1200px 520px at 70% 70%, rgba(10,99,255,.12), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    opacity: .95;
    z-index: 1;
}

.homeHero__inner{
    position: relative;
    /*min-height: calc(100vh - 70px);*/
    min-height: 100vh;
    padding: 26px 0 0px;
    z-index: 2;
    background: #030f23;
    opacity: 0.8;
}
.homeHero__brand{
    color: rgba(255,255,255,.88);
    font-weight: 800;
    letter-spacing: .02em;
}
.homeHero__brandName{
    /*font-size: 22px;*/
    margin-left: 30px;
}
.homeHero__brandName img{
    width: 160px;
}
.homeHero__brandSub{
    margin-top: 2px;
    font-size: 11px;
    color: rgba(255,255,255,.60);
    font-weight: 600;
}
.homeHero__center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: min(800px, calc(100% - 80px));
}
.homeHero__headline{
    font-size: clamp(40px, 6.2vw, 78px);
    line-height: 1.05;
    letter-spacing: .02em;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
}
.homeHero__headline > div{
    display: block;
}
.hl{
    position: relative;
    display: inline-block;
}
.hl--blue{
    color: #1b77ff;
    text-shadow: 0 20px 50px rgba(27, 119, 255, .22);
}
.homeHero__mouse{
    /*display: inline-flex;*/
    display: block;
    margin-top: 100px;
    opacity: .82;
    transition: transform .2s ease, opacity .2s ease;
    text-align: center;
}
.homeHero__mouse:hover{
    opacity: 1;
    transform: translateY(2px);
}
.homeHero__mouse img{
    width: 22px;
    height: auto;
}

.homeHero__scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 0;
}

.homeHero__arrow {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: -4px 0;
    animation: scrollArrowFade 1.6s ease-in-out infinite;
}

.homeHero__arrow:nth-child(1) { animation-delay: 0s;    opacity: 0; }
.homeHero__arrow:nth-child(2) { animation-delay: 0.2s;  opacity: 0; }
.homeHero__arrow:nth-child(3) { animation-delay: 0.4s;  opacity: 0; }

@keyframes scrollArrowFade {
    0%   { opacity: 0;    transform: rotate(45deg) translate(-3px, -3px); }
    50%  { opacity: 0.85; transform: rotate(45deg) translate(3px, 3px);   }
    100% { opacity: 0;    transform: rotate(45deg) translate(6px, 6px);   }
}

.page{
    padding: 40px 40px 60px;
    background: transparent;
}
.page--contact{
    padding-bottom: 180px;
}
.page__inner{
    position: relative;
    min-height: 520px;
}
.pageTitle{
    position: relative;
    padding: 28px 0 18px;
    width: min(900px, 100%);
    margin: 18px auto 0;
}
.pageTitle__bar{
    width: 88px;
    height: 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    /*margin: 0 auto;*/
}
.pageTitle__word{
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    color: rgba(11,18,32,.12);
    font-size: clamp(30px, 5.6vw, 40px);
    /*text-align: center;*/
}

.aboutBlock{
    width: min(900px, 100%);
    margin: 18px auto 0;
}
.aboutBlock h1{
    font-size: 20px;
    letter-spacing: .04em;
}
.aboutBlock p{
    margin-top: 12px;
    color: rgba(11,18,32,.62);
    font-size: 15px;
}
.aboutSlogan{
    width: min(900px, 100%);
    margin: 45px auto 0;
}
.aboutSlogan__title{
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 16px;
}
.aboutSlogan__sub{
    margin-top: 10px;
    color: rgba(11,18,32,.52);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sideSlogan{
    position: absolute;
    left: 0;
    top: 68px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.sideSlogan--right{
    left: auto;
    right: 0;
}
.sideSlogan__bar{
    width: 12px;
    height: 150px;
    /*border-radius: 10px;*/
    /*background: linear-gradient(180deg, var(--primary), rgba(10,99,255,.12));*/
    background-color: #0862ee;
}
.sideSlogan__text{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    letter-spacing: .2em;
    color: rgb(0 4 12 / 65%);
    text-transform: uppercase;
    font-weight: 800;
}

/* ---------------- Poster-like product pages (产品图 1/2/3) ---------------- */
.poster{
    position: relative;
    min-height: 100vh;
    padding: 48px 0 60px;
    overflow: hidden;
}
.poster__dots{
    position: absolute;
    width: 280px;
    height: auto;
    opacity: .9;
    pointer-events: none;
}
.poster__dots--tr{ right: -30px; top: -10px; z-index:2;}
.poster__dots--bl{ left: -40px; bottom: -30px; transform: rotate(180deg); opacity: .8; z-index:2; }

.poster__dots--bl1{ left: 32px; bottom: -56px; transform: rotate(0deg); opacity: .8; z-index:2; }
.poster__dots--bl1-right{ right: 32px; bottom: -56px; transform: rotate(0deg); opacity: .8; z-index:2; }
.poster__dots--bl1-center{ left: 50%; right: 50%; top:0; transform: translate(-50%, -50%) rotate(180deg); opacity: .8; z-index:2; }
.poster__inner{
    position: relative;
    /*min-height: 520px;*/
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordmark{
    text-align: center;
    position: relative;
}
.wordmark__title{
    font-weight: 1000;
    letter-spacing: .01em;
    font-size: clamp(54px, 7.2vw, 96px);
    line-height: 1;
    color: #ffffff;
    text-shadow:
        0 2px 0 rgba(10,99,255,.9),
        0 14px 0 rgba(10,99,255,.26),
        0 30px 80px rgba(10,26,78,.22);
    -webkit-text-stroke: 2px rgba(10,99,255,.9);
}
.wordmark__title::after{
    content: attr(data-shadow);
    position: absolute;
    left: 12px;
    top: 12px;
    color: rgba(0, 166, 255, .38);
    z-index: -1;
    filter: blur(.0px);
    text-shadow: 0 40px 40px rgba(10,26,78,.18);
    -webkit-text-stroke: 0;
}
.wordmark__sub{
    margin-top: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    color: rgba(11,18,32,.46);
    text-transform: uppercase;
}

.slab{
    position: absolute;
    padding: 20px 18px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0,34,92,.96), rgba(0,34,92,.86));
    color: white;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 26px 80px rgba(10,26,78,.14);
}
.slab--light{
    background: linear-gradient(180deg, rgba(8,98,238,.92), rgba(8,98,238,.84));
}
.slab::before{
    content:"";
    position:absolute;
    inset: 33px -60px -33px 80px;
    background: rgba(11,18,32,.08);
    transform: skewX(-14deg);
    z-index: -1;
}
.slab--skew{
    transform: skewX(-14deg);
}
.slab--skew > *{
    transform: skewX(14deg);
    display: block;
}
.slab1{
    position: absolute;
    padding: 20px 18px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0,34,92,.96), rgba(0,34,92,.86));
    color: white;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 26px 80px rgba(10,26,78,.14);
    /*text-align: center;*/
}
.slab1::before{
    content:"";
    position:absolute;
    inset: 33px -60px -33px 80px;
    background: rgba(11,18,32,.08);
    transform: skewX(0);
    z-index: -1;
}

.slab-left{
    position: absolute;
    padding: 16px 18px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0,34,92,.96), rgba(0,34,92,.86));
    color: white;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 26px 80px rgba(10,26,78,.14);
}
.slab-left::before{
    content:"";
    position:absolute;
    inset: 33px -30px -33px 28px;
    background: rgba(11,18,32,.08);
    transform: skewX(7deg);
    z-index: -1;
}

.slab--skew-left{
    transform: skewX(20deg);
}
.slab--skew-left > *{
    transform: skewX(-25deg);
    display: block;
}

.slab__tiny{
    font-size: 11px;
    letter-spacing: .16em;
    opacity: .9;
}
.slab__big{
    font-size: 15px;
    line-height: 1.2;
}
.slab__big1{
    font-size: 20px;
    line-height: 1.8;
}
.slab__lines{
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: .02em;
}
.slab__bar{
    position: absolute;
    right: 18px;
    top: 12px;
    width: 86px;
    height: 6px;
    background: rgba(255,255,255,.92);
    opacity: .9;
}

/* Poster 1 */
.c_hide{
    display: none;
}
.poster-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.poster--p1 .slab--p1-left{
    left: 140px;
    top: 190px;
    /*width: min(520px, 56vw);*/
    width: 300px;
}
.poster--p1 .slab--p1-right{
    right: 140px;
    bottom: 150px;
    width: min(460px, 62vw);
    /*width: 400px;*/
}

/* Poster 2 */
.poster--p2 .slab--tag{
    width: 160px;
    text-align: center;
    padding: 14px 12px;
}
.poster--p2 .slab--game{ top: 60px; left: 25%; transform: translateX(-50%) skewX(-14deg); }
.poster--p2 .slab--design{ left: 42px; bottom: 170px; transform: skewX(-14deg); }
.poster--p2 .slab--anim{ right: 42px; bottom: 120px; transform: skewX(-14deg); }
.poster--p2 .slab--tag .slab__big{ font-size: 20px; }

/* Poster 3 */
.poster--p3 .slab--tl-1{ left: 80px; top: 60px; width: min(400px, 62vw); }
.poster--p3 .slab--tl-2{ left: 30px; top: 120px; width: min(250px, 48vw); }
.poster--p3 .slab--tr{
    right: 60px;
    top: 60px;
    width: min(260px, 42vw);
    text-align: center;
}
.poster--p3 .slab--tr .slab__tiny{ opacity: .95; }
.poster--p3 .slab--bl{
    left: 30px;
    bottom: 20px;
    width: min(333px, 56vw);
}
.poster--p3 .slab--br-1{
    right: 350px;
    bottom: 20px;
    width: min(196px, 52vw);
}
.poster--p3 .slab--br-2{
    right: 80px;
    bottom: 20px;
    width: min(260px, 52vw);
    background: linear-gradient(180deg, rgba(8,98,238,.92), rgba(8,98,238,.84));
}

@media (max-width: 980px){
    .poster{ padding: 34px 0 52px; }
    .poster__dots{ width: 220px; }
    .slab{ padding: 14px 14px; }
    .slab__lines{ font-size: 14px; }
    .poster--p1 .slab--p1-left{ top: 22px; width: min(520px, 88vw); }
    .poster--p1 .slab--p1-right{ bottom: 26px; width: min(560px, 90vw); }
    .poster--p2 .slab--design{ left: 14px; bottom: 150px; }
    .poster--p2 .slab--anim{ right: 14px; bottom: 98px; }
    .poster--p3 .slab--tr{ width: min(320px, 86vw); }
}

.productStage{
    position: relative;
    margin-top: 15px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    /*gap: 22px;*/
    align-items: start;
    padding: 18px 0 0;
}
.productStage__main{
    position: relative;
    padding-left: 50px;
    width: min(1150px, 100%);
}
.productStage__media{
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    /*height: 400px;*/
    height: 650px;
}
.productStage__img{
    width: 100%;
    /*height: 100%;*/
    height: 650px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: opacity .22s ease, transform .22s ease;
}
.productStage__img.is-fade{
    opacity: 0;
    transform: scale(.97) translateX(-10px);
}
.productStage__aside{
    transition: opacity .22s ease, transform .22s ease;
}
.productStage__aside.is-fade{
    opacity: 0;
    transform: translateY(10px);
}
.productStage__pager{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 60px;
    padding-bottom: 10px;
}
.numBtn{
    width: 46px;
    height: 46px;
    border-radius: 0;
    border: 1px solid rgba(11,18,32,.10);
    background: white url("./img/bg_num_n.png") no-repeat center/cover;
    font-weight: 900;
    font-size: 18px;
    color: rgba(11,18,32,.32);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.numBtn:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(10,26,78,.10);
}
.numBtn.is-active{
    background: #0a63ff url("./img/bg_num_p.png") no-repeat center/cover;
    color: white;
    border-color: rgba(10,99,255,.35);
}

.productStage__aside{
    position: relative;
    padding-top: 12px;
}
.productInfo{
    position: relative;
    padding: 14px 12px 12px;
}
.productInfo__cap{
    width: 80px;
    height: 8px;
    /*border-radius: 6px;*/
    /*background: linear-gradient(90deg, var(--primary), var(--primary2));*/
    background-color: #0862ee;
    margin-left: auto;
}
.productInfo__ghost{
    margin-top: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(11,18,32,.12);
    font-size: 31px;
    text-align: right;
    text-transform: uppercase;
    position: absolute;
    width: 500px;
    right: 0;
}
.productInfo__title{
    margin-top: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 18px;
    text-align: right;
    text-transform: uppercase;
    color: rgba(11,18,32,.62);
}
.productInfo__desc{
    margin-top: 100px;
    font-size: 14px;
    color: #3d424d;
    line-height: 1.9;
    text-align: left;
}
.productInfo__cta{
    margin-top: 18px;
    display: flex;
    /*justify-content: flex-end;*/
    justify-content: flex-start;
}
.pillBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 2px;
    background: #00225c;
    border: 1px solid rgba(11,18,32,.10);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}
.pillBtn:hover{
    border-color: rgba(10,99,255,.26);
    color: var(--primary);
    background: rgba(10,99,255,.08);
}
.is-hidden{ display: none !important; }

.jobSpec{
    margin-top: 88px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.jobSpec__box{
    /*border: 1px solid rgba(11,18,32,.10);*/
    /*background: rgba(255,255,255,.72);*/
}
.jobSpec__head{
    /*background: rgba(11,18,32,.06);*/
    background-color: #00225c;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    width: 180px;
}
.jobSpec__list{
    padding: 10px 18px 12px 22px;
    color: rgba(11,18,32,.62);
    font-size: 14px;
    line-height: 1.85;
}
.jobSpec__foot{
    margin-top: 10px;
    /*border: 1px solid rgba(11,18,32,.10);*/
    /*background: rgba(255,255,255,.72);*/
    padding-bottom: 10px;
}
.jobSpec__text{
    padding: 8px 10px 0;
    color: rgba(11,18,32,.62);
    font-size: 12px;
}

.contactBoard{
    width: min(900px, 100%);
    /*margin: 18px auto 0;*/
    margin: 0 auto;
}
.contactBoard__row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.contactBoard__row--full{
    grid-template-columns: 1fr;
}
.contactTile{
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.72);
    text-align: center;
}
.contactTile--header{
    background: rgba(255,255,255,.72);
}
.contactTile__title{
    padding: 10px 0;
    background: #cfd5df;
    color: #00225c;;
    font-weight: 900;
    letter-spacing: .04em;
}
.contactTile__value{
    padding: 18px 12px;
    font-weight: 900;
    color: #242933;
}
.contactTile__value a{
    color: rgba(11,18,32,.62);
}

.newsBlock{
    width: 100%;
    margin-top: 46px;
    padding-top: 14px;
    border-top: 1px solid rgba(11,18,32,.08);
}
.newsBlock__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.newsBlock__title{
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 16px;
}
.newsBlock__more{
    font-size: 12px;
    color: rgba(11,18,32,.52);
}
.newsBlock__more:hover{
    color: var(--primary);
}
.newsGrid{
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.newsCard{
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.72);
    padding: 14px;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.newsCard:hover{
    transform: translateY(-2px);
    border-color: rgba(10,99,255,.22);
    box-shadow: 0 18px 46px rgba(10,26,78,.10);
}
.newsCard__date{
    font-size: 12px;
    font-weight: 900;
    color: rgba(11,18,32,.42);
}
.newsCard__title{
    margin-top: 8px;
    font-weight: 900;
    letter-spacing: .04em;
}
.newsCard__desc{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.8;
    color: rgba(11,18,32,.56);
}

.newsList{
    width: min(860px, 100%);
    margin: 18px auto 0;
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.72);
}
.newsRow{
    display: grid;
    grid-template-columns: 140px 1fr 80px;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid rgba(11,18,32,.08);
    align-items: center;
}
.newsRow:first-child{ border-top: 0; }
.newsRow:hover{
    background: rgba(10,99,255,.06);
}
.newsRow__date{
    font-size: 12px;
    font-weight: 900;
    color: rgba(11,18,32,.48);
}
.newsRow__title{
    font-weight: 900;
    letter-spacing: .04em;
}
.newsRow__meta{
    font-size: 12px;
    color: rgba(11,18,32,.48);
    text-align: right;
    font-weight: 800;
}

.article{
    width: min(860px, 100%);
    margin: 18px auto 0;
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.72);
    padding: 18px;
}
.article__meta{
    font-size: 12px;
    font-weight: 900;
    color: rgba(11,18,32,.46);
}
.article__title{
    margin-top: 8px;
    font-size: 22px;
    letter-spacing: .02em;
}
.article__content{
    margin-top: 12px;
    color: rgba(11,18,32,.62);
    font-size: 13px;
    line-height: 1.95;
}
.article__content p + p{
    margin-top: 10px;
}
.article__actions{
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.simpleCard{
    width: min(1000px, 100%);
    margin: 18px auto 0;
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.72);
    padding: 18px;
    border-radius: 12px;
}
.simpleCard h1{
    font-size: 26px;
    text-align: center;
    color: rgb(3 8 18 / 80%);
}
.simpleCard .p-title{
    font-size:18px;
    font-weight: 500;
    line-height: 40px;
    color: rgb(3 8 18 / 85%);
}
.simpleCard p{
    margin-top: 5px;
    color: rgb(3 8 18 / 62%);
    font-size: 13px;
}

.hero{
    position: relative;
    padding: 64px 0 56px;
}
.hero::before{
    content:"";
    position:absolute;
    inset: -80px 0 auto 0;
    height: 420px;
    background: radial-gradient(1000px 380px at 18% 20%, rgba(10,99,255,.18), transparent 60%),
                radial-gradient(800px 320px at 82% 40%, rgba(47,139,255,.18), transparent 60%);
    pointer-events:none;
}
.hero__grid{
    position: relative;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 28px;
    align-items: center;
}
.hero__kicker{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .22em;
    color: rgba(11,18,32,.62);
    text-transform: uppercase;
}
.dot{
    width: 10px; height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary), var(--primary2));
    box-shadow: 0 8px 24px rgba(10,99,255,.25);
}
.hero__title{
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.06;
    margin-top: 12px;
    letter-spacing: .02em;
}
.hero__subtitle{
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    max-width: 36em;
}
.hero__cta{
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(11,18,32,.12);
    background: rgba(255,255,255,.78);
    color: rgba(11,18,32,.82);
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(10,26,78,.14);
    border-color: rgba(10,99,255,.22);
}
.btn--primary{
    background: linear-gradient(180deg, var(--primary), #0650d9);
    border-color: rgba(10,99,255,.22);
    color: white;
}
.btn--ghost{
    background: rgba(10,99,255,.08);
    border-color: rgba(10,99,255,.18);
    color: var(--primary);
}

.hero__meta{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}
.stat{
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(11,18,32,.08);
}
.stat__num{
    position: relative;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.stat__numBg{
    width: 22px; height: 22px;
    border-radius: 8px;
    background: url("./img/bg_num_n.png") no-repeat center/cover;
    border: 1px solid rgba(11,18,32,.08);
}
.stat__label{
    margin-top: 4px;
    font-size: 13px;
    color: rgba(11,18,32,.62);
}

.hero__visual{
    position: relative;
    min-height: 380px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.6));
    border: 1px solid rgba(11,18,32,.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero__tx{
    position: absolute;
    left: -60px;
    top: -40px;
    width: 820px;
    max-width: none;
    opacity: .92;
    filter: drop-shadow(0 30px 60px rgba(10,26,78,.18));
    transform: rotate(-2deg);
}
.hero__mask{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    opacity: .85;
}

.scrollHint{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(11,18,32,.08);
    color: rgba(11,18,32,.62);
    font-size: 12px;
}
.scrollHint__mouse{
    width: 18px;
    height: 26px;
    border: 2px solid rgba(11,18,32,.36);
    border-radius: 999px;
    position: relative;
}
.scrollHint__mouse::after{
    content:"";
    position:absolute;
    left:50%;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(11,18,32,.48);
    transform: translateX(-50%);
    animation: wheel 1.4s ease-in-out infinite;
}
@keyframes wheel{
    0%{ transform: translate(-50%, 0); opacity:.2; }
    30%{ opacity:1; }
    80%{ transform: translate(-50%, 10px); opacity:.2; }
    100%{ opacity:.0; }
}

.section{
    padding: 64px 0;
}
.section--products{
    padding-top: 82px;
}
.sectionHead{
    text-align: center;
    margin-bottom: 26px;
}
.sectionHead--left{
    text-align: left;
}
.sectionHead__title{
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.sectionHead__line{
    width: 34px;
    height: 34px;
    opacity: .6;
}
.sectionHead h2{
    font-size: 28px;
    letter-spacing: .04em;
}
.sectionHead__desc{
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.cards{
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.card{
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(11,18,32,.08);
    box-shadow: 0 18px 42px rgba(10,26,78,.08);
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(10,26,78,.14);
    border-color: rgba(10,99,255,.22);
}
.card__media img{
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}
.card__body{
    padding: 14px 14px 16px;
}
.card__title{
    font-weight: 800;
    letter-spacing: .02em;
}
.card__desc{
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    min-height: 2.6em;
}
.card__more{
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

.twoCol{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}
.twoCol__main{
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(11,18,32,.08);
    box-shadow: 0 18px 46px rgba(10,26,78,.08);
}
.twoCol__main h2{
    font-size: 26px;
}
.twoCol__main p{
    margin-top: 10px;
    color: rgba(11,18,32,.72);
}
.panel{
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(11,18,32,.08);
    box-shadow: 0 18px 46px rgba(10,26,78,.06);
}
.panel__title{
    font-weight: 800;
}
.panel__divider{
    height: 1px;
    background: rgba(11,18,32,.08);
    margin: 14px 0;
}
.panel__hint{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: rgba(11,18,32,.62);
}
.panel__mark{
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: .9;
}
.tags{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.tag{
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(10,99,255,.18);
    background: rgba(10,99,255,.08);
    color: var(--primary);
    font-weight: 700;
}

.jobs{
    margin: 18px 0 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.job{
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(11,18,32,.08);
}
.job__title{
    font-weight: 800;
}
.job__meta{
    margin-top: 6px;
    color: rgba(11,18,32,.62);
    font-size: 12px;
}

.contactGrid{
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.contactCard{
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(11,18,32,.08);
}
.contactCard__label{
    color: rgba(11,18,32,.52);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contactCard__value{
    margin-top: 8px;
    font-weight: 800;
}
.contactCard__value a{
    color: var(--primary);
}

.footer{
    padding: 28px 0 22px;
    border-top: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.6);
    position: fixed;
    bottom: 0;
    width: 100%;
}
.footer--dark{
    background: #071327;
    border-top-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.88);
}
.footer__inner{
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.footer__inner--center{
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer__brandName{
    font-weight: 900;
    font-size: 18px;
}
.footer__brandSub{
    margin-top: 2px;
    font-size: 11px;
    color: rgba(255,255,255,.62);
    font-weight: 700;
}
.footer__link{
    font-size: 12px;
    color: #0862ee;
    text-decoration: none;
}
.footer__link:hover{
    color: white;
}
.footer__brand img{
    height: 30px;
    width: auto;
    opacity: .92;
}
.footer__copy{
    color: rgba(11,18,32,.72);
    text-align: right;
}
.footer__small{
    margin-top: 4px;
    font-size: 12px;
    color: #acb3bf;
}

.toTop{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(11,18,32,.10);
    box-shadow: 0 18px 48px rgba(10,26,78,.14);
    color: rgba(11,18,32,.74);
    transition: transform .18s ease, opacity .18s ease;
    opacity: 0;
    pointer-events: none;
}
.toTop.is-visible{
    opacity: 1;
    pointer-events: auto;
}
.toTop:hover{ transform: translateY(-2px); }

.reveal{
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
    opacity: 1;
    transform: translateY(0);
}
/* ═══════════════════════════════════════════════════
   2K / QHD  (1921px – 2560px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1921px) and (max-width: 2560px) {
    :root {
        --container: 1800px;
    }

    /* ── 顶栏 ── */
    .topbar__inner {
        height: 80px;
    }
    .brand__logo {
        height: 36px;
    }
    .homeHero__brandName img {
        width: 190px;
    }
    .nav__link {
        font-size: 15px;
        padding: 9px 14px;
    }
    .nav__lang {
        margin-left: 52px;
    }

    /* ── 首页英雄区 ── */
    .homeHero__headline {
        font-size: clamp(56px, 5.8vw, 88px);
    }
    .homeHero__center {
        width: min(980px, calc(100% - 80px));
    }
    .homeHero__mouse {
        margin-top: 120px;
    }
    .homeHero__scroll-hint {
        margin-top: 80px;
    }

    /* ── 页面通用 ── */
    .page {
        padding: 56px 56px 80px;
    }
    .pageTitle {
        padding: 52px 0 22px;
        width: min(1200px, 100%);
    }
    .pageTitle__word {
        font-size: clamp(36px, 4.2vw, 58px);
    }

    /* ── 关于页 ── */
    .aboutBlock {
        width: min(1200px, 100%);
    }
    .aboutBlock h1 {
        font-size: 24px;
    }
    .aboutBlock p {
        font-size: 17px;
        line-height: 2;
    }
    .aboutSlogan {
        width: min(1200px, 100%);
        margin-top: 60px;
    }
    .aboutSlogan__title {
        font-size: 18px;
    }
    .aboutSlogan__sub {
        font-size: 16px;
    }

    /* ── 产品页 ── */
    .productStage {
        grid-template-columns: minmax(0, 1fr) 500px;
        margin-top: 20px;
    }
    .productStage__main {
        width: min(1200px, 100%);
        padding-left: 60px;
    }
    .productStage__media {
        height: 660px;
    }
    .productStage__img {
        height: 660px;
    }
    .productStage__pager {
        margin-top: 80px;
    }
    .productInfo__ghost {
        font-size: 36px;
        width: 580px;
    }
    .productInfo__title {
        font-size: 20px;
    }
    .productInfo__desc {
        font-size: 16px;
        margin-top: 120px;
        line-height: 2;
    }
    .numBtn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .pillBtn {
        height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }
    .jobSpec {
        margin-top: 100px;
    }
    .jobSpec__head {
        font-size: 14px;
        width: 200px;
        padding: 10px 12px;
    }
    .jobSpec__list {
        font-size: 15px;
        line-height: 2;
    }
    .jobSpec__text {
        font-size: 14px;
    }

    /* ── 联系页 ── */
    .contactBoard {
        width: min(1200px, 100%);
    }
    .contactBoard__row {
        margin-top: 26px;
        gap: 20px;
    }
    .contactTile__title {
        padding: 16px 0;
        font-size: 20px;
    }
    .contactTile__value {
        font-size: 18px;
        padding: 24px 14px;
    }

    /* ── 侧边装饰 ── */
    .sideSlogan {
        top: 90px;
    }
    .sideSlogan__bar {
        height: 180px;
        width: 14px;
    }
    .sideSlogan__text {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════
   4K / UHD  (≥ 2561px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 2561px) {
    :root {
        --container: 2200px;
    }

    /* ── 顶栏 ── */
    .topbar__inner {
        height: 90px;
    }
    .brand__logo {
        height: 42px;
    }
    .homeHero__brandName img {
        width: 220px;
    }
    .nav__link {
        font-size: 17px;
        padding: 10px 16px;
    }
    .nav__lang {
        margin-left: 60px;
        width: 120px;
    }

    /* ── 页面通用 ── */
    .page {
        padding: 72px 72px 100px;
    }
    .pageTitle {
        padding: 72px 0 26px;
        width: min(1500px, 100%);
    }
    .pageTitle__word {
        font-size: clamp(42px, 3.8vw, 72px);
    }

    /* ── 关于页 ── */
    .contactBoard {
        width: min(1400px, 100%);
    }
    .contactTile__title {
        padding: 16px 0;
        font-size: 24px;
    }
    .contactTile__value {
        font-weight: 700;
        font-size: 22px;
        padding: 26px 16px;
    }
    .contactBoard__row {
        margin-top: 36px;
        gap: 22px;
    }
    .aboutBlock {
        width: min(1400px, 100%);
    }
    .aboutBlock h1 {
        font-size: 28px;
    }
    .aboutBlock p {
        font-size: 19px;
        line-height: 2.1;
    }
    .aboutSlogan {
        width: min(1400px, 100%);
        margin-top: 80px;
    }
    .aboutSlogan__title {
        font-size: 22px;
    }
    .aboutSlogan__sub {
        font-size: 19px;
    }

    /* ── 产品页 ── */
    .productStage {
        grid-template-columns: minmax(0, 1fr) 600px;
        margin-top: 30px;
    }
    .productStage__main {
        width: min(1500px, 100%);
        padding-left: 80px;
    }
    .productStage__media {
        height: 900px;
    }
    .productStage__img {
        height: 900px;
    }
    .productInfo__ghost {
        font-size: 46px;
        width: 700px;
    }
    .productInfo__title {
        font-size: 24px;
    }
    .productInfo__desc {
        font-size: 19px;
        margin-top: 140px;
        line-height: 2.1;
    }
    .numBtn {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }
    .pillBtn {
        height: 48px;
        padding: 0 24px;
        font-size: 16px;
    }
    .jobSpec {
        margin-top: 120px;
    }
    .jobSpec__head {
        font-size: 16px;
        width: 240px;
        padding: 12px 14px;
    }
    .jobSpec__list {
        font-size: 17px;
        line-height: 2.1;
    }
    .jobSpec__text {
        font-size: 16px;
    }

    /* ── 侧边装饰 ── */
    .sideSlogan {
        top: 110px;
    }
    .sideSlogan__bar {
        height: 220px;
        width: 16px;
    }
    .sideSlogan__text {
        font-size: 14px;
        letter-spacing: .24em;
    }
}
/* ═══════════════════════════════════════════════════
   1K / FHD  (1601px – 1920px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1601px) and (max-width: 1920px) {
    :root {
        --container: 1480px;
    }

    /* ── 顶栏 ── */
    .topbar__inner {
        height: 74px;
    }
    .brand__logo {
        height: 32px;
    }
    .homeHero__brandName img {
        width: 170px;
    }
    .nav__link {
        font-size: 14px;
        padding: 8px 12px;
    }
    .nav__lang {
        margin-left: 44px;
    }

    /* ── 首页英雄区 ── */
    .homeHero__headline {
        font-size: clamp(48px, 5.4vw, 80px);
    }
    .homeHero__center {
        width: min(880px, calc(100% - 80px));
    }
    .homeHero__mouse {
        margin-top: 90px;
    }
    .homeHero__scroll-hint {
        margin-top: 55px;
    }

    /* ── 页面通用 ── */
    .page {
        padding: 44px 44px 70px;
    }
    .pageTitle {
        padding: 40px 0 18px;
        width: min(1000px, 100%);
    }
    .pageTitle__word {
        font-size: clamp(28px, 4.8vw, 45px);
    }

    /* ── 关于页 ── */
    .aboutBlock {
        width: min(1000px, 100%);
    }
    .aboutBlock h1 {
        font-size: 22px;
    }
    .aboutBlock p {
        font-size: 16px;
        line-height: 1.95;
    }
    .aboutSlogan {
        width: min(1000px, 100%);
        margin-top: 52px;
    }
    .aboutSlogan__title {
        font-size: 17px;
    }
    .aboutSlogan__sub {
        font-size: 14px;
    }

    /* ── 侧边装饰 ── */
    .sideSlogan {
        top: 20px;
    }
    .sideSlogan__bar {
        height: 138px;
        width: 13px;
    }

    /* ── 产品页 ── */
    .productStage {
        grid-template-columns: minmax(0, 1fr) 400px;
        margin-top: -10px;
    }
    .productStage__main {
        width: min(1000px, 100%);
        padding-left: 52px;
    }
    .productStage__media {
        height: 500px;
    }
    .productStage__img {
        height: 500px;
    }
    .productStage__aside {
        padding-top: 0;
    }
    .productStage__pager {
        margin-top: 50px;
    }
    .productInfo {
        padding: 0 12px 12px;
    }
    .productInfo__ghost {
        margin-top: 3px;
        font-size: 28px;
        width: 540px;
    }
    .productInfo__title {
        font-size: 16px;
    }
    .productInfo__desc {
        font-size: 13px;
        margin-top: 80px;
        line-height: 1.9;
    }
    .numBtn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .pillBtn {
        height: 36px;
        font-size: 13px;
    }
    .jobSpec {
        margin-top: 70px;
    }
    .jobSpec__head {
        font-size: 13px;
        width: 180px;
        padding: 5px 10px;
    }
    .jobSpec__list {
        font-size: 12px;
        line-height: 1.7;
        padding: 10px 0 12px 22px;
    }
    .jobSpec__text {
        font-size: 13px;
    }

    /* ── 联系页 ── */
    .contactBoard {
        width: min(1000px, 100%);
    }
    .contactBoard__row {
        margin-top: 15px;
        gap: 16px;
    }
    .contactTile__title {
        padding: 10px 0;
        font-size: 18px;
    }
    .contactTile__value {
        font-size: 16px;
        padding: 16px 12px;
    }
}

@media (max-width: 1600px){
    :root{
        --container: 1400px;
    }

    /* ── 首页 (index.html) ── */
    .homeHero__mouse{ margin-top: 60px; }
    .homeHero__scroll-hint{ margin-top: 30px; }

    /* ── 通用页面标题 ── */
    .pageTitle{ padding: 18px 0 12px; }
    .pageTitle__word{ font-size: clamp(26px, 4vw, 42px); }

    /* ── 关于页 (about.html) ── */
    .aboutSlogan{ margin-top: 28px; }

    /* ── 联系页 (contact.html) ── */
    .page--contact{ padding-bottom: 210px; }

    /* ── 产品页 (products.html) ── */
    .productStage__media{ height: 480px; }
    .productStage__img{ height: 480px; }
    .productStage__pager{ margin-top: 28px; }
    .productInfo__ghost{ width: 100%; font-size: 26px; }
    .productInfo__desc{ margin-top: 60px; }
    .productStage__main{ width: min(900px, 100%); }
}

@media (max-width: 1360px){
    :root{
        --container: 1100px;
    }

    /* ── 通用页面 ── */
    .page{
        padding: 24px 24px 60px;
    }
    .page--contact{ padding-bottom: 210px; }
    .pageTitle{ padding: 10px 0 8px; }
    .pageTitle__word{ font-size: clamp(22px, 3.6vw, 36px); }

    /* ── 首页 (index.html) ── */
    .homeHero__headline{ font-size: clamp(34px, 5.6vw, 60px); }
    .homeHero__brandName{ margin-left: 16px; }
    .homeHero__brandName img{ width: 130px; }
    .homeHero__mouse{ margin-top: 36px; }
    .homeHero__scroll-hint{ margin-top: 20px; }

    /* ── 关于页 (about.html) ── */
    .aboutBlock{ width: 100%; margin-top: 12px; }
    .aboutSlogan{ width: 100%; margin-top: 20px; }
    .aboutBlock h1{ font-size: 18px; }
    .aboutBlock p{ font-size: 14px; }
    .sideSlogan--right{ display: none; }

    /* ── 联系页 (contact.html) ── */
    .contactBoard{ width: 100%; }
    .contactTile__value{ padding: 12px 10px; font-size: 14px; }

    /* ── 产品页 (products.html) ── */
    .productStage{
        grid-template-columns: minmax(0, 1fr) 340px;
        margin-top: 8px;
    }
    .productStage__main{
        width: 100%;
        padding-left: 32px;
    }
    .productStage__media{ height: 360px; }
    .productStage__img{ height: 360px; }
    .productStage__pager{ margin-top: 16px; }
    .productStage__aside{ padding-top: 6px; }
    .productInfo__ghost{ width: 100%; font-size: 22px; }
    .productInfo__desc{ margin-top: 40px; font-size: 13px; }
    .productInfo__cap{ width: 60px; height: 6px; }
}

@media (max-width: 980px){
    .hero__grid{ grid-template-columns: 1fr; }
    .hero__visual{ min-height: 300px; }
    .cards{ grid-template-columns: 1fr; }
    .twoCol{ grid-template-columns: 1fr; }
    .jobs{ grid-template-columns: 1fr; }
    .contactGrid{ grid-template-columns: 1fr; }
    .footer__inner{ flex-direction: column; align-items: flex-start; }
    .footer__copy{ text-align: left; }
    .nav{ display: none; }
    .nav__toggle{ display: inline-flex; flex-direction: column; justify-content: center; }
    .topbar.is-open .nav{
        display: flex;
        position: absolute;
        left: 24px;
        right: 24px;
        top: 76px;
        padding: 12px;
        border-radius: 16px;
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(11,18,32,.10);
        box-shadow: 0 18px 60px rgba(10,26,78,.14);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .nav__lang{
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        justify-content: flex-end;
        padding-top: 8px;
    }
    .productStage{
        grid-template-columns: 1fr;
    }
    .productStage__main{
        padding-left: 0;
    }
    .productStage__media{
        height: 240px;
    }
    .sideSlogan{ display: none; }
    .newsGrid{ grid-template-columns: 1fr; }
    .newsRow{ grid-template-columns: 110px 1fr; }
    .newsRow__meta{ display:none; }
    .topbar{ position: sticky; }
    .productStage__img{height: 100%;}
    .footer__brand{margin: 0 auto;}
    .footer__link{margin: 0 auto;}
}
