:root {
    --navy: #071f4b;
    --blue: #0866d9;
    --cyan: #19a8e0;
    --teal: #0da39c;
    --violet: #6354d8;
    --pink: #e64387;
    --ink: #13233f;
    --muted: #66758d;
    --line: #dce6f2;
    --soft: #f5f9fe;
    --white: #fff;
    --accent: #e66643;
    --shadow: 0 18px 50px rgba(9, 45, 98, .12);
    --r: 24px;
    --max: 1220px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    color: var(--ink);
    line-height: 1.75;
    background: #fff
}

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

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

.only-sp{
    display: none;
}

.only-pc{
    display: block;
}

@media screen and (max-width: 768px) {
    .only-sp{
        display: block;
    }
    .only-pc{
        display: none;
    }
}

.container {
    /* width: min(var(--max), calc(100% - 40px)); */
    margin: auto;
    width: min(var(--max), calc(100% - 160px));
}

.nav.container {
    width: min(var(--max), calc(100% - 40px));
    width: 95%;
    max-width: 1600px;
}

/* header{
    padding: 0 20px;
} */

.header-logo-right img{
    max-height: 26px;
    vertical-align: bottom;
    object-fit: contain;
}

@media screen and (max-width: 1100px) {
    .header-logo-right-wrap img {
        max-height: 22px;
    }
}

@media screen and (max-width: 1000px) {
    .header-logo-right-wrap {
        display: none;
    }
}


.zdo_drawer_menu {
    display: none;
}
@media screen and (max-width: 1000px) {
    .zdo_drawer_menu {
        display: block;
    }
}

.section {
    padding: 88px 0
}

.soft {
    background: linear-gradient(180deg, #f6faff, #fff)
}

.label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    color: var(--blue)
}

h1,
h2,
h3 {
    color: var(--navy);
    margin-top: 0
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.35;
    margin-bottom: 12px
}

.head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px
}

.head p {
    color: var(--muted);
    margin: 0;
}

#overview .head p{
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 11px;
    font-weight: 900;
    border: 1px solid var(--blue);
    transition: .2s
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 102, 217, .18)
}

.primary {
    background: linear-gradient(135deg, var(--blue), #0346ad);
    color: #fff
}

.outline {
    color: var(--blue);
    background: #fff
}

.badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e9f2ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.header-right{
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btn-wrap{
    display: flex;
    align-items: center;
}

.header-btn-wrap .btn{
    font-size: 14px;
    padding: 10px 14px;
    font-size: 13px;
}

.zdo_drawer_menu .zdo_drawer_nav li.contact_dl a{
    padding: 12px;
}

.contact_dl .btn_contact,
.contact_dl .btn_dl{
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

.contact_dl .btn_contact{
    border: 1px solid var(--blue);
    color: var(--blue);
    background: #fff;
}

.contact_dl .btn_contact .text{
    color: var(--blue);
}

.contact_dl .btn_dl{
    background: linear-gradient(135deg, var(--blue), #0346ad);
}
.contact_dl .btn_dl .text{
    color: #fff;
}


.brand {
    font-weight: 900;
    color: var(--navy);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    line-height: 1.2;
}

@media screen and (max-width:1080px) {
    .brand{
        font-size: 18px;
    }
}


.mark {
    width: 38px;
    height: 26px;
    border: 4px solid var(--blue);
    border-radius: 14px;
    position: relative;
    margin-right: 4px;
}

.mark:after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    border: 4px solid var(--cyan);
    border-radius: 50%;
    right: -12px;
    top: 0;
    background: #fff
}

.navlinks {
    display: flex;
    gap: 18px;
    font-size: 14px;
    font-weight: 800
}

.navlinks a{
    transition: .2s;
}

.navlinks a:hover{
    color: var(--blue);
}

.actions {
    display: flex;
    gap: 9px
}

.hero {
    overflow: hidden;
    padding: 72px 0 58px;
    background: radial-gradient(circle at 84% 22%, rgba(23, 168, 224, .17), transparent 34%), linear-gradient(135deg, #fff 0%, #f5faff 56%, #eef8ff 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 52px;
    padding: 20px 0;
}

.eyebrow {
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 13px
}

.hero h1 {
    font-size: clamp(38px,4vw,62px);
    line-height: 1.24;
    letter-spacing: -.03em;
    margin-bottom: 20px
}

.lead {
    font-size: 18px;
    font-weight: 800;
    color: #174c9d
}

.sub {
    color: #45546d
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 28px
}

.screen img{
    filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.3));
    max-width: 80%;
    margin: auto;
}

.floating-btn-wrap{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.floating-btn{
    z-index: 99;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.14em;
    padding: 24px 12px; 
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 0 14px rgba(0, 0, 0, 0.15);
    transition: .3s;
    display: inline-block;
    border: 2px solid transparent;
    box-sizing: border-box;
    border-right: none;
}

.floating-contact-btn:hover,
.floating-dl-btn:hover{
    padding: 24px 15px;
    box-shadow: -6px 0 18px rgba(8, 102, 217, .18);
}

.floating-contact-btn {
    background: linear-gradient(135deg, var(--blue), #0346ad);
    color: #ffffff;
}

.floating-dl-btn{
    color: var(--blue);
    background-color: #fff;
    border: 2px solid var(--blue);
    border-right: none;
}

.quick {
    border-bottom: 1px solid var(--line);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.quick-item {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid var(--line);
    flex-wrap: wrap;
}

.quick-item:last-child {
    border-right: 0
}

.quick-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: #ecf5ff;
    color: var(--blue);
    font-size: 25px
}

.quick-item .quick-icon span{
    font-size: 32px;
    color: var(--blue);
}

.quick-item strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
}

.quick-item span {
    font-size: 16px;
    color: var(--muted)
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 18px;
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    padding: 32px;
    box-shadow: 0 12px 34px rgba(12, 46, 92, .07)
}

.panel h3 {
    font-size: 22px;
    margin-bottom: 12px
}

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

.merit {
    padding: 20px;
    border-radius: 17px;
    background: #f4f8fe;
    border: 1px solid #dde8f5
}

.merit b {
    display: block;
    color: var(--blue);
    font-size: 16px;
    margin-bottom: 5px
}

.architecture {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 18px
}

.arch {
    min-height: 118px;
    padding: 16px 10px;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px
}

.arch .material-symbols-outlined {
    font-style: normal;
    font-size: 32px
}

.arch b {
    font-size: 16px;
    line-height: 1.4;
    color: var(--navy)
}

.roadmap {
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: linear-gradient(110deg, #eff6ff, #f8fbff);
    box-shadow: 0 12px 36px rgba(9, 45, 98, .07)
}

.roadtop {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px
}

.roadgrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px
}

.future {
    min-height: 140px;
    border: 1px solid #d9e4f3;
    background: #fff;
    border-radius: 17px;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.future .material-symbols-outlined {
    font-style: normal;
    font-size: 32px
}

.future b {
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy)
}

.future p{
    font-size: 12px;
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
    color: var(--blue);
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px
}

.service {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 42, 80, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--accent)
}

.service .whitepaper-card{
    box-shadow: none;
}

.service-top {
    display: flex;
    gap: 14px;
    align-items: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--accent) 12%, white);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 29px
}

.service-icon .material-symbols-outlined{
    font-size: 30px;
}

.service h3 {
    color: var(--accent);
    font-size: 23px;
    line-height: 1.4;
    margin: 0 0 4px
}

.service p {
    color: #47556c;
    margin: 0;
    line-height: 1.6;
}

.service .doc-actions{
    margin-top: auto;
}

.checks {
    list-style: none;
    margin: 17px 0 20px;
    padding: 0;
    display: grid;
    gap: 8px
}

.checks li {
    padding-left: 25px;
    position: relative
}

.checks li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900
}

.personal {
    --accent: var(--teal)
}

.corporate {
    --accent: var(--blue)
}

.contract {
    --accent: var(--violet)
}

.delivery {
    --accent: #4b50dc
}

.video {
    --accent: var(--pink)
}

.service-link {
    font-weight: 900;
    color: var(--accent)
}

.logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.logo {
    min-height: 92px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    /* 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* font-weight: 800; */
    /* color: #49617e; */
    box-shadow: 0 7px 20px rgba(16, 42, 80, .05)
}

.logo img{
    width: 100%;
}

.stats {
    /* display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px; */
    margin-bottom: 26px
}

.stat {
    padding: 33px;
    border-radius: 23px;
    background: linear-gradient(135deg, #063b8e, #0878d7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.stat strong {
    font-size: 55px;
    line-height: 1.05
}

.stat-copy {
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: #fff
}

.stat-copy h3 {
    font-size: 25px;
    margin-bottom: 10px
}

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

.benefit {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 42, 80, .06)
}

.benefit .material-symbols-outlined {
    font-style: normal;
    font-size: 40px;
    line-height: inherit;
}

.benefit h3 {
    font-size: 18px;
    margin: 12px 0 8px
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.feature {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff
}

.feature h3 {
    font-size: 21px;
    margin-bottom: 7px
}

.feature p {
    color: var(--muted);
    margin: 0
}

.partner {
    margin-top: 24px;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(120deg, #07388b, #075fd0);
    color: #fff
}

.partner h3 {
    color: #fff;
    margin-bottom: 7px
}

.partner p {
    margin: 0;
    color: #dceaff
}

.flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.step {
    position: relative;
    text-align: center;
    padding: 20px 9px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}

.step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -11px;
    top: 42%;
    z-index: 2;
    color: var(--blue);
    font-weight: 900
}

.step .material-symbols-outlined {
    font-style: normal;
    font-size: 32px;
    color: var(--navy);
}

.step b {
    display: block;
    color: var(--navy);
    line-height: 1.5;
    font-size: 16px
}

.step span {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted)
}

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

.case {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(16, 42, 80, .07);
    display: flex;
    flex-direction: column
}

.case-head {
    padding: 20px;
    background: #fff;
    color: #fff;
    min-height: 103px;
    display: flex;
    align-items: end
}

.case-head img {
    width: 60%;
    margin: auto;
}

@media screen and (max-width:650px) {
    .stat-copy h3{
        font-size: 22px;
    }
}

@media screen and (max-width:480px) {
    .case-head img {
        width: 70%;
    }
}

.case-body {
    padding: 21px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.case-body p {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 16px
}

.case-body a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 900;
    font-size: 13px
}

.more {
    text-align: center;
    margin-top: 28px
}

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

.media-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 42, 80, .06)
}

.media-card .type {
    font-size: 11px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: .12em
}

.media-card h3 {
    font-size: 19px;
    margin: 9px 0
}

.media-card p {
    font-size: 13px;
    color: var(--muted)
}

.faq {
    max-width: 940px;
    margin: auto
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 20px 4px
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
    list-style: none;
    padding-right: 30px;
    position: relative
}

.faq summary:after {
    content: "＋";
    position: absolute;
    right: 0
}

.faq details[open] summary:after {
    content: "－"
}

.faq p {
    color: var(--muted);
    margin: 13px 0 0
}

.cta {
    padding: 50px 0;
    background: linear-gradient(120deg, #063489, #075ad0 55%, #079dd2);
    color: #fff
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.cta h2 {
    color: #fff;
    margin: 0 0 7px;
    font-size: 35px
}

.cta p {
    margin: 0;
    color: #dcecff
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

footer {
    background: #061c46;
    color: #c6d4e8;
    padding: 34px 0
}

.footer-logo{
    margin-top: 40px;
}

.footer-logo a{
    display: inline-block;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end
}

.foot b {
    color: #fff
}

.copy {
    font-size: 12px;
    color: #91a4c0
}

@media(max-width:1200px) {
    .navlinks {
        gap: 7px;
    }
}

@media screen and (max-width:1080px) {
    .actions .btn{
        font-size: 13px;
        padding: 12px;
    }
}

@media(max-width:1000px) {
    .navlinks {
        display: none
    }

    .hero-grid,
    .overview-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .screen {
        max-width: 860px;
        margin: 8px auto 0
    }

    .roadgrid,
    .architecture {
        grid-template-columns: repeat(3, 1fr)
    }

    .services {
        grid-template-columns: 1fr
    }

    .logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .stats {
        grid-template-columns: 1fr
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr)
    }

    .flow {
        grid-template-columns: repeat(3, 1fr)
    }

    .step:nth-child(3):after {
        display: none
    }

    .cases,
    .media-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:650px) {
    .container,.nav.container {
        width: min(100% - 24px, var(--max))
    }

    .nav {
        height: 64px
    }
    
    .floating-btn-wrap{
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        width: 100%;
        gap: 0;
        z-index: 999;
    }
    .floating-btn{
        width: 100%;
        writing-mode: inherit;
        text-align: center;
        transform: inherit;
        border-radius: 0;
        padding: 13px;
        border-right: 2px solid transparent;
    }
    .floating-dl-btn{
        border-right: 2px solid var(--blue);
    }
    .floating-btn:hover{
        padding: 13px;
    }

    .brand {
        font-size: 12px
    }

    .actions .outline {
        display: none
    }

    .btn{
        width: 100%;
        font-size: 15px;
    }

    .actions .btn {
        padding: 10px;
        font-size: 11px
    }

    .hero {
        padding: 42px 0
    }

    .section {
        padding: 64px 0
    }

    h2{
        font-size: 25px;
    }

    .panel{
        padding: 24px 20px;
    }

    .merits,
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick{
        border-bottom: none;
    }

    .quick-item {
        justify-content: flex-start;
        border-right: 0;
        padding: 20px 25px;
        border-bottom: 1px solid var(--line)
    }

    .quick-icon{
        width: 64px;
        height: 64px;
    }

    .arch b{
        font-size: 14px;
    }

    .roadgrid,
    .architecture,
    .logos {
        grid-template-columns: repeat(2, 1fr)
    }

    .roadmap{
        padding: 24px;
    }

    .roadtop {
        display: block
    }

    .future .material-symbols-outlined{
        font-size: 26px;
    }

    .future b{
        line-height: 1.4;
        font-size: 14px;
    }

    .benefits,
    .feature-list,
    .cases,
    .media-grid {
        grid-template-columns: 1fr
    }

    .service {
        padding: 30px 24px;
    }

    .service-icon{
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 10px;
    }
    .service-icon .material-symbols-outlined{
        font-size: 26px;
    }

    .service-top{
        align-items: flex-start;
    }

    .service h3{
        font-size: 20px;
    }

    .service p{
        font-size: 14px;
    }

    .benefit{
        padding: 16px 26px;
    }

    .benefit .material-symbols-outlined{
        font-size: 32px;
    }

    .case-body{
        padding-top: 0;
    }

    .flow {
        grid-template-columns: 1fr
    }

    .step{
        margin: auto;
        width: 60%;
        padding: 13px 0;
    }

    .step .material-symbols-outlined{
        font-size: 26px;
    }

    .step b{
        line-height: 1;
    }

    .step:not(:last-child):after {
        content: "↓";
        position: static;
        display: block;
        line-height: 1.2;
    }

    .cta-inner,
    .foot {
        display: block
    }

    .cta-actions {
        margin-top: 20px
    }

    .cta h2{
        font-size: 30px;
        line-height: 1.6;
    }

    footer{
        padding: 24px 0 80px;
        text-align: center;
    }

    .copy {
        margin-top: 10px
    }
}

.content-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 38px
}

.subhead {
    font-size: 25px;
    margin-bottom: 16px
}

.content-list {
    border-top: 1px solid var(--line)
}

.content-row {
    display: grid;
    grid-template-columns: 120px 1fr 24px;
    gap: 18px;
    align-items: center;
    padding: 20px 5px;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.content-row:hover {
    padding-left: 12px;
    background: #f7faff
}

.content-row .date {
    font-size: 12px;
    font-weight: 900;
    color: var(--blue)
}

.content-row b {
    display: block;
    color: var(--navy);
    line-height: 1.45
}

.content-row small {
    display: block;
    color: var(--muted);
    margin-top: 4px
}

.content-row em,
.column-card em,
.news-row em {
    font-style: normal;
    color: var(--blue);
    font-weight: 900
}

.video-grid {
    display: grid;
    gap: 16px
}

.video-tile {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    background: #fff
}

.video-thumb {
    min-height: 125px;
    border-radius: 13px;
    background: linear-gradient(135deg, #07378b, #08a4d6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px
}

.video-thumb span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: grid;
    place-items: center
}

.video-tile h3 {
    font-size: 17px;
    margin: 12px 0 4px
}

.video-tile p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

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

.column-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 42, 80, .06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.column-no {
    font-size: 42px;
    font-weight: 900;
    color: #dce8f8;
    line-height: 1
}

.column-card h3 {
    font-size: 20px;
    margin: 12px 0 8px
}

.column-card p {
    font-size: 13px;
    color: var(--muted)
}

.column-card em {
    position: absolute;
    right: 24px;
    bottom: 22px
}

.document-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 46px;
    align-items: center;
    max-width: 1000px;
    margin: auto
}

.doc-cover {
    aspect-ratio: 3/4;
    border-radius: 8px;
    padding: 28px;
    background: linear-gradient(145deg, #052d73, #0787d3);
    color: #fff;
    box-shadow: 0 24px 55px rgba(5, 45, 115, .23);
    display: flex;
    flex-direction: column
}

.doc-mark {
    font-size: 12px;
    letter-spacing: .16em;
    font-weight: 900
}

.doc-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.35;
    margin: auto 0
}

.doc-caption {
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, .35);
    padding-top: 13px
}

.doc-copy h3 {
    font-size: 28px;
    margin: 13px 0
}

.doc-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding-left: 20px
}

.doc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.whitepaper-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 24px rgba(16, 42, 80, .06)
}

.whitepaper-card .material-symbols-outlined {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 15px;
    background: linear-gradient(135deg, #eaf3ff, #f5f9ff);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 30px;
    border: 1px solid #d6e5f8
}

.whitepaper-card b {
    display: block;
    color: var(--navy);
    font-size: 16px
}

.whitepaper-card span {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.whitepaper-card em {
    margin-left: auto;
    font-style: normal;
    color: var(--blue);
    font-weight: 900
}

.checks strong {
    color: var(--navy)
}

.news-list {
    border-top: 1px solid var(--line)
}

.news-row {
    display: grid;
    grid-template-columns: 110px 130px 1fr 24px;
    gap: 18px;
    align-items: center;
    padding: 20px 5px;
    border-bottom: 1px solid var(--line)
}

.news-row:hover {
    background: #f7faff
}

.news-row time {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800
}

.news-tag {
    font-size: 11px;
    color: var(--blue);
    background: #eaf3ff;
    border-radius: 999px;
    padding: 4px 10px;
    text-align: center;
    font-weight: 900
}

.news-row b {
    font-size: 14px;
    color: var(--navy)
}

@media(max-width:900px) {

    .content-split,
    .document-grid {
        grid-template-columns: 1fr
    }

    .column-grid {
        grid-template-columns: 1fr
    }

    .news-row {
        grid-template-columns: 95px 1fr 20px
    }

    .news-row .news-tag {
        display: none
    }

    .doc-cover {
        /* max-width: 320px;
        margin: auto; */
        aspect-ratio: auto;
    }

    .content-row {
        grid-template-columns: 95px 1fr 20px
    }
}

@media(max-width:560px) {
    .content-row {
        grid-template-columns: 1fr 20px
    }

    .content-row .date {
        grid-column: 1
    }

    .content-row span:nth-child(2) {
        grid-column: 1
    }

    .content-row em {
        grid-column: 2;
        grid-row: 1/3
    }

    .news-row {
        grid-template-columns: 1fr 20px
    }

    .news-row time,
    .news-row b {
        grid-column: 1
    }

    .news-row em {
        grid-column: 2;
        grid-row: 1/3
    }

    .column-card{
        min-height: auto;
        gap: 20px;
    }

    .doc-title{
        margin: 30px 0;
    }

    .doc-points {
        grid-template-columns: 1fr
    }
}

.service-harmony {
    border-top: 4px solid #7b61ff
}

.service-harmony .service-tag {
    color: #6b4ee6
}

.after-wrap {
    border: 1px solid #d7e4f3;
    border-radius: 28px;
    background: linear-gradient(145deg, #f8fbff 0%, #eef7ff 54%, #f7f4ff 100%);
    padding: 34px;
    box-shadow: 0 18px 48px rgba(9, 45, 98, .09)
}

.after-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px
}

.after-note h3 {
    font-size: 27px;
    margin: 0 0 5px
}

.after-note p {
    margin: 0;
    color: var(--muted)
}

.after-diagram {
    display: grid;
    grid-template-columns: 1fr 40px 1.35fr 40px 1fr;
    align-items: stretch;
    gap: 5px;
    background: linear-gradient(150deg, #052f78, #075fc5 60%, #0b92cd);
    box-shadow: 0 16px 34px rgba(5, 62, 142, .22);
    border-radius: 21px;
    padding: 19px;
}

.after-column {
    display: grid;
    grid-template-rows: auto 1fr 1fr 1fr;
    gap: 12px
}

.after-column-title {
    text-align: center;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 2px
}

.after-box {
    min-height: 82px;
    padding: 16px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid #dce7f4;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(16, 42, 80, .05)
}

.after-box .material-symbols-outlined {
    font-size: 20px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #edf5ff;
    color: var(--blue);
}

.after-box b {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.4
}

.after-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    margin-top: 3px
}

.after-core {
    /* padding: 19px; */
    /* border-radius: 21px; */
    color: #fff;
}

.after-core-title {
    text-align: center;
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 14px
}

.after-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.after-core .after-box {
    min-height: 94px;
    background: rgba(255, 255, 255, .96);
    border: 0
}

.after-core .after-box.ai {
    background: linear-gradient(140deg, #fff, #f3efff);
    outline: 2px solid rgba(129, 93, 230, .28)
}

.after-core .after-box.ai i {
    background: #eee8ff;
    color: #694bd2
}

.after-arrow {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 900
}

.after-data {
    margin-top: 18px;
    padding: 17px 20px;
    border-radius: 17px;
    background: #fff;
    border: 1px dashed #a9c4e5;
    display: flex;
    justify-content: center;
    gap: 8px 22px;
    flex-wrap: wrap;
    color: #39516f;
    font-size: 12px;
    font-weight: 800
}

.after-data strong {
    color: var(--navy)
}

@media(max-width:1200px) {
    .after-box {
        flex-wrap: wrap;
    }

}

@media(max-width:1000px) {
    .after-diagram {
        grid-template-columns: 1fr
    }

    .after-arrow {
        transform: rotate(90deg);
        min-height: 34px
    }

    .after-core-grid {
        grid-template-columns: repeat(2, 1fr)
    }
        
    .after-data {
        justify-content: flex-start;
        gap: 6px 10px;
    }

    .after-data strong:first-of-type{
        width: 100%;
    }
}

@media(max-width:650px) {
    .after-wrap {
        padding: 24px 20px;
    }

    .after-box{
        flex-wrap: nowrap;
    }

    .after-note {
        display: block
    }

    .after-note h3{
        font-size: 22px;
        line-height: 1.5;
    }

    .after-note .badge {
        margin-top: 12px
    }

    .after-core-grid {
        grid-template-columns: 1fr
    }

    .after-box {
        min-height: auto
    }

}