@font-face{
    font-family: "SourceHanSansSC";
    src: url("./SourceHanSansSC-ExtraLight-2.otf") format("opentype");
    font-style: normal;
    font-weight: 200;
    font-display: swap;
}
@font-face{
    font-family: "SourceHanSansSC";
    src: url("./SourceHanSansSC-Bold-2.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root{
    --bg: #070a10;
    --surface: rgba(255,255,255,.06);
    --surface-2: rgba(255,255,255,.09);
    --line: rgba(255,255,255,.12);
    --text: rgba(255,255,255);
    --muted: rgba(255,255,255);
    --brand: #21c57a;
    --brand-2: #7cf7c1;
    --shadow: 0 18px 60px rgba(0,0,0,.48);
    --radius-lg: 18px;
    --radius-md: 14px;
    --max: 1440px;
    --nav-h: 80px;
    --ui-green: #00B75E;
    --font-family-base: "SourceHanSansSC", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    --font-weight-base: 200;
    --font-weight-bold: 700;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ font-synthesis: none; }
body{
    margin:0;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-base);
    color: var(--text);
    background: #000;
}

a{ color:inherit; text-decoration:none; }
button{ font:inherit; }
img{ display:block; max-width:100%; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.app{
    min-height:100%;
    padding-top: 0;
}

.nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58));
    backdrop-filter: blur(10px);
}
.nav__inner{
    width:min(var(--max), calc(100% - 60px));
    margin: 0 auto;
    height: var(--nav-h);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: box-shadow .25s ease;
}
.nav--scrolled .nav__inner{
    box-shadow: 0 10px 40px rgba(0,0,0,.36);
}
.brand{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width: 220px;
}
.brand__logo{
    height: 40px;
    width: 118px;
    object-fit: contain;
}
.brand__name{
    display:none;
}
.menu{
    display:flex;
    align-items:center;
    gap: 42px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}
.menu__link{
    padding: 8px 2px;
    border-radius: 0;
    color: rgba(255,255,255);
    font-size: 15px;
    font-weight: var(--font-weight-base);
    letter-spacing: .02em;
    transition: color .2s ease, opacity .2s ease;
    position: relative;
}
.menu__link:hover{
    background: transparent;
    color: #fff;
}
.menu__link--active{
    color: var(--ui-green);
}
.menu__link--active::after{
    content:"";
    position:absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 3px;
    border-radius: 999px;
    background: var(--ui-green);
    box-shadow: 0 0 0 1px rgba(30,211,122,.18);
}

.nav__actions{
    display:flex;
    align-items:center;
    gap: 0;
    min-width: 220px;
    justify-content:flex-end;
}
.btn{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    cursor:pointer;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-1px);
}
.btn--primary{
    border-color: rgba(33,197,122,.55);
    background: linear-gradient(180deg, rgba(33,197,122,.26), rgba(33,197,122,.14));
}
.btn--primary:hover{
    border-color: rgba(124,247,193,.7);
    background: linear-gradient(180deg, rgba(124,247,193,.30), rgba(33,197,122,.14));
}

.nav__cta{
    height: 34px;
    padding: 0 14px 0 16px;
    border-radius: 999px;
    border: 0;
    background: var(--ui-green);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    cursor:pointer;
    transition: filter .2s ease, transform .15s ease;
    color: #fff;
    font-weight: var(--font-weight-bold);
    letter-spacing: .02em;
    font-size: 13px;
    line-height: 34px;
}
.nav__cta:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.nav__cta svg{
    width: 18px;
    height: 18px;
    padding: 4px;
    border-radius: 999px;
    background: #fff;
    color: #00B75E;
    flex: 0 0 auto;
}

.banner{
    position: relative;
    margin-top: var(--nav-h);
    padding: 0;
    --banner-cards-bottom: 86px;
}
.banner .container{
    width: 100%;
    margin: 0;
}
.banner__frame{
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
}
.banner__slide{
    width: 100%;
    background: #000;
    position: relative;
}
.banner__slide::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.10) 56%, rgba(0,0,0,.45));
    pointer-events:none;
    z-index: 1;
}
.banner__slide img{
    width:100%;
    height:100%;
    /* object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.02) contrast(1.08); */
    position: relative;
    z-index: 0;
}

.banner__content{
    position:absolute;
    inset: 0;
    z-index: 2;
}
.banner__content-inner{
    width:min(var(--max), calc(100% - 80px));
    margin: 0 auto;
    height: 100%;
    position: relative;
}
.banner__text-line1,
.banner__text-line2{
    margin: 0;
}
.banner__slide-text{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--max), calc(100% - 80px));
    text-shadow: 0 10px 26px rgba(0,0,0,.70), 0 2px 10px rgba(0,0,0,.45);
    z-index: 2;
    pointer-events: none;
}
.banner__slide-text--b1{
    top: 180px;
    text-align: left;
}
.banner__slide-text--b1 .banner__text-line1{
    color: #00B75E;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.06;
    letter-spacing: .01em;
}
.banner__slide-text--b1 .banner__text-line2{
    color: #FFFFFF;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.06;
    letter-spacing: .01em;
}
.banner__slide-text--b2{
    top: 90px;
    text-align: center;
}
.banner__slide-text--b2 .banner__text-line1{
    color: #00B75E;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.10;
    letter-spacing: .01em;
}
.banner__slide-text--b2 .banner__text-line2{
    color: #FFFFFF;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.55;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 1200px){
    .banner__content-inner{
        width: min(var(--max), calc(100% - 44px));
    }
    .banner{
        --banner-cards-bottom: 64px;
    }
    .cards{
        width: min(996px, 100%);
    }
    .banner__slide-text{
        width: min(var(--max), calc(100% - 44px));
    }
    .banner__slide-text--b1 .banner__text-line1,
    .banner__slide-text--b1 .banner__text-line2{
        font-size: 48px;
    }
    .banner__slide-text--b2 .banner__text-line1{
        font-size: 36px;
    }
    .banner__slide-text--b2 .banner__text-line2{
        font-size: 22px;
        max-width: 680px;
    }
}

@media (max-width: 720px){
    .banner__content-inner{
        width: min(var(--max), calc(100% - 28px));
    }
    .banner{
        --banner-cards-bottom: 44px;
    }
    .banner__slide-text{
        width: min(var(--max), calc(100% - 28px));
        text-shadow: 0 12px 30px rgba(0,0,0,.78), 0 2px 10px rgba(0,0,0,.54);
    }
    .banner__slide-text--b1 .banner__text-line1,
    .banner__slide-text--b1 .banner__text-line2{
        font-size: 36px;
    }
    .banner__slide-text--b2 .banner__text-line1{
        font-size: 28px;
    }
    .banner__slide-text--b2 .banner__text-line2{
        font-size: 16px;
    }
    .cards{
        flex-wrap: wrap;
        gap: 12px;
    }
    .card{
        flex: 0 0 320px;
    }
}
.hero{
    max-width: 620px;
}
.hero__kicker{
    display:inline-flex;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,.0);
    font-weight: 800;
    letter-spacing: .01em;
    width: fit-content;
    position: relative;
}
.hero__kicker::before{
    content:"AI科技";
    color: var(--ui-green);
    font-size: 52px;
    line-height: 1.05;
}
.hero__title{
    margin: 10px 0 0;
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: .01em;
    font-weight: 800;
}
.hero__desc{
    margin: 10px 0 0;
    color: rgba(255,255,255);
    font-size: 14px;
    line-height: 1.7;
    max-width: 520px;
}
.hero__cta{
    display:none;
}

.cards{
    width: 996px;
    display:flex;
    gap: 18px;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--banner-cards-bottom);
    margin: 0;
}
.card{
    flex: 0 0 320px;
    width: 320px;
    height: 160px;
    background: linear-gradient(135deg, rgba(18, 40, 28, .62), rgba(10, 12, 12, .42));
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 18px 56px rgba(0,0,0,.55);
    padding: 20px 20px;
    display:flex;
    gap: 18px;
    /* align-items:center; */
    transition: border-color .2s ease;
    flex-direction: row-reverse;
    position: relative;
}
.card:hover{
    border-color: rgba(255,255,255,.18);
}
.card::before{
    content:"";
    position:absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(420px 240px at 18% 30%, rgba(0,183,94,.18), transparent 62%),
                linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    pointer-events:none;
}
.card__icon{
    /* width: 124px; */
    height: 100px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 10px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}
.card__icon img{ width: 100%; height: 100%; opacity: 1; object-fit: contain; }
.card > div:last-child{
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.card__title{
    font-weight: 800;
    margin: 0;
    font-size: 18px;
    letter-spacing: .02em;
    color: rgba(255,255,255);
}
.card__list{
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display:flex;
    flex-direction:column;
    gap: 10px;
}
.card__list--grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
}
.card__list li{
    display:flex;
    align-items:center;
    gap: 12px;
    color: rgba(255,255,255);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.card__list li::before{
    content:"";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #00B75E;
    box-shadow: 0 0 0 2px rgba(0,183,94,.18);
    flex: 0 0 12px;
}

.swiper{
    width: 100%;
    height: 100%;
}
.swiper-pagination-bullet{
    background: rgba(255,255,255,.45);
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: rgba(124,247,193,.92);
}
.swiper-button-prev,
.swiper-button-next{
    display:none;
}
.swiper-pagination{
    display:none;
}

.trace{
    padding-top: 30px;
    background: #000;
}
.trace__inner{
    width:1200px;
    margin: 0 auto;
}
.trace__header{
    text-align: center;
    margin: 0 0 26px;
}
.trace__title{
    color: #00B75E;
    font-weight: 800;
    font-size: 45px;
    letter-spacing: .12em;
    line-height: 1.1;
}
.trace__subtitle{
    margin-top: 10px;
    color: rgba(255,255,255);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: .02em;
    line-height: 1.55;
}
.trace__panel{
    display:flex;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.trace__item{
    width: 200px;
    height: 720px;
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.trace__item + .trace__item{ border-left: 0; }
.trace__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trace__timebar{
    position: absolute;
    text-align: center;
    width: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 90px;
    display:flex;
    align-items:flex-end;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: .02em;
    color: rgba(255,255,255);
    background: rgba(10, 12, 14, .16);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 -10px 30px rgba(0,0,0,.35);
    z-index: 1;
}
.trace__timebar::before{
    content:"";
    position:absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
    opacity: .9;
    pointer-events:none;
}
.trace__timebar{
    isolation: isolate;
}
.trace__hover{
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(10, 12, 14, .22);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    transition: opacity .35s ease, backdrop-filter .35s ease, -webkit-backdrop-filter .35s ease;
    pointer-events: none;
}
.trace__hover::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.34));
    opacity: 0;
    transition: opacity .35s ease;
}
.trace__hover-content{
    position: relative;
    height: 100%;
    padding: 115px 24px 24px;
    display:flex;
    flex-direction:column;
    /* justify-content:center; */
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
    text-align: center;
}
.trace__hover-icon{
    height: 120px;
    width: auto;
    max-width: 100%;
}
.trace__hover-title{
    color: rgba(255,255,255);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: .02em;
    margin: 30px 0 20px;
}
.trace__hover-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
    flex-direction:column;
    gap: 24px;
    width: min(160px, 100%);
    text-align: left;
}
.trace__hover-list li{
    display:flex;
    align-items:flex-start;
    gap: 12px;
    color: rgba(255,255,255);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
}
.trace__hover-list li::before{
    content:"";
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255);
    margin-top: 7px;
    flex: 0 0 4px;
}
.trace__item:hover .trace__hover{
    opacity: 1;
}
.trace__item:hover .trace__hover::before{
    opacity: 1;
}
.trace__item:hover .trace__hover-content{
    opacity: 1;
    transform: translateY(0);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
    .trace__timebar{
        background: rgba(0,0,0,.55);
    }
    .trace__hover{
        background: rgba(0,0,0,.55);
    }
}

@media (max-width: 1400px){
    .trace__inner{
        width:min(var(--max), calc(100% - 44px));
    }
    .trace__item{
        width: 180px;
        height: 648px;
        flex-basis: 180px;
    }
}

@media (max-width: 1100px){
    .trace__item{
        width: 160px;
        height: 576px;
        flex-basis: 160px;
    }
}

@media (max-width: 900px){
    .trace{
        padding: 52px 0 70px;
    }
    .trace__inner{
        width:min(var(--max), calc(100% - 28px));
    }
    .trace__panel{
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .trace__panel::-webkit-scrollbar{
        height: 0;
    }
    .trace__item{
        width: 140px;
        height: 504px;
        flex-basis: 140px;
        scroll-snap-align: start;
    }
    .trace__hover-content{
        padding: 16px;
    }
    .trace__hover-title{
        font-size: 18px;
    }
    .trace__hover-list li{
        font-size: 12px;
        line-height: 18px;
    }
}
@media (hover: none){
    .trace__hover{
        opacity: 1;
    }
    .trace__hover::before{
        opacity: 1;
    }
    .trace__hover-content{
        opacity: 1;
        transform: none;
    }
}

.platform{
    padding: 30px 0;
    background: #000;
}
.platform__inner{
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}
.platform__top{
    text-align: center;
    margin: 0 0 30px;
}
.platform__top-title{
    font-weight: 800;
    font-size: 45px;
    line-height: 1.1;
    color: #00B75E;
    letter-spacing: .12em;
}
.platform__top-subtitle{
    margin-top: 10px;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: .02em;
    line-height: 1.55;
    color: rgba(255,255,255);
}
.platform__layout{
    display:flex;
    align-items: stretch;
    justify-content:center;
    gap: 0;
    padding: 0 100px;
}
.platform__tabs{
    width: 250px;
    flex: 0 0 250px;
    display:flex;
    flex-direction:column;
    height: 587px;
    justify-content: stretch;
    gap: 0;
    padding: 0;
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255);
    overflow: hidden;
}
.platform__tab{
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 0;
    color: rgba(255,255,255);
    cursor:pointer;
    position: relative;
    overflow: hidden;
    transition: background .22s ease, color .22s ease, transform .18s ease, filter .22s ease;
}
.platform__tab--active{
    background: linear-gradient( 90deg, #019C51 0%, rgba(1,156,81,0) 100%);
    color: rgba(255,255,255);
}
.platform__tab--active::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: rgba(255,255,255);
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.38);
    pointer-events: none;
}
.platform__tab--active::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 0;
    border-radius: 999px;
    background: rgba(255,255,255);
}
.platform__tab-icon{
    width: 0;
    height: 0;
    object-fit: contain;
    flex: 0 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-sizing: border-box;
    display:none;
}
.platform__tab--active .platform__tab-icon{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
}
.platform__tab-body{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.platform__tab-title{
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: .02em;
}
.platform__tab-subtitle{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255,255,255);
}
.platform__tab--active .platform__tab-subtitle{
    color: rgba(255,255,255);
}
.platform__content{
    flex: 1 1 auto;
    padding-left: 30px;
    display:flex;
    align-items: stretch;
    justify-content: center;
}
.platform__content-inner{
    width: min(1000px, 100%);
    padding: 0;
    display:flex;
    flex-direction:column;
    height: 587px;
    overflow: hidden;
}
.platform__content-title{
    font-weight: 800;
    font-size: 28px;
    line-height: 1.1;
    color: rgba(255,255,255);
}
.platform__content-desc{
    color: rgba(255,255,255);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    max-width: 720px;
}
.platform__content-media{
    flex: 1 1 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(0,0,0,.28);
    overflow: hidden;
}
.platform__content-img{
    max-height: 100%;
    max-width: 100%;
}
.platform__bottom{
    margin-top: 30px;
    display:flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 100px;
}
.platform__bottom-title{
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
}
.platform__bottom-content{
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.platform-fade-enter-active,
.platform-fade-leave-active{
    transition: opacity .26s ease, transform .26s ease;
}
.platform-fade-enter-from,
.platform-fade-leave-to{
    opacity: 0;
    transform: translateY(8px);
}

.case{
    position: relative;
    display:grid;
}
.case__bg{
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    display:block;
}
.case__inner{
    grid-area: 1 / 1;
    width: 1060px;
    margin: 0 auto;
    padding: 30px 30px 72px;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.case__title{
    margin: 0 0 30px;
    font-weight: 900;
    font-size: 45px;
    line-height: 1.15;
    color: rgba(255,255,255);
    letter-spacing: .02em;
    text-align: center;
}
.case__title-accent{
    color: #00B75E;
}
.case__tabs{
    width: 100%;
    height: 78px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.40);
    background: rgba(0,0,0,.28);
    display:flex;
    align-items:center;
    justify-content:space-around;
    padding: 10px 0;
}
.case__tab{
    width: 160px;
    height: 100%;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: rgba(255,255,255);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .02em;
    cursor:pointer;
    user-select:none;
    transition: background .2s ease, color .2s ease, filter .2s ease;
    outline: none;
}
.case__tab--active{
    background: linear-gradient(180deg, rgba(1,156,81,.96), rgba(1,156,81,.84));
    color: #fff;
}
.case__card{
    margin-top: 30px;
    width: 100%;
    /* 这里254是计算出来的，相当于高度根据背景图自适应了 */
    height: calc(100% - 254px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    display:flex;
    align-items: stretch;
    gap: 30px;
    box-shadow: 0 40px 110px rgba(0,0,0,.55);
}
.case__media{
    width: 292px;
    flex: 0 0 292px;
    overflow: hidden;
}
.case__media-img{
    width: 100%;
    opacity: .98;
    border-radius: 20px;
}
.case__content{
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 6px;
}
.case__content-title{
    font-weight: 900;
    font-size: 46px;
    line-height: 1.1;
    color: rgba(255,255,255);
    margin-bottom: 20px;
}
.case__content-text{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(255,255,255);
    max-height: 240px;
    overflow: auto;
    padding-right: 8px;
}
.case__content-text::-webkit-scrollbar{
    width: 0;
    height: 0;
}

.enterprise{
    position: relative;
    display:grid;
}
.enterprise__bg{
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    display:block;
}
.enterprise__inner{
    grid-area: 1 / 1;
    width: 916px;
    margin: 0 auto;
    padding: 30px 0 50px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: space-between;
}
.enterprise__title{
    margin: 0 0 34px;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.12;
    color: rgba(255,255,255);
    letter-spacing: .02em;
    text-align: center;
}
.enterprise__title-accent{
    color: #00B75E;
}
.enterprise__card{
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    padding: 30px;
    display:flex;
    align-items: stretch;
    gap: 22px;
}
.enterprise__col{
    flex: 1 1 0;
    min-width: 0;
}
.enterprise__divider{
    width: 1px;
    background: rgba(255,255,255,.28);
    border-radius: 999px;
    flex: 0 0 1px;
}
.enterprise__col-title{
    font-weight: 900;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}
.enterprise__col-subtitle{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 18px;
}
.enterprise__list{
    display:flex;
    flex-direction:column;
    /* gap: 6px; */
}
.enterprise__item{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}
.enterprise__text{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.footer{
    background: #000;
}
.footer__inner{
    width: min(1090px, calc(100% - 80px));
    margin: 0 auto;
    border-radius: 18px;
    padding: 90px 0 20px;
}
.footer__top{
    display:flex;
    align-items:flex-start;
    gap: 60px;
}
.footer__brand{
    width: 220px;
    flex: 0 0 220px;
}
.footer__brand-row{
    display:flex;
    align-items:center;
    gap: 10px;
}
.footer__logo{
    height: 52px;
    width: auto;
    object-fit: contain;
}
.footer__qrs{
    margin-top: 18px;
    display:flex;
    gap: 14px;
}
.footer__qr{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 8px;
}
.footer__qr-box{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.10) 1px, transparent 1px) 0 0 / 10px 10px,
        linear-gradient(0deg, rgba(0,0,0,.10) 1px, transparent 1px) 0 0 / 10px 10px,
        #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.footer__qr-box img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.footer__qr-caption{
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255,255,255);
}
.footer__cols{
    flex: 1 1 auto;
    display:grid;
    grid-template-columns: 120px 120px 120px 1fr;
    gap: 50px;
}
.footer__col-title{
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}
.footer__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
    flex-direction:column;
    gap: 10px;
    color: #B3B3B3;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}
.footer__contact{
    display:flex;
    flex-direction:column;
    gap: 10px;
    color: #B3B3B3;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}
.footer__bottom{
    margin-top: 48px;
    text-align: center;
    color: #666666;;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 1240px){
    .platform__inner{
        width: min(1200px, calc(100% - 44px));
    }
    .platform__content{
        padding-left: 18px;
    }
}
@media (max-width: 980px){
    .platform__bottom{
        text-align: left;
    }
    .platform__layout{
        flex-direction:column;
        gap: 14px;
    }
    .platform__tabs{
        width: 100%;
        flex-basis: auto;
        flex-direction:row;
        flex-wrap: wrap;
        gap: 10px;
        height: auto;
        justify-content: flex-start;
        padding: 10px;
    }
    .platform__tab{
        width: calc(50% - 5px);
    }
    .platform__content{
        max-width: 100%;
        padding-left: 0;
    }
    .platform__content-inner{
        height: auto;
        min-height: 420px;
    }
}

h1,h2,h3,h4,h5,h6,strong,b,button,
.btn,.nav__cta,
.menu__link--active,
.trace__title,.trace__hover-title,
.platform__top-title,.platform__tab-title,.platform__bottom-title,
.case__title,.case__tab,.case__content-title,
.enterprise__title,.enterprise__col-title,.enterprise__col-subtitle,
.footer__col-title{
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
}
